@jnrs/lingshu-smart 2.2.24 → 2.2.25

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/AGENTIC.md CHANGED
@@ -180,12 +180,15 @@ type InteractiveUi = ILayer | IStationSlotConfig | IResourceConfig
180
180
 
181
181
  容器配置
182
182
 
183
- | 属性名 | 类型 | 默认值 | 说明 |
184
- | ----------- | ----------------------- | ------- | ---------------------- |
185
- | appDomId | `string \| HTMLElement` | — | APP 容器 DOM ID 或元素 |
186
- | autoStart | `boolean` | `true` | 是否自动启动引擎 |
187
- | appEditable | `boolean` | `false` | APP 是否可编辑状态 |
188
- | actions | `IEventHandler` | | 事件处理配置 |
183
+ | 属性名 | 类型 | 默认值 | 说明 |
184
+ | ------------- | ----------------------- | --------- | ---------------------- |
185
+ | appDomId | `string \| HTMLElement` | — | APP 容器 DOM ID 或元素 |
186
+ | autoStart | `boolean` | `true` | 是否自动启动引擎 |
187
+ | appHittable | `boolean` | `true` | APP 是否可交互 |
188
+ | appEditable | `boolean` | `false` | APP 是否可编辑状态 |
189
+ | appFill | `string` | `#424242` | APP 背景填充颜色 |
190
+ | hideSceneFill | `boolean` | `false` | 隐藏场景背景填充 |
191
+ | actions | `IEventHandler` | — | 事件处理配置 |
189
192
 
190
193
  ##### 工具函数 (Utils)
191
194
 
@@ -388,11 +391,13 @@ const editorActions = {
388
391
 
389
392
  **Props:**
390
393
 
391
- | 属性名 | 类型 | 默认值 | 说明 |
392
- | -------- | ---------------- | ------ | -------------- |
393
- | actions | `PreviewActions` | `{}` | 事件处理配置 |
394
- | caseUuid | `string` | | 案例 UUID |
395
- | appFill | `string` | | app 容器填充色 |
394
+ | 属性名 | 类型 | 默认值 | 说明 |
395
+ | ------------- | ---------------- | --------- | --------------------- |
396
+ | caseUuid | `string` | | 案例 UUID(Required) |
397
+ | actions | `PreviewActions` | `{}` | 事件处理配置 |
398
+ | appHittable | `boolean` | `true` | app 是否可交互 |
399
+ | appFill | `string` | `#424242` | app 容器填充色 |
400
+ | hideSceneFill | `boolean` | `false` | 隐藏场景填充色 |
396
401
 
397
402
  **PreviewActions 接口:**
398
403