浏览代码

Update I3DMLoader.d.ts

Garrett Johnson 4 年之前
父节点
当前提交
b4a2db6b94
共有 1 个文件被更改,包括 7 次插入1 次删除
  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;
 
 }