diff options
| author | Juan Linietsky | 2014-02-09 22:10:30 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2014-02-09 22:10:30 -0300 |
| commit | 0b806ee0fc9097fa7bda7ac0109191c9c5e0a1ac (patch) | |
| tree | 276c4d099e178eb67fbd14f61d77b05e3808e9e3 /scene/3d/SCsub | |
| parent | 0e49da1687bc8192ed210947da52c9e5c5f301bb (diff) | |
| download | godot-0b806ee.tar.gz godot-0b806ee.tar.zst godot-0b806ee.zip | |
GODOT IS OPEN SOURCE
Diffstat (limited to '')
| -rw-r--r-- | scene/3d/SCsub | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/scene/3d/SCsub b/scene/3d/SCsub new file mode 100644 index 000000000..6789851aa --- /dev/null +++ b/scene/3d/SCsub @@ -0,0 +1,14 @@ +Import('env') + + +print("V: "+env["disable_3d"]) +if (env["disable_3d"]=="yes"): + + env.scene_sources.append("3d/spatial.cpp") + env.scene_sources.append("3d/skeleton.cpp") +else: + env.add_source_files(env.scene_sources,"*.cpp") + +Export('env') + + |
