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.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/render/particleejectorscript.cc b/src/render/particleejectorscript.cc
index 1eb1eff..2b6f8ce 100644
--- a/src/render/particleejectorscript.cc
+++ b/src/render/particleejectorscript.cc
@@ -26,6 +26,7 @@ ParticleEjectorScript::ParticleEjectorScript()
script_cull = model::CullNone;
script_spawn_radius = 0.0f;
script_attached = false;
+ script_scaled = false;
}
ParticleEjectorScript::ParticleEjectorScript(const ParticleEjectorScript &other)
@@ -44,12 +45,14 @@ ParticleEjectorScript::ParticleEjectorScript(const ParticleEjectorScript &other)
script_thrust = other.thrust();
script_cull = other.cull();
script_attached = other.attached();
+ script_scaled = other.scaled();
script_texture.assign(other.texture());
script_axis.assign(other.axis());
script_radius_vec.assign(other.radius_vec());
script_alpha_vec.assign(other.alpha_vec());
script_speed_vec.assign(other.speed_vec());
+ script_tailspeed_vec.assign(other.tailspeed_vec());
script_color.assign(other.color());
}