diff options
author | Micky <micheledevita2@gmail.com> | 2022-08-09 13:20:07 +0200 |
---|---|---|
committer | Micky <micheledevita2@gmail.com> | 2022-08-09 13:20:07 +0200 |
commit | 83f96139ac0fb084ab2fdffe6676760b07499eaf (patch) | |
tree | d25a980d8fdef298c96d1a8b06165fdffcbd006c /doc/classes | |
parent | c2eaaef1497f8ad557aea9a14e2b3e0582fcfe54 (diff) |
Remove AnimatedSprite3D.`is_playing()` for redundancy
Also removes the underscore prefix from `_set_playing()` and `_is_playing()`
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/AnimatedSprite3D.xml | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/doc/classes/AnimatedSprite3D.xml b/doc/classes/AnimatedSprite3D.xml index aa56e50886..675ac79de4 100644 --- a/doc/classes/AnimatedSprite3D.xml +++ b/doc/classes/AnimatedSprite3D.xml @@ -10,12 +10,6 @@ <link title="2D Sprite animation (also applies to 3D)">$DOCS_URL/tutorials/2d/2d_sprite_animation.html</link> </tutorials> <methods> - <method name="is_playing" qualifiers="const"> - <return type="bool" /> - <description> - Returns [code]true[/code] if an animation is currently being played. - </description> - </method> <method name="play"> <return type="void" /> <param index="0" name="anim" type="StringName" default="&""" /> @@ -40,7 +34,7 @@ <member name="frames" type="SpriteFrames" setter="set_sprite_frames" getter="get_sprite_frames"> The [SpriteFrames] resource containing the animation(s). </member> - <member name="playing" type="bool" setter="_set_playing" getter="_is_playing" default="false"> + <member name="playing" type="bool" setter="set_playing" getter="is_playing" default="false"> If [code]true[/code], the [member animation] is currently playing. </member> </members> |