diff options
author | Brian Long <newobj@gmail.com> | 2023-03-27 09:15:59 -0700 |
---|---|---|
committer | Brian Long <newobj@gmail.com> | 2023-03-27 13:24:59 -0700 |
commit | 4652fbd09e81741a146c7dd1dcc89bf4235bdb75 (patch) | |
tree | f9f207ba796e6654d3179a673b518e8c435f18ef /scene/2d/gpu_particles_2d.cpp | |
parent | 6ef2f358c741c993b5cdc9680489e2c4f5da25cc (diff) | |
download | redot-engine-4652fbd09e81741a146c7dd1dcc89bf4235bdb75.tar.gz |
Update GPUParticles2D/3D speed scale on ENTER_TREE
Fix for https://github.com/godotengine/godot/issues/75218
Pause notifications are not sent when a node is added as a child. So GPUParticles2D should also obey its can_process status on ENTER_TREE, not just PAUSED/UNPAUSED.
Diffstat (limited to 'scene/2d/gpu_particles_2d.cpp')
-rw-r--r-- | scene/2d/gpu_particles_2d.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scene/2d/gpu_particles_2d.cpp b/scene/2d/gpu_particles_2d.cpp index 3f887ae9f3..08c7b8e131 100644 --- a/scene/2d/gpu_particles_2d.cpp +++ b/scene/2d/gpu_particles_2d.cpp @@ -538,6 +538,11 @@ void GPUParticles2D::_notification(int p_what) { if (sub_emitter != NodePath()) { _attach_sub_emitter(); } + if (can_process()) { + RS::get_singleton()->particles_set_speed_scale(particles, speed_scale); + } else { + RS::get_singleton()->particles_set_speed_scale(particles, 0); + } } break; case NOTIFICATION_EXIT_TREE: { |