@glowjs/core 2025.8.13 → 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 +16 -6
- package/dist/glow.core.js +1 -1
- package/dist/typings/camera/CameraMgr.d.ts +2 -0
- package/dist/typings/entity/Floor.d.ts +5 -5
- package/dist/typings/entity/Thing.d.ts +1 -1
- package/dist/typings/entity/component/Animator.d.ts +4 -0
- package/dist/typings/entity/component/roaming/Roaming.d.ts +4 -0
- package/package.json +1 -1
|
@@ -72,7 +72,7 @@ export declare class Floor extends Entity {
|
|
|
72
72
|
/**
|
|
73
73
|
* 获取当前层级的所有图层
|
|
74
74
|
*/
|
|
75
|
-
get layers():
|
|
75
|
+
get layers(): string[];
|
|
76
76
|
/**
|
|
77
77
|
* 序列化成JSON对象
|
|
78
78
|
*/
|
|
@@ -117,12 +117,12 @@ export declare class Floor extends Entity {
|
|
|
117
117
|
dispose(): void;
|
|
118
118
|
/**
|
|
119
119
|
* 创建指定图层
|
|
120
|
-
* @param
|
|
120
|
+
* @param layers 图层列表
|
|
121
121
|
*/
|
|
122
|
-
|
|
122
|
+
createLayers(...layers: string[]): Promise<void>;
|
|
123
123
|
/**
|
|
124
124
|
* 销毁指定图层
|
|
125
|
-
* @param layer
|
|
125
|
+
* @param layer 图层列表
|
|
126
126
|
*/
|
|
127
|
-
|
|
127
|
+
destroyLayers(...layers: string[]): Promise<void>;
|
|
128
128
|
}
|