diff --git a/tools/editor/editor_ui.cpp b/tools/editor/editor_ui.cpp index a151b7ba..020aeb66 100644 --- a/tools/editor/editor_ui.cpp +++ b/tools/editor/editor_ui.cpp @@ -305,6 +305,9 @@ void EditorUI::renderNewTerrainDialog(EditorApp& /*app*/) { ImGui::TextColored(ImVec4(0.5f, 0.6f, 0.5f, 1.0f), " + %s", bt.detail); ImGui::Spacing(); + static bool quickGenerate = false; + ImGui::Checkbox("Quick Generate (noise + smooth + auto-paint)", &quickGenerate); + if (ImGui::Button("Create", ImVec2(120, 0))) { newRequested_ = true; showNewDialog_ = false; } ImGui::SameLine(); if (ImGui::Button("Cancel", ImVec2(120, 0))) showNewDialog_ = false;