@glowjs/core 2024.12.7 → 2024.12.11

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.
@@ -1757,7 +1757,7 @@ export declare class CameraMgr extends Base {
1757
1757
  */
1758
1758
  get person(): CameraPerson;
1759
1759
  set person(value: CameraPerson);
1760
- _setCameraByRoaming(): void;
1760
+ _setCameraByRoaming(): Promise<void>;
1761
1761
  /**
1762
1762
  * 获取相机是否在飞行
1763
1763
  */
@@ -3918,6 +3918,11 @@ export declare class Path extends Entity {
3918
3918
  * 移除拖动功能
3919
3919
  */
3920
3920
  detachDrag(): void;
3921
+ /**
3922
+ * 设置透明度
3923
+ * @param value 透明度
3924
+ */
3925
+ setAlpha(value: number): void;
3921
3926
  }
3922
3927
  /**
3923
3928
  * 路径动画
@@ -3936,6 +3941,14 @@ export declare class PathAnimation extends Component {
3936
3941
  private _eventDispatcher;
3937
3942
  private _pause;
3938
3943
  private _offset;
3944
+ private _prevDir;
3945
+ private _deltaAngle;
3946
+ /**
3947
+ * 获取或设置巡检点旋转角速度
3948
+ */
3949
+ angleSpeed: number;
3950
+ private _cross;
3951
+ private _target;
3939
3952
  /**
3940
3953
  * 获取垂直偏移
3941
3954
  */