From 2b0a81fd9a8ee81fd77685a3a60462c801ecc31a Mon Sep 17 00:00:00 2001 From: Kelsi Date: Tue, 5 May 2026 05:45:17 -0700 Subject: [PATCH] fix(editor): update speed hint to show Shift+scroll --- tools/editor/editor_ui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/editor/editor_ui.cpp b/tools/editor/editor_ui.cpp index 414fe13e..7d1d6719 100644 --- a/tools/editor/editor_ui.cpp +++ b/tools/editor/editor_ui.cpp @@ -1201,7 +1201,7 @@ void EditorUI::renderPropertiesPanel(EditorApp& app) { ImGui::Separator(); auto pos = app.getEditorCamera().getCamera().getPosition(); ImGui::Text("Camera: %.0f, %.0f, %.0f", pos.x, pos.y, pos.z); - ImGui::Text("Speed: %.0f (scroll)", app.getEditorCamera().getSpeed()); + ImGui::Text("Speed: %.0f (Shift+scroll)", app.getEditorCamera().getSpeed()); // Cursor world position auto& brush = app.getTerrainEditor().brush();