From 6e62cab8bc5be867a0b209a44475102f902aa70c Mon Sep 17 00:00:00 2001 From: Kelsi Date: Tue, 5 May 2026 06:43:45 -0700 Subject: [PATCH] docs(editor): add terrain tools workflow to help overlay --- tools/editor/editor_ui.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tools/editor/editor_ui.cpp b/tools/editor/editor_ui.cpp index cf85cff4..3865fc29 100644 --- a/tools/editor/editor_ui.cpp +++ b/tools/editor/editor_ui.cpp @@ -242,6 +242,12 @@ void EditorUI::renderMenuBar(EditorApp& app) { ImGui::BulletText("Home — center on terrain"); ImGui::BulletText("Scroll — zoom in/out"); ImGui::BulletText("Shift+Scroll — adjust speed"); + ImGui::Separator(); + ImGui::Text("Terrain Tools:"); + ImGui::BulletText("Noise → Smooth → Scale → Clamp → Auto-paint"); + ImGui::BulletText("River/Road: Set Start → Set End"); + ImGui::BulletText("Stamp: Copy → Paste"); + ImGui::BulletText("Mirror X/Y for symmetric zones"); } ImGui::End(); }