@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.
package/dist/glow.core.d.ts
CHANGED
|
@@ -747,6 +747,10 @@ export declare class Animator extends Component {
|
|
|
747
747
|
* @param entity 实体
|
|
748
748
|
*/
|
|
749
749
|
constructor(entity: Entity);
|
|
750
|
+
/**
|
|
751
|
+
* 获取是否正在播放
|
|
752
|
+
*/
|
|
753
|
+
get isPlaying(): boolean;
|
|
750
754
|
/**
|
|
751
755
|
* 获取动画组列表
|
|
752
756
|
*/
|
|
@@ -1854,6 +1858,8 @@ export declare class CameraMgr extends Base {
|
|
|
1854
1858
|
* @param app 应用
|
|
1855
1859
|
*/
|
|
1856
1860
|
constructor(app: App);
|
|
1861
|
+
/** 当前层级Y轴世界坐标 */
|
|
1862
|
+
get levelWorldY(): number;
|
|
1857
1863
|
/**
|
|
1858
1864
|
* 获取或设置人称
|
|
1859
1865
|
*/
|
|
@@ -4759,6 +4765,10 @@ export declare class Roaming extends Component {
|
|
|
4759
4765
|
* 结束路径编辑
|
|
4760
4766
|
*/
|
|
4761
4767
|
endPathEdit(): Promise<void>;
|
|
4768
|
+
/**
|
|
4769
|
+
* 清空路径
|
|
4770
|
+
*/
|
|
4771
|
+
clearPath(): void;
|
|
4762
4772
|
}
|
|
4763
4773
|
/**
|
|
4764
4774
|
* 房间
|