diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-03-11 14:02:57 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-03-11 14:02:57 +0100 |
commit | f040a351c2f27c6b86c40c71a28babf99dd0b9bd (patch) | |
tree | b3e74218248f87b1dee7fcc51baad32c333a510d /modules | |
parent | effb2708342e67666d5cfee544f62b000df0b77b (diff) | |
parent | 6aac3e4a164457bfb08ff03d29313b84aedc607e (diff) | |
download | redot-engine-f040a351c2f27c6b86c40c71a28babf99dd0b9bd.tar.gz |
Merge pull request #89381 from aaronfranke/disable-3d
Disable all 3D nodes, physics, and resources when compiling without 3D
Diffstat (limited to 'modules')
-rw-r--r-- | modules/navigation/3d/godot_navigation_server_3d.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/navigation/3d/godot_navigation_server_3d.cpp b/modules/navigation/3d/godot_navigation_server_3d.cpp index d293b9edbe..15de33f58f 100644 --- a/modules/navigation/3d/godot_navigation_server_3d.cpp +++ b/modules/navigation/3d/godot_navigation_server_3d.cpp @@ -30,12 +30,13 @@ #include "godot_navigation_server_3d.h" +#include "core/os/mutex.h" +#include "scene/main/node.h" + #ifndef _3D_DISABLED #include "nav_mesh_generator_3d.h" #endif // _3D_DISABLED -#include "core/os/mutex.h" - using namespace NavigationUtilities; /// Creates a struct for each function and a function that once called creates |