gs-bim-air 1.6.1-beta.27 → 1.6.1-beta.28

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,5 +1,13 @@
1
1
  ## 更新日志
2
2
 
3
+ ### 1.6.1-beta.28
4
+
5
+ > Longan 更新为 v1.6.1-beta.19
6
+
7
+ - fix: 修复判断 memory full,不加载这部分数据后,没有把 seg 的 asyn geometry 的值改回 on.
8
+ - feat: 修复 uv 贴图是 base64 时崩溃
9
+ - docs: 去除日志的超链接
10
+
3
11
  ### 1.6.1-beta.27
4
12
 
5
13
  > Longan 更新为 v1.6.1-beta.17
@@ -31,7 +39,7 @@
31
39
 
32
40
  ### 1.6.1-beta.22
33
41
 
34
- - feat: 面板功能增加修改面板颜色参数,具体请查看[面板文档](./docs/classes/Germetry.Plane.md#addplane)
42
+ - feat: 面板功能增加修改面板颜色参数,具体请查看面板文档
35
43
  - fix: 修复模型截取起点为 0 时结果出错,截出不封闭的面
36
44
  - fix: 修复文档导出 Geometry 拼写错误
37
45
 
@@ -70,7 +78,7 @@
70
78
 
71
79
  > Longan 更新为 v1.6.1-beta.13
72
80
 
73
- - fix: 模型截取功能支持多构件截取,具体示例请看[模型截取示例](./readme/%E6%A8%A1%E5%9E%8B%E6%88%AA%E5%8F%96%E7%A4%BA%E4%BE%8B.md)
81
+ - fix: 模型截取功能支持多构件截取,具体示例请看模型截取示例文档
74
82
  - fix: 截取结果的构件加上颜色
75
83
  - fix: 截取结果添加构件属性
76
84
  - fix: 修复 ensure 与 updateDisplay 对同一个 segment 同时起效时,可能往一个 segment 中插入两次几何的问题.
@@ -83,7 +91,7 @@
83
91
  >
84
92
  > Longan 更新为 v1.6.1-beta.12
85
93
 
86
- - feat: 添加模型截取功能,具体示例请看[模型截取示例](./readme/%E6%A8%A1%E5%9E%8B%E6%88%AA%E5%8F%96%E7%A4%BA%E4%BE%8B.md)
94
+ - feat: 添加模型截取功能,具体示例请看模型截取示例文档
87
95
  - feat: lightModel 添加 streamToSegmentRunningCount 计数器.
88
96
  - feat: 结构树界面显示时不隐藏按钮
89
97
  - feat: 添加几何加载完毕后回调列表 geometryDrawFinish,使用方式如下:
@@ -12,6 +12,7 @@
12
12
 
13
13
  ### Properties
14
14
 
15
+ - [imageName](Animation.UvEffectConfig.md#imagename)
15
16
  - [imageScale](Animation.UvEffectConfig.md#imagescale)
16
17
  - [imageSrc](Animation.UvEffectConfig.md#imagesrc)
17
18
  - [isFill](Animation.UvEffectConfig.md#isfill)
@@ -26,7 +27,7 @@
26
27
 
27
28
  ### constructor
28
29
 
29
- • **new UvEffectConfig**(`viewer`, `name`, `path`, `width`, `uSpeed`, `vSpeed`, `imageSrc`, `imageScale`, `isFill`)
30
+ • **new UvEffectConfig**(`viewer`, `name`, `path`, `width`, `uSpeed`, `vSpeed`, `imageSrc`, `imageName`, `imageScale`, `isFill`)
30
31
 
31
32
  #### Parameters
32
33
 
@@ -38,12 +39,19 @@
38
39
  | `width` | `number` | 路径宽带 |
39
40
  | `uSpeed` | `number` | X方向速度 |
40
41
  | `vSpeed` | `number` | Y方向速度 * |
41
- | `imageSrc` | `string` | 贴图路径 * |
42
+ | `imageSrc` | `string` | 贴图路径 |
43
+ | `imageName` | `string` | 贴图名称 * |
42
44
  | `imageScale` | [`number`, `number`] | 贴图缩放 * |
43
45
  | `isFill` | `boolean` | 贴图是否拉伸进行填充 |
44
46
 
45
47
  ## Properties
46
48
 
49
+ ### imageName
50
+
51
+ • **imageName**: `string`
52
+
53
+ ___
54
+
47
55
  ### imageScale
48
56
 
49
57
  • **imageScale**: [`number`, `number`]
@@ -75,6 +75,7 @@
75
75
 
76
76
  - [enable](Longan.CameraMouse.md#enable)
77
77
  - [isBusyLocked](Longan.CameraMouse.md#isbusylocked)
78
+ - [isBusyLocked\_SmoothTransition](Longan.CameraMouse.md#isbusylocked_smoothtransition)
78
79
  - [lButtonSate](Longan.CameraMouse.md#lbuttonsate)
79
80
  - [viewer](Longan.CameraMouse.md#viewer)
80
81
 
@@ -523,6 +524,28 @@ ___
523
524
 
524
525
  ___
525
526
 
527
+ ### isBusyLocked\_SmoothTransition
528
+
529
+ • `get` **isBusyLocked_SmoothTransition**(): `boolean`
530
+
531
+ #### Returns
532
+
533
+ `boolean`
534
+
535
+ • `set` **isBusyLocked_SmoothTransition**(`value`): `void`
536
+
537
+ #### Parameters
538
+
539
+ | Name | Type |
540
+ | :------ | :------ |
541
+ | `value` | `boolean` |
542
+
543
+ #### Returns
544
+
545
+ `void`
546
+
547
+ ___
548
+
526
549
  ### lButtonSate
527
550
 
528
551
  • `get` **lButtonSate**(): `LButtonState`
@@ -67,6 +67,7 @@
67
67
 
68
68
  - [enable](Longan.CameraPlanMouse.md#enable)
69
69
  - [isBusyLocked](Longan.CameraPlanMouse.md#isbusylocked)
70
+ - [isBusyLocked\_SmoothTransition](Longan.CameraPlanMouse.md#isbusylocked_smoothtransition)
70
71
  - [lButtonSate](Longan.CameraPlanMouse.md#lbuttonsate)
71
72
  - [viewer](Longan.CameraPlanMouse.md#viewer)
72
73
 
@@ -607,6 +608,36 @@ CameraMouse.isBusyLocked
607
608
 
608
609
  ___
609
610
 
611
+ ### isBusyLocked\_SmoothTransition
612
+
613
+ • `get` **isBusyLocked_SmoothTransition**(): `boolean`
614
+
615
+ #### Returns
616
+
617
+ `boolean`
618
+
619
+ #### Inherited from
620
+
621
+ CameraMouse.isBusyLocked\_SmoothTransition
622
+
623
+ • `set` **isBusyLocked_SmoothTransition**(`value`): `void`
624
+
625
+ #### Parameters
626
+
627
+ | Name | Type |
628
+ | :------ | :------ |
629
+ | `value` | `boolean` |
630
+
631
+ #### Returns
632
+
633
+ `void`
634
+
635
+ #### Inherited from
636
+
637
+ CameraMouse.isBusyLocked\_SmoothTransition
638
+
639
+ ___
640
+
610
641
  ### lButtonSate
611
642
 
612
643
  • `get` **lButtonSate**(): `LButtonState`
@@ -78,6 +78,7 @@
78
78
 
79
79
  - [enable](Longan.EarthCameraMouse.md#enable)
80
80
  - [isBusyLocked](Longan.EarthCameraMouse.md#isbusylocked)
81
+ - [isBusyLocked\_SmoothTransition](Longan.EarthCameraMouse.md#isbusylocked_smoothtransition)
81
82
  - [lButtonSate](Longan.EarthCameraMouse.md#lbuttonsate)
82
83
  - [viewer](Longan.EarthCameraMouse.md#viewer)
83
84
 
@@ -688,6 +689,36 @@ CameraMouse.isBusyLocked
688
689
 
689
690
  ___
690
691
 
692
+ ### isBusyLocked\_SmoothTransition
693
+
694
+ • `get` **isBusyLocked_SmoothTransition**(): `boolean`
695
+
696
+ #### Returns
697
+
698
+ `boolean`
699
+
700
+ #### Inherited from
701
+
702
+ CameraMouse.isBusyLocked\_SmoothTransition
703
+
704
+ • `set` **isBusyLocked_SmoothTransition**(`value`): `void`
705
+
706
+ #### Parameters
707
+
708
+ | Name | Type |
709
+ | :------ | :------ |
710
+ | `value` | `boolean` |
711
+
712
+ #### Returns
713
+
714
+ `void`
715
+
716
+ #### Inherited from
717
+
718
+ CameraMouse.isBusyLocked\_SmoothTransition
719
+
720
+ ___
721
+
691
722
  ### lButtonSate
692
723
 
693
724
  • `get` **lButtonSate**(): `LButtonState`
@@ -68,6 +68,7 @@
68
68
 
69
69
  - [enable](Longan.PanoramaCameraMouse.md#enable)
70
70
  - [isBusyLocked](Longan.PanoramaCameraMouse.md#isbusylocked)
71
+ - [isBusyLocked\_SmoothTransition](Longan.PanoramaCameraMouse.md#isbusylocked_smoothtransition)
71
72
  - [lButtonSate](Longan.PanoramaCameraMouse.md#lbuttonsate)
72
73
  - [viewer](Longan.PanoramaCameraMouse.md#viewer)
73
74
 
@@ -615,6 +616,36 @@ CameraMouse.isBusyLocked
615
616
 
616
617
  ___
617
618
 
619
+ ### isBusyLocked\_SmoothTransition
620
+
621
+ • `get` **isBusyLocked_SmoothTransition**(): `boolean`
622
+
623
+ #### Returns
624
+
625
+ `boolean`
626
+
627
+ #### Inherited from
628
+
629
+ CameraMouse.isBusyLocked\_SmoothTransition
630
+
631
+ • `set` **isBusyLocked_SmoothTransition**(`value`): `void`
632
+
633
+ #### Parameters
634
+
635
+ | Name | Type |
636
+ | :------ | :------ |
637
+ | `value` | `boolean` |
638
+
639
+ #### Returns
640
+
641
+ `void`
642
+
643
+ #### Inherited from
644
+
645
+ CameraMouse.isBusyLocked\_SmoothTransition
646
+
647
+ ___
648
+
618
649
  ### lButtonSate
619
650
 
620
651
  • `get` **lButtonSate**(): `LButtonState`
@@ -67,6 +67,7 @@
67
67
 
68
68
  - [enable](Longan.PerspectiveCameraMouse.md#enable)
69
69
  - [isBusyLocked](Longan.PerspectiveCameraMouse.md#isbusylocked)
70
+ - [isBusyLocked\_SmoothTransition](Longan.PerspectiveCameraMouse.md#isbusylocked_smoothtransition)
70
71
  - [lButtonSate](Longan.PerspectiveCameraMouse.md#lbuttonsate)
71
72
  - [viewer](Longan.PerspectiveCameraMouse.md#viewer)
72
73
 
@@ -607,6 +608,36 @@ CameraMouse.isBusyLocked
607
608
 
608
609
  ___
609
610
 
611
+ ### isBusyLocked\_SmoothTransition
612
+
613
+ • `get` **isBusyLocked_SmoothTransition**(): `boolean`
614
+
615
+ #### Returns
616
+
617
+ `boolean`
618
+
619
+ #### Inherited from
620
+
621
+ CameraMouse.isBusyLocked\_SmoothTransition
622
+
623
+ • `set` **isBusyLocked_SmoothTransition**(`value`): `void`
624
+
625
+ #### Parameters
626
+
627
+ | Name | Type |
628
+ | :------ | :------ |
629
+ | `value` | `boolean` |
630
+
631
+ #### Returns
632
+
633
+ `void`
634
+
635
+ #### Inherited from
636
+
637
+ CameraMouse.isBusyLocked\_SmoothTransition
638
+
639
+ ___
640
+
610
641
  ### lButtonSate
611
642
 
612
643
  • `get` **lButtonSate**(): `LButtonState`