Merge pull request #43573 from lewiji/master

sprite_3d.cpp: return _is_playing() from public is_playing() function
This commit is contained in:
Max Hilbrunner 2021-08-28 19:55:54 +02:00 committed by GitHub
commit e0355d5db6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1177,7 +1177,7 @@ void AnimatedSprite3D::stop() {
}
bool AnimatedSprite3D::is_playing() const {
return is_processing();
return playing;
}
void AnimatedSprite3D::_reset_timeout() {