adding plane shape and universal guizmo (this is the wrong branch)

This commit is contained in:
Erris
2026-03-07 11:48:46 +01:00
parent 44f766863d
commit af7b7d2bfa
8 changed files with 72 additions and 14 deletions

View File

@@ -283,4 +283,16 @@ namespace OpenEngine {
"%.2f",
ImGuiSliderFlags_AlwaysClamp);
}
void PlaneShapeOnImGuiRender(entt::registry& registry, entt::entity entity)
{
auto& planed_comp = registry.get<PlaneShapeComponent>(entity);
ImGui::DragFloat("Size",
&planed_comp.extent,
0.1f,
0.01f, FLT_MAX,
"%.2f",
ImGuiSliderFlags_AlwaysClamp);
}
}

View File

@@ -1,3 +1,4 @@
#include "open_engine/scene/components.hpp"
#include "open_engine/scene/entity.hpp"
#include "editor_component.hpp"
@@ -26,6 +27,7 @@ namespace OpenEngine {
RegisterDrawer<PhysicsBodyComponent>("Physics Body", &BodyOnImGuiRender);
RegisterDrawer<SphereShapeComponent>("Sphere Shape", &SphereShapeOnImGuiRender);
RegisterDrawer<BoxShapeComponent>("Box Shape", &BoxShapeOnImGuiRender);
RegisterDrawer<PlaneShapeComponent>("Plane Shape", &PlaneShapeOnImGuiRender);
scene = context;
selected_context = {};
@@ -74,6 +76,11 @@ namespace OpenEngine {
selected_context.AddComponent<BoxShapeComponent>();
ImGui::CloseCurrentPopup();
}
if (!selected_context.HasComponent<PlaneShapeComponent>())
if (ImGui::MenuItem("Plane shape")) {
selected_context.AddComponent<PlaneShapeComponent>();
ImGui::CloseCurrentPopup();
}
}
void EntityPopup(Ref<Scene>& scene)