three-edit-cores 0.0.15 → 0.0.17
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 +2 -0
- package/dist/index.js +6892 -6197
- package/package.json +3 -1
package/README.md
CHANGED
|
@@ -92,6 +92,8 @@ obj.REMOVECALL?.() // 物体从场景移除的时候调用例如 group.REMOVECAL
|
|
|
92
92
|
|
|
93
93
|
obj.SET_STORAGE_CALL?.(storage) // 物体存储赋值后调用 例如 group.SET_STORAGE_CALL = (storage) => console.log('group存储了', storage)
|
|
94
94
|
|
|
95
|
+
scene.SET_STORAGE_CALL?.(storage) // 场景存储赋值后调用 例如 scene.SET_STORAGE_CALL = (storage) => console.log('场景还原', storage)
|
|
96
|
+
|
|
95
97
|
```
|
|
96
98
|
|
|
97
99
|
### 自定义3D 组件
|