summaryrefslogtreecommitdiffstats
path: root/scu_builders.py
diff options
context:
space:
mode:
authorRicardo Buring <ricardo.buring@gmail.com>2024-08-07 16:20:21 +0200
committerRicardo Buring <ricardo.buring@gmail.com>2024-09-21 21:19:45 +0200
commit0333648cea0483edce0131722789b54d4daa7d5a (patch)
treeedf63916f4ca196d097c66c52d04432e4a94bc44 /scu_builders.py
parente4e024ab88efe74677769395886bc1b09eccbac7 (diff)
downloadredot-engine-0333648cea0483edce0131722789b54d4daa7d5a.tar.gz
Move Godot Physics 3D into a module; add dummy 3D physics server
If the module is enabled (default), 3D physics works as it did before. If the module is disabled and no other 3D physics server is registered (via a module or GDExtension), then we fall back to a dummy implementation which effectively disables 3D physics functionality (and a warning is printed). The dummy 3D physics server can also be selected explicitly, in which case no warning is printed.
Diffstat (limited to 'scu_builders.py')
-rw-r--r--scu_builders.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scu_builders.py b/scu_builders.py
index fc5461196f..7fc0c15b2d 100644
--- a/scu_builders.py
+++ b/scu_builders.py
@@ -322,6 +322,8 @@ def generate_scu_files(max_includes_per_scu):
process_folder(["modules/openxr"], ["register_types"])
process_folder(["modules/openxr/action_map"])
process_folder(["modules/openxr/editor"])
+ process_folder(["modules/godot_physics_3d"])
+ process_folder(["modules/godot_physics_3d/joints"])
process_folder(["modules/csg"])
process_folder(["modules/gdscript"])
@@ -349,8 +351,6 @@ def generate_scu_files(max_includes_per_scu):
process_folder(["servers/rendering/renderer_rd/environment"])
process_folder(["servers/rendering/renderer_rd/storage_rd"])
process_folder(["servers/physics_2d"])
- process_folder(["servers/physics_3d"])
- process_folder(["servers/physics_3d/joints"])
process_folder(["servers/audio"])
process_folder(["servers/audio/effects"])