diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2021-03-17 15:22:33 -0400 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2021-06-03 17:45:28 -0400 |
commit | acd695060b43ba62cde46a5e8165a702ab211597 (patch) | |
tree | 681935b8d9d987b9d9d4165c28237d61f0994096 /modules/bullet | |
parent | 5d9cab3aeb3c62df6b7b44e6e68c0ebbb67f7a45 (diff) |
Disable 3D-only modules when 3D is disabled
Diffstat (limited to 'modules/bullet')
-rw-r--r-- | modules/bullet/config.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/bullet/config.py b/modules/bullet/config.py index be7cf74f6f..83605f1f9b 100644 --- a/modules/bullet/config.py +++ b/modules/bullet/config.py @@ -1,6 +1,7 @@ def can_build(env, platform): # API Changed and bullet is disabled at the moment return False + # Later change to return not env["disable_3d"] def configure(env): |