mirror of
https://github.com/godotengine/godot.git
synced 2024-11-23 04:33:29 +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:
parent
0a216bfec0
commit
9f646c867d
@ -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();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user