1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-26 15:46:23 +00:00

Low priority redraw request for AnimatedSprite

Prevents animated sprite from creating continuous redraws in vital_redraws_only mode.

(cherry picked from commit 54a939a029)
This commit is contained in:
lawnjelly
2022-09-11 19:09:07 +01:00
committed by Rémi Verschelde
parent 0a216bfec0
commit 9f646c867d

View File

@@ -367,6 +367,9 @@ void AnimatedSprite::_notification(int p_what) {
if (frame < 0) {
return;
}
if (!OS::get_singleton()->is_update_pending()) {
return;
}
float remaining = get_process_delta_time();