diff options
author | Chia-Hsiang Cheng <88014292+garychia@users.noreply.github.com> | 2023-08-29 15:11:57 +0800 |
---|---|---|
committer | Chia-Hsiang Cheng <88014292+garychia@users.noreply.github.com> | 2023-08-29 15:11:57 +0800 |
commit | 3a3ebbf4c9ee51550b769ef8251a14b66f3fe183 (patch) | |
tree | 41e97b8fe2c7c42b83245f2db91e3bfbc96e2e17 | |
parent | 541674d10692cf608f1245d7eede459bdc96b74f (diff) | |
download | redot-engine-3a3ebbf4c9ee51550b769ef8251a14b66f3fe183.tar.gz |
Ensure the visibility is updated when entering the tree
-rw-r--r-- | modules/gridmap/grid_map.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/gridmap/grid_map.cpp b/modules/gridmap/grid_map.cpp index 34c53b5de5..4ac143c7ff 100644 --- a/modules/gridmap/grid_map.cpp +++ b/modules/gridmap/grid_map.cpp @@ -906,13 +906,14 @@ void GridMap::_notification(int p_what) { } } break; -#ifdef DEBUG_ENABLED case NOTIFICATION_ENTER_TREE: { +#ifdef DEBUG_ENABLED if (bake_navigation && NavigationServer3D::get_singleton()->get_debug_navigation_enabled()) { _update_navigation_debug_edge_connections(); } - } break; #endif // DEBUG_ENABLED + _update_visibility(); + } break; case NOTIFICATION_TRANSFORM_CHANGED: { Transform3D new_xform = get_global_transform(); |