soonspacejs 2.6.12 → 2.6.13

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.6.12",
3
+ "version": "2.6.13",
4
4
  "homepage": "http://www.xwbuilders.com:8800/",
5
5
  "description": "soonspacejs 2.x",
6
6
  "module": "./dist/index.esm.js",
@@ -28,5 +28,5 @@
28
28
  "peerDependencies": {
29
29
  "three": ">=0.150.1"
30
30
  },
31
- "gitHead": "8820969f96a2b42e9a1dc6a853f0588c17f33f44"
31
+ "gitHead": "e3ad4e1e7ffe4edc06c9f3094d624a4fc21fd7d8"
32
32
  }
@@ -7,6 +7,8 @@ import { VectorMembersToIVectors } from '@three3d/tools';
7
7
  import type { SoonSpace } from '../index';
8
8
  /**
9
9
  * 动画的路径
10
+ * @remarks
11
+ * 可以是一组点,或者一个曲线 Curve,或者拓扑路径 Topology
10
12
  */
11
13
  export type AnimationPath = IVector3[] | Curve<Vector3> | Topology;
12
14
  /**
package/types/index.d.ts CHANGED
@@ -1309,8 +1309,8 @@ export declare class SoonSpace {
1309
1309
  /**
1310
1310
  * 创建沿路径运动的动画 action
1311
1311
  *
1312
- * @param target
1313
- * @param path
1312
+ * @param target - 目标对象;需要让哪个目标沿着曲线路径运行
1313
+ * @param path - 路径;可以是一组点,或者一个曲线 Curve,或者拓扑路径 Topology
1314
1314
  * @param options
1315
1315
  * @returns 返回 AnimationOperate,它是对 AnimationAction 的扩展
1316
1316
  */
@@ -1318,7 +1318,6 @@ export declare class SoonSpace {
1318
1318
  /**
1319
1319
  * 创建相机动画
1320
1320
  * @param path
1321
- * @param mixer
1322
1321
  * @param options
1323
1322
  * @returns
1324
1323
  */