gs-bim-air 1.6.1-beta.57 → 1.6.1-beta.59

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/README.md CHANGED
@@ -1,4 +1,28 @@
1
- ## 更新日志
1
+ ## BIMAir 更新日志
2
+
3
+ ### 1.6.1-beta.59
4
+
5
+ - feat: 导出专业爆炸命令,用法如下
6
+
7
+ ```js
8
+ let command = new BimAir.Command.CommandShowProModelExplosion();
9
+ viewer.process.commandManager.execute(command);
10
+ command.hide();
11
+
12
+ command.beginProExplosion([viewer.structureTreeManager.rootNode]); //爆炸指定的节点
13
+ command.setExplosion(10);
14
+
15
+ //结束命令
16
+ viewer.process.commandManager.execute(new BimAir.Command.CommandSelect());
17
+ ```
18
+
19
+ ### 1.6.1-beta.58
20
+
21
+ - feat: 投影地图从 command 改为 panel
22
+ - feat: 动画模块增加添加剖面的选项.
23
+ - feat: 更新第一人称漫游生成剖切面板逻辑
24
+ - feat: 添加剖切面及剖切面更新事件
25
+ - fix: 修复动画模块不更新场景的问题
2
26
 
3
27
  ### 1.6.1-beta.57
4
28