- 添加新的UI控件系统(Core.h, ScalarControls.h, VectorControls.h, UI.h) - 更新SceneManager支持场景层级管理 - 优化SelectionManager选择管理 - 改进InspectorPanel/GameViewPanel/HierarchyPanel等面板 - 更新RHI文档说明Vulkan实现计划
19 lines
214 B
C++
19 lines
214 B
C++
#pragma once
|
|
|
|
#include "Panel.h"
|
|
|
|
namespace XCEngine {
|
|
namespace Editor {
|
|
|
|
class GameViewPanel : public Panel {
|
|
public:
|
|
GameViewPanel();
|
|
void Render() override;
|
|
|
|
private:
|
|
void RenderGameView();
|
|
};
|
|
|
|
}
|
|
}
|