mirror of https://github.com/godotengine/godot
Merge pull request #13277 from DoctorAlpaca/master
Fix particle preprocessing
This commit is contained in:
commit
1c3c9e017b
|
|
@ -5694,13 +5694,9 @@ void RasterizerStorageGLES3::update_particles() {
|
||||||
else
|
else
|
||||||
frame_time = 1.0 / 30.0;
|
frame_time = 1.0 / 30.0;
|
||||||
|
|
||||||
float delta = particles->pre_process_time;
|
float todo = particles->pre_process_time;
|
||||||
if (delta > 0.1) { //avoid recursive stalls if fps goes below 10
|
|
||||||
delta = 0.1;
|
|
||||||
}
|
|
||||||
float todo = delta;
|
|
||||||
|
|
||||||
while (todo >= frame_time) {
|
while (todo >= 0) {
|
||||||
_particles_process(particles, frame_time);
|
_particles_process(particles, frame_time);
|
||||||
todo -= frame_time;
|
todo -= frame_time;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue