@glowjs/core 2025.8.7 → 2025.8.13
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
|
@@ -2092,6 +2092,18 @@ export declare class CameraMgr extends Base {
|
|
|
2092
2092
|
* 获取正交投影的高度
|
|
2093
2093
|
*/
|
|
2094
2094
|
get orthHeight(): number;
|
|
2095
|
+
/**
|
|
2096
|
+
* 获取或设置相机的平移因子(仅在透视模式下有效),默认值2,越大越慢。
|
|
2097
|
+
*/
|
|
2098
|
+
panningFactor: number;
|
|
2099
|
+
/**
|
|
2100
|
+
* 获取或设置相机的最大平移灵敏度(最慢时的值),默认值1000
|
|
2101
|
+
*/
|
|
2102
|
+
maxPanningSensibility: number;
|
|
2103
|
+
/**
|
|
2104
|
+
* 获取或设置相机的最小平移灵敏度(最快时的值),默认值0.1
|
|
2105
|
+
*/
|
|
2106
|
+
minPanningSensibility: number;
|
|
2095
2107
|
/**
|
|
2096
2108
|
* 从给定位置和目标重建角度(alpha, beta)和半径
|
|
2097
2109
|
*/
|
|
@@ -3235,6 +3247,10 @@ export declare class Floor extends Entity {
|
|
|
3235
3247
|
* 获取所有路径
|
|
3236
3248
|
*/
|
|
3237
3249
|
get paths(): Path[];
|
|
3250
|
+
/**
|
|
3251
|
+
* 获取当前层级的所有图层
|
|
3252
|
+
*/
|
|
3253
|
+
get layers(): number[];
|
|
3238
3254
|
/**
|
|
3239
3255
|
* 序列化成JSON对象
|
|
3240
3256
|
*/
|