diff options
author | Max Hilbrunner <mhilbrunner@users.noreply.github.com> | 2021-08-28 19:55:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-28 19:55:54 +0200 |
commit | e0355d5db67bcdc5b1d3f6f23793b3361b5ae88d (patch) | |
tree | 3eec2ea43591836d1a1ae029309dea98aa855c04 /scene/3d | |
parent | 99c2329b7329fafa0e1cb4f002cfcf7ece8c461c (diff) | |
parent | 2450173495b6766cb1a2015b83d4cc9f17b17af5 (diff) |
Merge pull request #43573 from lewiji/master
sprite_3d.cpp: return _is_playing() from public is_playing() function
Diffstat (limited to 'scene/3d')
-rw-r--r-- | scene/3d/sprite_3d.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/3d/sprite_3d.cpp b/scene/3d/sprite_3d.cpp index a28382f4cb..b9a2736918 100644 --- a/scene/3d/sprite_3d.cpp +++ b/scene/3d/sprite_3d.cpp @@ -1177,7 +1177,7 @@ void AnimatedSprite3D::stop() { } bool AnimatedSprite3D::is_playing() const { - return is_processing(); + return playing; } void AnimatedSprite3D::_reset_timeout() { |