mirror of https://github.com/godotengine/godot
Fix is_playing() method in AnimatedSprite3D
(cherry picked from commit 2450173495)
This commit is contained in:
parent
b0cb253a51
commit
4e68f089e0
|
|
@ -1131,7 +1131,7 @@ void AnimatedSprite3D::stop() {
|
|||
}
|
||||
|
||||
bool AnimatedSprite3D::is_playing() const {
|
||||
return is_processing();
|
||||
return playing;
|
||||
}
|
||||
|
||||
void AnimatedSprite3D::_reset_timeout() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue