Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2013-10-14 16:47:23 +0000
committerStijn Buys <ingar@osirion.org>2013-10-14 16:47:23 +0000
commit0ae585bf90031a95cec165bb6f0e25e337b9ecff (patch)
tree93f698c5e519cb3c06501e41d6b448909fdb1044 /src/render/particleejectorscript.cc
parentd6471bf0f398257cb379944323cf85e8115491a5 (diff)
More explosion particles bugfixes.
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();