diff options
author | smix8 <52464204+smix8@users.noreply.github.com> | 2024-09-05 14:49:32 +0200 |
---|---|---|
committer | smix8 <52464204+smix8@users.noreply.github.com> | 2024-09-05 15:11:29 +0200 |
commit | 5bedaf77f71a38bc8c066931526775c52bd2e823 (patch) | |
tree | 7f0390d37f81b120b7ce9c081f9563a1f70f008d /scene/2d/navigation_region_2d.cpp | |
parent | b6223c0df0300ba2db17b5742c349f13c33f8884 (diff) | |
download | redot-engine-5bedaf77f71a38bc8c066931526775c52bd2e823.tar.gz |
Fix 2D debug navigation flickering with tile maps
Both the tile map layers and the debug navigation canvas items did fight for the same z order causing a lot of flickering in certain situations.
Diffstat (limited to 'scene/2d/navigation_region_2d.cpp')
-rw-r--r-- | scene/2d/navigation_region_2d.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/2d/navigation_region_2d.cpp b/scene/2d/navigation_region_2d.cpp index 9b3c7bb9ea..f65a3c0ecc 100644 --- a/scene/2d/navigation_region_2d.cpp +++ b/scene/2d/navigation_region_2d.cpp @@ -452,6 +452,7 @@ void NavigationRegion2D::_update_debug_mesh() { const Transform2D region_gt = get_global_transform(); rs->canvas_item_set_parent(debug_instance_rid, get_world_2d()->get_canvas()); + rs->canvas_item_set_z_index(debug_instance_rid, RS::CANVAS_ITEM_Z_MAX - 2); rs->canvas_item_set_transform(debug_instance_rid, region_gt); if (!debug_mesh_dirty) { |