diff options
author | kobewi <kobewi4e@gmail.com> | 2021-10-13 01:34:34 +0200 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2021-10-13 01:34:34 +0200 |
commit | bf3eaa767bc535a6d49ef599a17953bcb16b3614 (patch) | |
tree | 8a008d5c6535524996e59f88d13a4af4afc40baf /scene | |
parent | 6f1d2133bb2b77048bf13a8180f57bff1a747226 (diff) |
Use z_index for TileMap layer darkening
Diffstat (limited to 'scene')
-rw-r--r-- | scene/2d/tile_map.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/scene/2d/tile_map.cpp b/scene/2d/tile_map.cpp index a791d99c39..42c54a950d 100644 --- a/scene/2d/tile_map.cpp +++ b/scene/2d/tile_map.cpp @@ -848,9 +848,11 @@ void TileMap::_rendering_update_dirty_quadrants(SelfList<TileMapQuadrant>::List Color modulate = get_self_modulate(); modulate *= get_layer_modulate(q.layer); if (selected_layer >= 0) { - if (q.layer < selected_layer) { + int z1 = get_layer_z_index(q.layer); + int z2 = get_layer_z_index(selected_layer); + if (z1 < z2 || (z1 == z2 && q.layer < selected_layer)) { modulate = modulate.darkened(0.5); - } else if (q.layer > selected_layer) { + } else if (z1 > z2 || (z1 == z2 && q.layer > selected_layer)) { modulate = modulate.darkened(0.5); modulate.a *= 0.3; } |