diff options
author | smix8 <52464204+smix8@users.noreply.github.com> | 2024-02-26 07:15:31 +0100 |
---|---|---|
committer | smix8 <52464204+smix8@users.noreply.github.com> | 2024-02-27 11:18:16 +0100 |
commit | 35dafc9fa8ac26cca9ca1da606cbfe782468d05f (patch) | |
tree | 84b4b187e6e16c513497225a2127234c96823e97 /scene/3d/physics/SCsub | |
parent | bb6b06c81343073f10cbbd2af515cf0dac1e6549 (diff) | |
download | redot-engine-35dafc9fa8ac26cca9ca1da606cbfe782468d05f.tar.gz |
Split monolithic physics class files
Splits monolithic physics class files.
Diffstat (limited to 'scene/3d/physics/SCsub')
-rw-r--r-- | scene/3d/physics/SCsub | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/scene/3d/physics/SCsub b/scene/3d/physics/SCsub new file mode 100644 index 0000000000..e7fd3fe643 --- /dev/null +++ b/scene/3d/physics/SCsub @@ -0,0 +1,8 @@ +#!/usr/bin/env python + +Import("env") + +env.add_source_files(env.scene_sources, "*.cpp") + +# Chain load SCsubs +SConscript("joints/SCsub") |