@realsee/dnalogel 3.9.0 → 3.10.1

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.
@@ -115,6 +115,11 @@ export interface ServerAreaMakerItem {
115
115
  floor_index: number;
116
116
  /** 标注物体 */
117
117
  object_data: {
118
+ /**
119
+ * @description: 是否加载标注模型
120
+ * @default true
121
+ */
122
+ visible?: boolean;
118
123
  /** 标注底面形状,THREE.Shape().toJSON() 的结果 */
119
124
  shape: Record<string, any>;
120
125
  /** 标注底面 y 坐标 */
@@ -133,6 +138,11 @@ export interface ServerAreaMakerItemV1 {
133
138
  id: number;
134
139
  name: string;
135
140
  object_data: {
141
+ /**
142
+ * @description: 是否加载标注模型
143
+ * @default true
144
+ */
145
+ visible?: boolean;
136
146
  /** 绘制平面的三维世界坐标点集合 */
137
147
  points: number[][];
138
148
  /** 楼层索引 */