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/particlesystemscript.cc')
-rw-r--r--src/render/particlesystemscript.cc8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/render/particlesystemscript.cc b/src/render/particlesystemscript.cc
index 98c0a2d..866fce1 100644
--- a/src/render/particlesystemscript.cc
+++ b/src/render/particlesystemscript.cc
@@ -199,6 +199,10 @@ ParticleSystemScript *ParticleSystemScript::load(const std::string &label)
ejector->set_thrust(b);
continue;
+ } else if (inifile.got_key_bool("impulse", b)) {
+ ejector->set_impulse(b);
+ continue;
+
} else if (inifile.got_key_bool("entity", b)) {
ejector->set_entity(b);
continue;
@@ -214,6 +218,10 @@ ParticleSystemScript *ParticleSystemScript::load(const std::string &label)
}
continue;
+ } else if (inifile.got_key_bool("attached", b)) {
+ ejector->set_attached(b);
+ continue;
+
} else if (inifile.got_key_float("angle", yaw)) {
if (yaw == model::ANGLEUP) {