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.

(cherry picked from commit 5bedaf77f7)
This commit is contained in:
smix8 2024-09-05 14:49:32 +02:00 committed by Rémi Verschelde
parent 1629e9b1fa
commit d7a8654edd
No known key found for this signature in database
GPG Key ID: C3336907360768E1

View File

@ -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) {