From fab77952a6d90df94897f9be55f4c46d15a0ad59 Mon Sep 17 00:00:00 2001 From: Kelsi Date: Tue, 5 May 2026 08:18:07 -0700 Subject: [PATCH] feat(editor): river carver now auto-paints sand banks alongside carved channel --- tools/editor/editor_ui.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/editor/editor_ui.cpp b/tools/editor/editor_ui.cpp index 8895f7e5..f504f915 100644 --- a/tools/editor/editor_ui.cpp +++ b/tools/editor/editor_ui.cpp @@ -609,7 +609,9 @@ void EditorUI::renderBrushPanel(EditorApp& app) { pathEnd = brush4.getPosition(); if (pathMode == 0) { app.getTerrainEditor().carveRiver(pathStart, pathEnd, pathWidth, pathDepth); - app.showToast("River carved"); + app.getTexturePainter().paintAlongPath(pathStart, pathEnd, pathWidth * 1.5f, + "Tileset\\Ashenvale\\AshenvaleSand.blp"); + app.showToast("River carved + banks textured"); } else { app.getTerrainEditor().flattenRoad(pathStart, pathEnd, pathWidth); app.getTexturePainter().paintAlongPath(pathStart, pathEnd, pathWidth,