2025-10-14 22:33:55 +08:00
|
|
|
/**
|
|
|
|
|
* ECS Framework Editor Core
|
|
|
|
|
*
|
|
|
|
|
* Plugin-based editor framework for ECS Framework
|
|
|
|
|
*/
|
|
|
|
|
|
2025-11-27 20:42:46 +08:00
|
|
|
// 新插件系统 | New plugin system
|
|
|
|
|
export * from './Plugin';
|
2025-10-14 22:33:55 +08:00
|
|
|
|
|
|
|
|
export * from './Services/UIRegistry';
|
|
|
|
|
export * from './Services/MessageHub';
|
|
|
|
|
export * from './Services/SerializerRegistry';
|
2025-10-14 23:31:09 +08:00
|
|
|
export * from './Services/EntityStoreService';
|
2025-10-14 23:42:06 +08:00
|
|
|
export * from './Services/ComponentRegistry';
|
2025-10-14 23:56:54 +08:00
|
|
|
export * from './Services/LocaleService';
|
2025-10-15 00:15:12 +08:00
|
|
|
export * from './Services/PropertyMetadata';
|
2025-10-15 00:23:19 +08:00
|
|
|
export * from './Services/ProjectService';
|
2025-10-15 00:40:27 +08:00
|
|
|
export * from './Services/ComponentDiscoveryService';
|
2025-10-15 17:21:59 +08:00
|
|
|
export * from './Services/LogService';
|
2025-10-16 13:07:19 +08:00
|
|
|
export * from './Services/SettingsRegistry';
|
2025-10-17 18:13:31 +08:00
|
|
|
export * from './Services/SceneManagerService';
|
2025-11-27 20:42:46 +08:00
|
|
|
export * from './Services/SceneTemplateRegistry';
|
2025-11-04 18:29:28 +08:00
|
|
|
export * from './Services/FileActionRegistry';
|
2025-11-25 22:23:19 +08:00
|
|
|
export * from './Services/EntityCreationRegistry';
|
2025-11-18 14:46:51 +08:00
|
|
|
export * from './Services/CompilerRegistry';
|
|
|
|
|
export * from './Services/ICompiler';
|
|
|
|
|
export * from './Services/ICommand';
|
|
|
|
|
export * from './Services/BaseCommand';
|
|
|
|
|
export * from './Services/CommandManager';
|
|
|
|
|
export * from './Services/IEditorDataStore';
|
|
|
|
|
export * from './Services/IFileSystem';
|
|
|
|
|
export * from './Services/IDialog';
|
|
|
|
|
export * from './Services/INotification';
|
|
|
|
|
export * from './Services/IInspectorProvider';
|
|
|
|
|
export * from './Services/InspectorRegistry';
|
2025-11-18 22:28:13 +08:00
|
|
|
export * from './Services/IPropertyRenderer';
|
|
|
|
|
export * from './Services/PropertyRendererRegistry';
|
2025-11-19 14:54:03 +08:00
|
|
|
export * from './Services/IFieldEditor';
|
|
|
|
|
export * from './Services/FieldEditorRegistry';
|
2025-11-26 11:08:10 +08:00
|
|
|
export * from './Services/ComponentInspectorRegistry';
|
2025-11-27 20:42:46 +08:00
|
|
|
export * from './Services/ComponentActionRegistry';
|
2025-11-25 22:23:19 +08:00
|
|
|
|
|
|
|
|
export * from './Gizmos';
|
2025-11-18 14:46:51 +08:00
|
|
|
|
|
|
|
|
export * from './Module/IEventBus';
|
|
|
|
|
export * from './Module/ICommandRegistry';
|
|
|
|
|
export * from './Module/IPanelRegistry';
|
|
|
|
|
export * from './Module/IModuleContext';
|
|
|
|
|
export * from './Module/IEditorModule';
|
2025-10-14 22:33:55 +08:00
|
|
|
|
2025-10-17 18:13:31 +08:00
|
|
|
export * from './Types/IFileAPI';
|
2025-11-27 20:42:46 +08:00
|
|
|
export * from './Types/UITypes';
|