diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-09-23 12:27:55 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-09-23 12:27:55 +0200 |
commit | dd71bc2d3b613d3c63f75e671f36427f838f7396 (patch) | |
tree | ea7cd64ed911afa1010264ff3ecec4d9cf409b93 /modules/godot_physics_3d/config.py | |
parent | 1b19ecb360124b4f46d767e56b8f8d9a1f1ed20e (diff) | |
parent | 0333648cea0483edce0131722789b54d4daa7d5a (diff) | |
download | redot-engine-dd71bc2d3b613d3c63f75e671f36427f838f7396.tar.gz |
Merge pull request #95252 from rburing/3d_physics_module
Move Godot Physics 3D into a module; add dummy 3D physics server
Diffstat (limited to 'modules/godot_physics_3d/config.py')
-rw-r--r-- | modules/godot_physics_3d/config.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/godot_physics_3d/config.py b/modules/godot_physics_3d/config.py new file mode 100644 index 0000000000..a42f27fbe1 --- /dev/null +++ b/modules/godot_physics_3d/config.py @@ -0,0 +1,6 @@ +def can_build(env, platform): + return not env["disable_3d"] + + +def configure(env): + pass |