mirror of
https://github.com/Redot-Engine/redot-engine.git
synced 2025-12-06 23:31:53 -05:00
[3.x] Move navigation server finalize before physics server
Moves finalize_navigation_server() before physics server (and also OS in 3.x). The NavigationServer command queue can have objects from other servers like physics or visuals so it needs to be flushed before.
(cherry picked from commit 8e4f8c82c5)
This commit is contained in:
@@ -2487,9 +2487,9 @@ void Main::cleanup(bool p_force) {
|
||||
memdelete(camera_server);
|
||||
}
|
||||
|
||||
finalize_navigation_server();
|
||||
OS::get_singleton()->finalize();
|
||||
finalize_physics();
|
||||
finalize_navigation_server();
|
||||
|
||||
if (packed_data) {
|
||||
memdelete(packed_data);
|
||||
|
||||
Reference in New Issue
Block a user