ow-eengine-power 2.5.7 → 2.5.8

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.
@@ -18321,6 +18321,20 @@ class Wh {
18321
18321
  setDynamicLoadingEnabled(t) {
18322
18322
  this.isDynamicLoadingEnabled = t, this.lineConstruction.setDynamicLoadingEnabled(t), this.terrainConstruction.setDynamicLoadingEnabled(t);
18323
18323
  }
18324
+ /**
18325
+ * 设置是否启用动态加载模式
18326
+ * @param enable 是否启用动态加载(true: 启用, false: 禁用)
18327
+ */
18328
+ setDynamicLoadingEnabled_line(t) {
18329
+ this.lineConstruction.setDynamicLoadingEnabled(t);
18330
+ }
18331
+ /**
18332
+ * 设置是否启用动态加载模式
18333
+ * @param enable 是否启用动态加载(true: 启用, false: 禁用)
18334
+ */
18335
+ setDynamicLoadingEnabled_tree(t) {
18336
+ this.terrainConstruction.setDynamicLoadingEnabled(t);
18337
+ }
18324
18338
  /**
18325
18339
  * 获取当前是否启用动态加载模式
18326
18340
  * @returns 当前的动态加载状态