diff options
| author | MrCdK <contact@mrcdk.com> | 2017-12-23 05:08:50 +0100 |
|---|---|---|
| committer | MrCdK <contact@mrcdk.com> | 2017-12-23 05:23:41 +0100 |
| commit | 1f609b7a8221f623ae0c051cbaf44f955c8d97bb (patch) | |
| tree | e856988c334740b81c844175049e1aa4f02f70f1 /scene/3d/particles.cpp | |
| parent | 6eb030e24cf35ab1017f0157d92b0161ec856086 (diff) | |
| download | redot-engine-1f609b7a8221f623ae0c051cbaf44f955c8d97bb.tar.gz | |
Set particles emitting to false when particles finish emitting with one-shot enabled
Diffstat (limited to 'scene/3d/particles.cpp')
| -rw-r--r-- | scene/3d/particles.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/scene/3d/particles.cpp b/scene/3d/particles.cpp index b445ccc5a9..9108973cbf 100644 --- a/scene/3d/particles.cpp +++ b/scene/3d/particles.cpp @@ -42,8 +42,7 @@ PoolVector<Face3> Particles::get_faces(uint32_t p_usage_flags) const { void Particles::set_emitting(bool p_emitting) { - emitting = p_emitting; - VS::get_singleton()->particles_set_emitting(particles, emitting); + VS::get_singleton()->particles_set_emitting(particles, p_emitting); } void Particles::set_amount(int p_amount) { @@ -63,7 +62,7 @@ void Particles::set_one_shot(bool p_one_shot) { one_shot = p_one_shot; VS::get_singleton()->particles_set_one_shot(particles, one_shot); - if (!one_shot && emitting) + if (!one_shot && is_emitting()) VisualServer::get_singleton()->particles_restart(particles); } @@ -113,7 +112,7 @@ void Particles::set_speed_scale(float p_scale) { bool Particles::is_emitting() const { - return emitting; + return VS::get_singleton()->particles_get_emitting(particles); } int Particles::get_amount() const { |
