soonspacejs 2.5.43 → 2.5.45
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 +2 -2
- package/types/index.d.ts +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "soonspacejs",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.45",
|
|
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": "1fe7812a92fd45bb90cc5e4c65cbdece87db7e01"
|
|
30
30
|
}
|
package/types/index.d.ts
CHANGED
|
@@ -1267,14 +1267,14 @@ export declare class SoonSpace {
|
|
|
1267
1267
|
*/
|
|
1268
1268
|
hideAllHelper(): void;
|
|
1269
1269
|
/**
|
|
1270
|
-
*
|
|
1270
|
+
* 创建用于 查找位置附近的 box 空间范围内的物体 的查找器
|
|
1271
1271
|
* @param boxSpace - 描述查找空间的信息对象
|
|
1272
1272
|
* @param objects - 所有需要被查找的对象
|
|
1273
1273
|
* @returns 用于查找的函数
|
|
1274
1274
|
*/
|
|
1275
1275
|
createFindObjectsInBoxNearPosition(boxSpace: BoxSpace, objects: Object3D[]): FindObjectsNearPosition;
|
|
1276
1276
|
/**
|
|
1277
|
-
*
|
|
1277
|
+
* 创建用于 查找位置附近的球形区域范围内的物体 的查找器
|
|
1278
1278
|
*
|
|
1279
1279
|
* @param radius - 描述查找半径
|
|
1280
1280
|
* @param objects - 所有需要被查找的对象
|
|
@@ -1282,7 +1282,7 @@ export declare class SoonSpace {
|
|
|
1282
1282
|
*/
|
|
1283
1283
|
createFindObjectsInSphereNearPosition(radius: number, objects: Object3D[]): FindObjectsNearPosition;
|
|
1284
1284
|
/**
|
|
1285
|
-
*
|
|
1285
|
+
* 创建用于 查找路径附近的范围内的物体 的查找器
|
|
1286
1286
|
*
|
|
1287
1287
|
* @param points - 描述路径的点
|
|
1288
1288
|
* @param radius - 描述查找半径
|