2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2020-02-01 02:03:48 +01:00
<class name= "SpriteFrames" inherits= "Resource" version= "4.0" >
2017-09-12 22:42:36 +02:00
<brief_description >
2020-03-30 18:22:57 +02:00
Sprite frame library for AnimatedSprite2D.
2017-09-12 22:42:36 +02:00
</brief_description>
<description >
2020-03-30 18:22:57 +02:00
Sprite frame library for [AnimatedSprite2D]. Contains frames and animation data for playback.
2020-07-10 21:52:16 +02:00
[b]Note:[/b] You can associate a set of normal or specular maps by creating additional [SpriteFrames] resources with a [code]_normal[/code] or [code]_specular[/code] suffix. For example, having 3 [SpriteFrames] resources [code]run[/code], [code]run_normal[/code], and [code]run_specular[/code] will make it so the [code]run[/code] animation uses normal and specular maps.
2017-09-12 22:42:36 +02:00
</description>
<tutorials >
</tutorials>
<methods >
<method name= "add_animation" >
<return type= "void" >
</return>
2020-02-22 14:59:09 +01:00
<argument index= "0" name= "anim" type= "StringName" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2018-07-01 15:55:53 +02:00
Adds a new animation to the library.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "add_frame" >
<return type= "void" >
</return>
2020-02-22 14:59:09 +01:00
<argument index= "0" name= "anim" type= "StringName" >
2017-09-12 22:42:36 +02:00
</argument>
2020-02-12 09:59:06 +01:00
<argument index= "1" name= "frame" type= "Texture2D" >
2017-09-12 22:42:36 +02:00
</argument>
2017-09-10 15:37:49 +02:00
<argument index= "2" name= "at_position" type= "int" default= "-1" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2017-09-24 20:37:28 +02:00
Adds a frame to the given animation.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "clear" >
<return type= "void" >
</return>
2020-02-22 14:59:09 +01:00
<argument index= "0" name= "anim" type= "StringName" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2017-09-24 20:37:28 +02:00
Removes all frames from the given animation.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "clear_all" >
<return type= "void" >
</return>
<description >
2017-09-24 20:37:28 +02:00
Removes all animations. A "default" animation will be created.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_animation_loop" qualifiers= "const" >
<return type= "bool" >
</return>
2020-02-22 14:59:09 +01:00
<argument index= "0" name= "anim" type= "StringName" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2020-09-11 12:22:10 +02:00
Returns [code]true[/code] if the given animation is configured to loop when it finishes playing. Otherwise, returns [code]false[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
2018-07-26 11:56:21 +02:00
<method name= "get_animation_names" qualifiers= "const" >
2020-02-18 13:59:24 +01:00
<return type= "PackedStringArray" >
2018-07-26 11:56:21 +02:00
</return>
<description >
Returns an array containing the names associated to each animation. Values are placed in alphabetical order.
</description>
</method>
2017-09-12 22:42:36 +02:00
<method name= "get_animation_speed" qualifiers= "const" >
<return type= "float" >
</return>
2020-02-22 14:59:09 +01:00
<argument index= "0" name= "anim" type= "StringName" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2017-09-24 20:37:28 +02:00
The animation's speed in frames per second.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_frame" qualifiers= "const" >
2020-02-12 09:59:06 +01:00
<return type= "Texture2D" >
2017-09-12 22:42:36 +02:00
</return>
2020-02-22 14:59:09 +01:00
<argument index= "0" name= "anim" type= "StringName" >
2017-09-12 22:42:36 +02:00
</argument>
<argument index= "1" name= "idx" type= "int" >
</argument>
<description >
2017-09-24 20:37:28 +02:00
Returns the animation's selected frame.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "get_frame_count" qualifiers= "const" >
<return type= "int" >
</return>
2020-02-22 14:59:09 +01:00
<argument index= "0" name= "anim" type= "StringName" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2017-09-24 20:37:28 +02:00
Returns the number of frames in the animation.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "has_animation" qualifiers= "const" >
<return type= "bool" >
</return>
2020-02-22 14:59:09 +01:00
<argument index= "0" name= "anim" type= "StringName" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2018-12-20 13:46:54 +01:00
If [code]true[/code], the named animation exists.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "remove_animation" >
<return type= "void" >
</return>
2020-02-22 14:59:09 +01:00
<argument index= "0" name= "anim" type= "StringName" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2017-09-24 20:37:28 +02:00
Removes the given animation.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "remove_frame" >
<return type= "void" >
</return>
2020-02-22 14:59:09 +01:00
<argument index= "0" name= "anim" type= "StringName" >
2017-09-12 22:42:36 +02:00
</argument>
<argument index= "1" name= "idx" type= "int" >
</argument>
<description >
2017-09-24 20:37:28 +02:00
Removes the animation's selected frame.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "rename_animation" >
<return type= "void" >
</return>
2020-02-22 14:59:09 +01:00
<argument index= "0" name= "anim" type= "StringName" >
2017-09-12 22:42:36 +02:00
</argument>
2020-02-22 14:59:09 +01:00
<argument index= "1" name= "newname" type= "StringName" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2017-09-24 20:37:28 +02:00
Changes the animation's name to [code]newname[/code].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "set_animation_loop" >
<return type= "void" >
</return>
2020-02-22 14:59:09 +01:00
<argument index= "0" name= "anim" type= "StringName" >
2017-09-12 22:42:36 +02:00
</argument>
<argument index= "1" name= "loop" type= "bool" >
</argument>
<description >
2018-12-20 13:46:54 +01:00
If [code]true[/code], the animation will loop.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "set_animation_speed" >
<return type= "void" >
</return>
2020-02-22 14:59:09 +01:00
<argument index= "0" name= "anim" type= "StringName" >
2017-09-12 22:42:36 +02:00
</argument>
<argument index= "1" name= "speed" type= "float" >
</argument>
<description >
2017-09-24 20:37:28 +02:00
The animation's speed in frames per second.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "set_frame" >
<return type= "void" >
</return>
2020-02-22 14:59:09 +01:00
<argument index= "0" name= "anim" type= "StringName" >
2017-09-12 22:42:36 +02:00
</argument>
<argument index= "1" name= "idx" type= "int" >
</argument>
2020-02-12 09:59:06 +01:00
<argument index= "2" name= "txt" type= "Texture2D" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2017-09-24 20:37:28 +02:00
Sets the texture of the given frame.
2017-09-12 22:42:36 +02:00
</description>
</method>
</methods>
<members >
2018-09-13 02:32:51 +02:00
<member name= "frames" type= "Array" setter= "_set_frames" getter= "_get_frames" >
2020-01-13 23:08:42 +01:00
Compatibility property, always equals to an empty array.
2018-09-13 02:32:51 +02:00
</member>
2017-09-12 22:42:36 +02:00
</members>
<constants >
</constants>
</class>