@glowjs/core 2026.3.3 → 2026.3.5

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.
@@ -3192,6 +3192,7 @@ export declare class FPSBar extends TextBlock {
3192
3192
  export declare class Fence extends Entity {
3193
3193
  /** 高度 */
3194
3194
  static height: number;
3195
+ /** 动画速度 */
3195
3196
  static animationSpeed: number;
3196
3197
  /** 点集 */
3197
3198
  points: Point3D[];
@@ -3218,7 +3219,7 @@ export declare class Fence extends Entity {
3218
3219
  unbuild(): void;
3219
3220
  }
3220
3221
  /**
3221
- * 围栏管理器组件
3222
+ * 电子围栏管理器组件
3222
3223
  */
3223
3224
  export declare class FenceMgr extends Component {
3224
3225
  private _edit;
@@ -3233,15 +3234,15 @@ export declare class FenceMgr extends Component {
3233
3234
  private _appEvents;
3234
3235
  /** 结束编辑时触发的回调函数 */
3235
3236
  onEndEdit: (face: Fence) => void;
3236
- /** 围栏列表 */
3237
+ /** 电子围栏列表 */
3237
3238
  get fenceList(): Fence[];
3238
3239
  /**
3239
- * 添加一个围栏
3240
- * @param json 围栏JSON
3240
+ * 添加一个电子围栏
3241
+ * @param json 电子围栏JSON对象
3241
3242
  */
3242
3243
  addOne(json: any): Fence;
3243
3244
  /**
3244
- * 创建所有围栏
3245
+ * 创建所有电子围栏
3245
3246
  */
3246
3247
  build(): Promise<void>;
3247
3248
  /**