mirror of
https://github.com/godotengine/godot.git
synced 2024-11-22 04:06:14 +00:00
0333648cea
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.
8 lines
117 B
Python
8 lines
117 B
Python
#!/usr/bin/env python
|
|
|
|
Import('env')
|
|
|
|
env.add_source_files(env.modules_sources, "*.cpp")
|
|
|
|
SConscript("joints/SCsub")
|