2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2021-03-23 13:40:34 +01:00
<class name= "SpriteFrames" inherits= "Resource" version= "3.3" >
2017-09-12 22:42:36 +02:00
<brief_description >
Sprite frame library for AnimatedSprite.
</brief_description>
<description >
2017-09-24 20:37:28 +02:00
Sprite frame library for [AnimatedSprite]. 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 maps by creating additional [SpriteFrames] resources with a [code]_normal[/code] suffix. For example, having 2 [SpriteFrames] resources [code]run[/code] and [code]run_normal[/code] will make it so the [code]run[/code] animation uses the normal map.
2017-09-12 22:42:36 +02:00
</description>
<tutorials >
</tutorials>
<methods >
<method name= "add_animation" >
<return type= "void" >
</return>
<argument index= "0" name= "anim" type= "String" >
</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>
<argument index= "0" name= "anim" type= "String" >
</argument>
<argument index= "1" name= "frame" type= "Texture" >
</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>
<argument index= "0" name= "anim" type= "String" >
</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>
<argument index= "0" name= "anim" type= "String" >
</argument>
<description >
2018-12-20 13:46:54 +01:00
If [code]true[/code], the given animation will loop.
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" >
<return type= "PoolStringArray" >
</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>
<argument index= "0" name= "anim" type= "String" >
</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" >
<return type= "Texture" >
</return>
<argument index= "0" name= "anim" type= "String" >
</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>
<argument index= "0" name= "anim" type= "String" >
</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>
<argument index= "0" name= "anim" type= "String" >
</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>
<argument index= "0" name= "anim" type= "String" >
</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>
<argument index= "0" name= "anim" type= "String" >
</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>
<argument index= "0" name= "anim" type= "String" >
</argument>
<argument index= "1" name= "newname" type= "String" >
</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>
<argument index= "0" name= "anim" type= "String" >
</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>
<argument index= "0" name= "anim" type= "String" >
</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>
<argument index= "0" name= "anim" type= "String" >
</argument>
<argument index= "1" name= "idx" type= "int" >
</argument>
<argument index= "2" name= "txt" type= "Texture" >
</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>