Explorar o código

Update I3DMLoader.d.ts

Garrett Johnson %!s(int64=4) %!d(string=hai) anos
pai
achega
b4a2db6b94
Modificáronse 1 ficheiros con 7 adicións e 1 borrados
  1. 7 1
      src/three/I3DMLoader.d.ts

+ 7 - 1
src/three/I3DMLoader.d.ts

@@ -1,10 +1,16 @@
 import { I3DMBaseResult } from '../base/I3DMLoaderBase';
 import { GLTF } from 'three/examples/jsm/loaders/GLTFLoader';
 
-export interface I3DMResult extends GLTF, I3DMBaseResult {
+interface I3DMScene extends Group {
 
 	batchTable : Object;
 	featureTable : Object;
+	
+}
+
+export interface I3DMResult extends GLTF, I3DMBaseResult {
+
+	scene : I3DMScene;
 
 }