diff options
author | mrezai <mhd.rezai@gmail.com> | 2017-10-22 21:24:20 +0330 |
---|---|---|
committer | mrezai <mhd.rezai@gmail.com> | 2017-10-22 21:24:20 +0330 |
commit | 8f48eeaa8833066e050e15bb6978ed5beb051212 (patch) | |
tree | 64fffaa2fe0fffc55252dcb7de781bfb937e391e /scene/3d/SCsub | |
parent | b4f0f59d9fd59c37c931f61ba4e1fe2bf1ac7291 (diff) |
Fix disable_3d=yes compile errors
Diffstat (limited to 'scene/3d/SCsub')
-rw-r--r-- | scene/3d/SCsub | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scene/3d/SCsub b/scene/3d/SCsub index 72739b527e..4008f4f196 100644 --- a/scene/3d/SCsub +++ b/scene/3d/SCsub @@ -7,6 +7,9 @@ if env['disable_3d']: env.scene_sources.append("3d/spatial.cpp") env.scene_sources.append("3d/skeleton.cpp") + env.scene_sources.append("3d/particles.cpp") + env.scene_sources.append("3d/visual_instance.cpp") + env.scene_sources.append("3d/scenario_fx.cpp") else: env.add_source_files(env.scene_sources, "*.cpp") |