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.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/render/particleejectorscript.cc b/src/render/particleejectorscript.cc
index b2c84bc..250eb20 100644
--- a/src/render/particleejectorscript.cc
+++ b/src/render/particleejectorscript.cc
@@ -28,6 +28,8 @@ ParticleEjectorScript::ParticleEjectorScript()
script_spawn_radius = 0.0f;
script_attached = false;
script_scaled = false;
+
+ script_color_interpolated = false;
}
ParticleEjectorScript::ParticleEjectorScript(const ParticleEjectorScript &other)
@@ -48,6 +50,7 @@ ParticleEjectorScript::ParticleEjectorScript(const ParticleEjectorScript &other)
script_cull = other.cull();
script_attached = other.attached();
script_scaled = other.scaled();
+ script_color_interpolated = other.color_interpolated();
script_texture.assign(other.texture());
script_axis.assign(other.axis());
@@ -56,6 +59,7 @@ ParticleEjectorScript::ParticleEjectorScript(const ParticleEjectorScript &other)
script_speed_vec.assign(other.speed_vec());
script_tailspeed_vec.assign(other.tailspeed_vec());
script_color.assign(other.color());
+ script_color_second.assign(other.color_second());
}
ParticleEjectorScript::~ParticleEjectorScript()