need to upload

This commit is contained in:
2026-04-20 23:02:01 -05:00
parent 1cfcdaf4b7
commit 3c3d8cae00
3 changed files with 39 additions and 55 deletions

View File

@@ -1,39 +1,15 @@
#ifndef CHOCOLATE_CHOCOLATE_H
#define CHOCOLATE_CHOCOLATE_H
#include <Corrade/Containers/Optional.h>
#include <Corrade/Containers/Pair.h>
#include <Corrade/PluginManager/Manager.h>
#include <Corrade/Utility/Arguments.h>
#include <Magnum/GL/Framebuffer.h>
#include <Magnum/ImageView.h>
#include <Magnum/Math/Time.h>
#include <Magnum/Mesh.h>
#include <Magnum/GL/DefaultFramebuffer.h>
#include <Magnum/GL/Mesh.h>
#include <Magnum/GL/Renderer.h>
#include <Magnum/Math/Color.h>
#include <Magnum/MeshTools/Compile.h>
#include <Magnum/Platform/Sdl2Application.h>
#include <Magnum/SceneGraph/Camera.h>
#include <Magnum/SceneGraph/Drawable.h>
#include <Magnum/SceneGraph/MatrixTransformation3D.h>
#include <Magnum/SceneGraph/Scene.h>
#include <Magnum/Shaders/PhongGL.h>
#include <Magnum/Trade/AbstractImporter.h>
#include <Magnum/Trade/MeshData.h>
#include <Magnum/Trade/PhongMaterialData.h>
#include <Magnum/Trade/TextureData.h>
#include <entt/entt.hpp>
#include <imgui.h>
#include <Magnum/ImGuiIntegration/Context.hpp>
#include "Camera.h"
#include "Materials.h"
#include "UI.h"
@@ -85,11 +61,8 @@ private:
entt::registry _registry;
entt::entity selectedEntityToEdit = entt::null;
bool showEntityEditorWindow = false;
ImGuiIntegration::Context _imgui{NoCreate};
float _sidebarWidth = 0.17f;
std::vector<UI::Component*> _uiComponents;
UI::RenderWindow _uiSceneRenderer;
UI::EntityListPanel _uiEntityListPanel;