diff --git a/Editor重构计划.md b/Editor重构计划.md index 28ad2a5a..8c95e12b 100644 --- a/Editor重构计划.md +++ b/Editor重构计划.md @@ -470,9 +470,9 @@ private: - `editor/src/Core/EventBus.h` - 类型安全事件总线 - `editor/src/Core/EditorEvents.h` - 编辑器事件类型定义 - `editor/src/Core/ISelectionManager.h` - 选择管理器接口 -- `editor/src/Core/SelectionManagerImpl.h` - 选择管理器实现 +- `editor/src/Core/SelectionManager.h` - 选择管理器实现 - `editor/src/Core/IEditorContext.h` - 编辑器上下文接口 -- `editor/src/Core/EditorContextImpl.h` - 编辑器上下文实现 +- `editor/src/Core/EditorContext.h` - 编辑器上下文实现 - `editor/src/Core/EditorConsoleSink.h/cpp` - Editor 专用日志 Sink **2026-03-25 更新**: @@ -483,6 +483,8 @@ private: - **日志系统统一**:删除了独立的 LogSystem 单例,Editor 和 Engine 共用 Debug::Logger - ConsolePanel 改用 EditorConsoleSink 从 Logger 读取日志 - 删除了 `editor/src/Managers/LogSystem.h/cpp` 和 `editor/src/Core/LogEntry.h` +- **命名规范修复**:SelectionManagerImpl → SelectionManager,EditorContextImpl → EditorContext +- 删除了未使用的 SceneManagerImpl 和 ISceneManager ### 阶段二:核心功能(第 3-4 周)