@glowjs/core 2024.12.10 → 2024.12.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.
@@ -85,6 +85,10 @@ export declare class Building extends Entity {
85
85
  * 获取实例类型
86
86
  */
87
87
  get instanceClass(): any;
88
+ /**
89
+ * 是否要在建筑层级显示外立面和楼层链接
90
+ */
91
+ get doShowLinks(): boolean;
88
92
  /**
89
93
  * 开始轮询
90
94
  */
@@ -20,7 +20,10 @@ export declare class PathAnimation extends Component {
20
20
  private _offset;
21
21
  private _prevDir;
22
22
  private _deltaAngle;
23
- private _angleSpeed;
23
+ /**
24
+ * 获取或设置巡检点旋转角速度
25
+ */
26
+ angleSpeed: number;
24
27
  private _cross;
25
28
  private _target;
26
29
  /**
@@ -4,6 +4,7 @@ import { Entity } from '../../Entity';
4
4
  import { Path } from '../../Path';
5
5
  import { Thing } from '../../Thing';
6
6
  import { Component } from '../Component';
7
+ import { PathAnimation } from '../PathAnimation';
7
8
  /**
8
9
  * 漫游
9
10
  */
@@ -21,7 +22,7 @@ export declare class Roaming extends Component {
21
22
  /**
22
23
  * 路径动画
23
24
  */
24
- private _pathAnimation;
25
+ _pathAnimation: PathAnimation;
25
26
  private _appEvents;
26
27
  /**
27
28
  * 获取或设置垂直偏移
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glowjs/core",
3
- "version": "2024.12.10",
3
+ "version": "2024.12.17",
4
4
  "description": "GlowJS数字孪生引擎核心库。",
5
5
  "main": "./dist/glow.core.js",
6
6
  "types": "./dist/typings/index.d.ts",