Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/render/particleejectorscript.cc')
-rw-r--r--src/render/particleejectorscript.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/render/particleejectorscript.cc b/src/render/particleejectorscript.cc
index 250eb20..c62e2dc 100644
--- a/src/render/particleejectorscript.cc
+++ b/src/render/particleejectorscript.cc
@@ -24,6 +24,7 @@ ParticleEjectorScript::ParticleEjectorScript()
script_engine = false;
script_impulse = false;
script_thrust = false;
+ script_explosion = false;
script_cull = model::CullNone;
script_spawn_radius = 0.0f;
script_attached = false;
@@ -47,6 +48,7 @@ ParticleEjectorScript::ParticleEjectorScript(const ParticleEjectorScript &other)
script_engine = other.engine();
script_impulse = other.impulse();
script_thrust = other.thrust();
+ script_explosion = other.explosion();
script_cull = other.cull();
script_attached = other.attached();
script_scaled = other.scaled();