From c93a9974246c1e50ce08271a65f651f0c536e7f5 Mon Sep 17 00:00:00 2001 From: Kelsi Date: Tue, 5 May 2026 05:48:56 -0700 Subject: [PATCH] docs(editor): add Home/scroll/speed shortcuts to help overlay --- tools/editor/editor_ui.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/editor/editor_ui.cpp b/tools/editor/editor_ui.cpp index 619a5df2..87802e90 100644 --- a/tools/editor/editor_ui.cpp +++ b/tools/editor/editor_ui.cpp @@ -231,6 +231,9 @@ void EditorUI::renderMenuBar(EditorApp& app) { ImGui::BulletText("F1 — this help"); ImGui::BulletText("F3 — wireframe toggle"); ImGui::BulletText("F5 — save camera bookmark"); + ImGui::BulletText("Home — center on terrain"); + ImGui::BulletText("Scroll — zoom in/out"); + ImGui::BulletText("Shift+Scroll — adjust speed"); } ImGui::End(); }