From 73385e362baf302fd044029072083e32b2e89d75 Mon Sep 17 00:00:00 2001 From: honix Date: Mon, 15 May 2017 23:49:34 +0300 Subject: Particles potential crash fix 2 --- scene/3d/particles.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scene/3d/particles.cpp b/scene/3d/particles.cpp index 038ca33a41..71079ea780 100644 --- a/scene/3d/particles.cpp +++ b/scene/3d/particles.cpp @@ -48,11 +48,13 @@ void Particles::set_emitting(bool p_emitting) { void Particles::set_amount(int p_amount) { + ERR_FAIL_COND(p_amount < 1); amount = p_amount; VS::get_singleton()->particles_set_amount(particles, amount); } void Particles::set_lifetime(float p_lifetime) { + ERR_FAIL_COND(p_lifetime <= 0); lifetime = p_lifetime; VS::get_singleton()->particles_set_lifetime(particles, lifetime); } -- cgit v1.2.3