summaryrefslogtreecommitdiffstats
path: root/scene/2d/navigation_region_2d.cpp
diff options
context:
space:
mode:
authorsmix8 <52464204+smix8@users.noreply.github.com>2024-06-10 19:07:57 +0200
committersmix8 <52464204+smix8@users.noreply.github.com>2024-06-10 19:07:57 +0200
commit6b85bc9de29082044420f36a93dda77ff3d58d30 (patch)
treeaa09ac00b6dbd4ca1be7e5301967903384bce783 /scene/2d/navigation_region_2d.cpp
parent5241d30bfa223ed45784e32d8143d20a98a8d862 (diff)
downloadredot-engine-6b85bc9de29082044420f36a93dda77ff3d58d30.tar.gz
Fix NavigationRegion2D debug not clearing canvas item
Fixes NavigationRegion2D debug not clearing canvas item on navigation mesh change.
Diffstat (limited to 'scene/2d/navigation_region_2d.cpp')
-rw-r--r--scene/2d/navigation_region_2d.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/2d/navigation_region_2d.cpp b/scene/2d/navigation_region_2d.cpp
index bad9de5daa..9b3c7bb9ea 100644
--- a/scene/2d/navigation_region_2d.cpp
+++ b/scene/2d/navigation_region_2d.cpp
@@ -458,6 +458,7 @@ void NavigationRegion2D::_update_debug_mesh() {
return;
}
+ rs->canvas_item_clear(debug_instance_rid);
rs->mesh_clear(debug_mesh_rid);
debug_mesh_dirty = false;