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, 1 insertions, 2 deletions
diff --git a/src/render/particleejectorscript.cc b/src/render/particleejectorscript.cc
index a37ab9d..1eb1eff 100644
--- a/src/render/particleejectorscript.cc
+++ b/src/render/particleejectorscript.cc
@@ -17,7 +17,6 @@ ParticleEjectorScript::ParticleEjectorScript()
script_cone = 0.0f;
script_offset = 0.5f;
script_lifespan = 1000;
- script_speed = 0;
script_acceleration = 0.0f;
script_entity = false;
script_entity_second = false;
@@ -37,7 +36,6 @@ ParticleEjectorScript::ParticleEjectorScript(const ParticleEjectorScript &other)
script_spawn_radius = other.spawn_radius();
script_offset = other.offset();
script_lifespan = other.lifespan();
- script_speed = other.speed();
script_acceleration = other.acceleration();
script_entity = other.entity();
script_entity_second = other.entity_second();
@@ -51,6 +49,7 @@ ParticleEjectorScript::ParticleEjectorScript(const ParticleEjectorScript &other)
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_color.assign(other.color());
}