soonspacejs 2.5.16 → 2.5.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "soonspacejs",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.17",
|
|
4
4
|
"homepage": "http://www.xwbuilders.com:8800/",
|
|
5
5
|
"description": "soonspacejs 2.x",
|
|
6
6
|
"module": "./dist/index.esm.js",
|
|
@@ -26,5 +26,5 @@
|
|
|
26
26
|
"@tweenjs/tween.js": "^18.6.4",
|
|
27
27
|
"@types/three": "0.141.0"
|
|
28
28
|
},
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "162366d21d73252f78bb3c2382a8d2e34b463bf4"
|
|
30
30
|
}
|
|
@@ -9,6 +9,10 @@ import { CloneModelInfo } from '../Interface';
|
|
|
9
9
|
import DefaultManage from './DefaultManage';
|
|
10
10
|
declare class ModelManage extends DefaultManage {
|
|
11
11
|
readonly viewport: Viewport;
|
|
12
|
+
/**
|
|
13
|
+
* 场景是否卸载
|
|
14
|
+
*/
|
|
15
|
+
isDisposed: boolean;
|
|
12
16
|
modelsPromiseMap: Map<string, Promise<Model | null>>;
|
|
13
17
|
modelsMap: Map<string, Model>;
|
|
14
18
|
/**
|
|
@@ -117,7 +117,7 @@ declare class Viewport {
|
|
|
117
117
|
rayClash(startPoint?: Vector3, dir?: Vector3, objects?: Object3D<import("three").Event>[]): Intersection<Object3D<import("three").Event>>[];
|
|
118
118
|
setHoverEnabled(enabled: boolean): void;
|
|
119
119
|
clearSignals(): void;
|
|
120
|
-
dispose():
|
|
120
|
+
dispose(): void;
|
|
121
121
|
_signalsEventListenr(): void;
|
|
122
122
|
_containerAddEventListener(container: HTMLElement): void;
|
|
123
123
|
/**
|