docs(editor): document new shortcuts in F1 Keyboard Shortcuts dialog

Adds Ctrl+D duplicate, Ctrl+Wheel rotation, NPC click-to-select, and
W-for-waypoint to the help text so users discover the new bindings.
This commit is contained in:
Kelsi 2026-05-06 01:17:57 -07:00
parent 7d88c5f538
commit f39869ef6a

View file

@ -609,10 +609,16 @@ void EditorUI::renderMenuBar(EditorApp& app) {
ImGui::BulletText("Ctrl+N — new terrain");
ImGui::BulletText("Ctrl+O — load map tile");
ImGui::BulletText("Ctrl+A — select all objects");
ImGui::BulletText("Ctrl+D — duplicate selected (objects + NPCs)");
ImGui::BulletText("Ctrl+Wheel — rotate placement preview (Shift = fine)");
ImGui::BulletText("Alt+Click — eyedropper (paint mode)");
ImGui::BulletText("Ctrl+Shift+Click — add to selection");
ImGui::BulletText("Middle-drag — orbit camera");
ImGui::Separator();
ImGui::Text("NPC Mode:");
ImGui::BulletText("Click NPC marker — select (Shift+click forces placement)");
ImGui::BulletText("W — add patrol waypoint at cursor (selected NPC must use Patrol behavior)");
ImGui::Separator();
ImGui::Text("View:");
ImGui::BulletText("F1 — this help");
ImGui::BulletText("F3 — wireframe toggle");