Feature/tilemap editor (#237)

* feat: 添加 Tilemap 编辑器插件和组件生命周期支持

* feat(editor-core): 添加声明式插件注册 API

* feat(editor-core): 改进tiledmap结构合并tileset进tiledmapeditor

* feat: 添加 editor-runtime SDK 和插件系统改进

* fix(ci): 修复SceneResourceManager里变量未使用问题
This commit is contained in:
YHH
2025-11-25 22:23:19 +08:00
committed by GitHub
parent 551ca7805d
commit 3fb6f919f8
166 changed files with 54691 additions and 8674 deletions

View File

@@ -6,6 +6,8 @@
export * from './Plugins/IEditorPlugin';
export * from './Plugins/EditorPluginManager';
export * from './Plugins/PluginTypes';
export * from './Plugins/PluginRegistry';
export * from './Services/UIRegistry';
export * from './Services/MessageHub';
@@ -20,6 +22,7 @@ export * from './Services/LogService';
export * from './Services/SettingsRegistry';
export * from './Services/SceneManagerService';
export * from './Services/FileActionRegistry';
export * from './Services/EntityCreationRegistry';
export * from './Services/CompilerRegistry';
export * from './Services/ICompiler';
export * from './Services/ICommand';
@@ -35,6 +38,9 @@ export * from './Services/IPropertyRenderer';
export * from './Services/PropertyRendererRegistry';
export * from './Services/IFieldEditor';
export * from './Services/FieldEditorRegistry';
export * from './Services/ComponentActionRegistry';
export * from './Gizmos';
export * from './Module/IEventBus';
export * from './Module/ICommandRegistry';