@glowjs/core 2025.8.15 → 2025.8.21

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.
@@ -37,6 +37,8 @@ export declare class CameraMgr extends Base {
37
37
  * @param app 应用
38
38
  */
39
39
  constructor(app: App);
40
+ /** 当前层级Y轴世界坐标 */
41
+ get levelWorldY(): number;
40
42
  /**
41
43
  * 获取或设置人称
42
44
  */
@@ -12,6 +12,10 @@ export declare class Animator extends Component {
12
12
  * @param entity 实体
13
13
  */
14
14
  constructor(entity: Entity);
15
+ /**
16
+ * 获取是否正在播放
17
+ */
18
+ get isPlaying(): boolean;
15
19
  /**
16
20
  * 获取动画组列表
17
21
  */
@@ -109,4 +109,8 @@ export declare class Roaming extends Component {
109
109
  * 结束路径编辑
110
110
  */
111
111
  endPathEdit(): Promise<void>;
112
+ /**
113
+ * 清空路径
114
+ */
115
+ clearPath(): void;
112
116
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glowjs/core",
3
- "version": "2025.08.15",
3
+ "version": "2025.08.21",
4
4
  "description": "GlowJS数字孪生引擎核心库。",
5
5
  "main": "./dist/glow.core.js",
6
6
  "types": "./dist/typings/index.d.ts",