diff options
author | Ricardo Buring <ricardo.buring@gmail.com> | 2024-08-07 21:15:17 +0200 |
---|---|---|
committer | Ricardo Buring <ricardo.buring@gmail.com> | 2024-09-23 17:33:45 +0200 |
commit | 7c4c4b998716922fcf62f1fe50473bf2f59087c8 (patch) | |
tree | 17d0a245f0e7295cfe0c42e02e409fb8cd2f44de /scu_builders.py | |
parent | 4254946de93bab0cc1fb36a7b9039c9ec43be924 (diff) | |
download | redot-engine-7c4c4b998716922fcf62f1fe50473bf2f59087c8.tar.gz |
Move Godot Physics 2D into a module; add dummy 2D physics server
If the module is enabled (default), 2D physics works as it did before.
If the module is disabled and no other 2D physics server is registered
(via a module or GDExtension), then we fall back to a dummy
implementation which effectively disables 2D physics functionality (and
a warning is printed).
The dummy 2D 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.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scu_builders.py b/scu_builders.py index 7fc0c15b2d..3c04d66668 100644 --- a/scu_builders.py +++ b/scu_builders.py @@ -322,6 +322,7 @@ 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_2d"]) process_folder(["modules/godot_physics_3d"]) process_folder(["modules/godot_physics_3d/joints"]) @@ -350,7 +351,6 @@ def generate_scu_files(max_includes_per_scu): process_folder(["servers/rendering/renderer_rd/effects"]) process_folder(["servers/rendering/renderer_rd/environment"]) process_folder(["servers/rendering/renderer_rd/storage_rd"]) - process_folder(["servers/physics_2d"]) process_folder(["servers/audio"]) process_folder(["servers/audio/effects"]) |