* feat: 添加 Tilemap 编辑器插件和组件生命周期支持 * feat(editor-core): 添加声明式插件注册 API * feat(editor-core): 改进tiledmap结构合并tileset进tiledmapeditor * feat: 添加 editor-runtime SDK 和插件系统改进 * fix(ci): 修复SceneResourceManager里变量未使用问题
13 lines
369 B
TypeScript
13 lines
369 B
TypeScript
/**
|
|
* Gizmo System
|
|
* Gizmo 系统
|
|
*
|
|
* Provides interfaces for custom gizmo rendering in the editor.
|
|
* Gizmos are rendered by the Rust WebGL engine for optimal performance.
|
|
* 为编辑器中的自定义 gizmo 渲染提供接口。
|
|
* Gizmo 由 Rust WebGL 引擎渲染以获得最佳性能。
|
|
*/
|
|
|
|
export * from './IGizmoProvider';
|
|
export * from './GizmoRegistry';
|