From 126567a1d0b35b3a71858fdd694b60a94715bbaf Mon Sep 17 00:00:00 2001 From: Kelsi Date: Tue, 5 May 2026 10:56:48 -0700 Subject: [PATCH] feat(editor): show scale and rotation info for selected objects --- tools/editor/editor_ui.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/editor/editor_ui.cpp b/tools/editor/editor_ui.cpp index e42b73f2..db5e7a97 100644 --- a/tools/editor/editor_ui.cpp +++ b/tools/editor/editor_ui.cpp @@ -1362,6 +1362,8 @@ void EditorUI::renderObjectPanel(EditorApp& app) { if (changed) app.markObjectsDirty(); + ImGui::Text("Scale: %.2f Rot: %.0f,%.0f,%.0f", + sel->scale, sel->rotation.x, sel->rotation.y, sel->rotation.z); if (ImGui::Button("Snap Ground", ImVec2(75, 0))) app.snapSelectedToGround(); ImGui::SameLine();