diff options
author | Michael Alexsander Silva Dias <michaelalexsander@protonmail.com> | 2019-09-12 09:30:21 -0300 |
---|---|---|
committer | Michael Alexsander Silva Dias <michaelalexsander@protonmail.com> | 2019-09-14 09:04:47 -0300 |
commit | 0dd4a2790f9f890a15a9c47f54bc2fe170b3d62d (patch) | |
tree | 51dfcbbaf4fc31cbc71caa9e6fdbf6e9a7669c62 | |
parent | 24e1039eb6fe32115e8d1a62a84965e9be19a2ed (diff) |
Document AnimationPlayer's 'get_queue()' and 'caches_cleared'
-rw-r--r-- | doc/classes/AnimationPlayer.xml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/classes/AnimationPlayer.xml b/doc/classes/AnimationPlayer.xml index e510603281..5bb4a6e3c7 100644 --- a/doc/classes/AnimationPlayer.xml +++ b/doc/classes/AnimationPlayer.xml @@ -71,7 +71,7 @@ <argument index="0" name="animation" type="Animation"> </argument> <description> - Returns the name of [code]animation[/code] or empty string if not found. + Returns the name of [code]animation[/code] or an empty string if not found. </description> </method> <method name="get_animation" qualifiers="const"> @@ -112,6 +112,7 @@ <return type="PoolStringArray"> </return> <description> + Returns a list of the animation names that are currently queued to play. </description> </method> <method name="has_animation" qualifiers="const"> @@ -284,6 +285,7 @@ </signal> <signal name="caches_cleared"> <description> + Notifies when the caches have been cleared, either automatically, or manually via [method clear_caches]. </description> </signal> </signals> |