soonspacejs 2.6.15 → 2.6.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/dist/index.esm.js +4 -4
- package/package.json +4 -2
- package/types/index.d.ts +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "soonspacejs",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.17",
|
|
4
4
|
"homepage": "http://www.xwbuilders.com:8800/",
|
|
5
5
|
"description": "soonspacejs 2.x",
|
|
6
6
|
"module": "./dist/index.esm.js",
|
|
@@ -22,11 +22,13 @@
|
|
|
22
22
|
"license": "UNLICENSED",
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@robotlegsjs/signals": "^1.1.0",
|
|
25
|
+
"@three3d/animation": "^1.2.2",
|
|
26
|
+
"@three3d/tools": "^1.3.6",
|
|
25
27
|
"@tweenjs/tween.js": "^18.6.4",
|
|
26
28
|
"three-mesh-bvh": "0.5.23"
|
|
27
29
|
},
|
|
28
30
|
"peerDependencies": {
|
|
29
31
|
"three": ">=0.151.3"
|
|
30
32
|
},
|
|
31
|
-
"gitHead": "
|
|
33
|
+
"gitHead": "9744d9240f5c2016dd4a9c0641bd6c25ab3c82cc"
|
|
32
34
|
}
|
package/types/index.d.ts
CHANGED
|
@@ -33,6 +33,7 @@ export * from './Interface';
|
|
|
33
33
|
export * from './tools';
|
|
34
34
|
import type { AnimationOperate } from '@three3d/animation';
|
|
35
35
|
export * from '@three3d/animation';
|
|
36
|
+
import { Azimuth } from '@three3d/tools';
|
|
36
37
|
export declare class SoonSpace {
|
|
37
38
|
static readonly THREE: typeof THREE;
|
|
38
39
|
readonly THREE: typeof THREE;
|
|
@@ -205,6 +206,10 @@ export declare class SoonSpace {
|
|
|
205
206
|
readonly viewport: Viewport;
|
|
206
207
|
readonly manager: Manager;
|
|
207
208
|
readonly plugins: Record<string, any>;
|
|
209
|
+
/**
|
|
210
|
+
* 方位判断
|
|
211
|
+
*/
|
|
212
|
+
readonly azimuth: Azimuth;
|
|
208
213
|
constructor(param: SoonSpaceConstructor);
|
|
209
214
|
/******/
|
|
210
215
|
/******/
|