diff options
author | clayjohn <claynjohn@gmail.com> | 2023-07-10 10:17:27 +0200 |
---|---|---|
committer | clayjohn <claynjohn@gmail.com> | 2023-07-10 10:17:27 +0200 |
commit | 78ecdb17f955b39decfc8122f8ba276640d2da85 (patch) | |
tree | 75bbb7c384fd288b6867d29ddaaf94a0eadfc7f7 /scene/2d/gpu_particles_2d.cpp | |
parent | 9d089fe6e501e4818fed1b0688631c4d65d1ba35 (diff) | |
download | redot-engine-78ecdb17f955b39decfc8122f8ba276640d2da85.tar.gz |
Unify error condition for particles trail lifetime
Diffstat (limited to 'scene/2d/gpu_particles_2d.cpp')
-rw-r--r-- | scene/2d/gpu_particles_2d.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/2d/gpu_particles_2d.cpp b/scene/2d/gpu_particles_2d.cpp index 078a73c583..735159c660 100644 --- a/scene/2d/gpu_particles_2d.cpp +++ b/scene/2d/gpu_particles_2d.cpp @@ -149,7 +149,7 @@ void GPUParticles2D::set_trail_enabled(bool p_enabled) { } void GPUParticles2D::set_trail_lifetime(double p_seconds) { - ERR_FAIL_COND(p_seconds < 0.001); + ERR_FAIL_COND(p_seconds < 0.01); trail_lifetime = p_seconds; RS::get_singleton()->particles_set_trails(particles, trail_enabled, trail_lifetime); queue_redraw(); |