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 >
2022-01-12 03:55:45 +01:00
Sprite frame library for AnimatedSprite2D and AnimatedSprite3D.
2017-09-12 22:42:36 +02:00
</brief_description>
<description >
2022-01-12 03:55:45 +01:00
Sprite frame library for an [AnimatedSprite2D] or [AnimatedSprite3D] node. 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" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "anim" type= "StringName" />
2017-09-12 22:42:36 +02:00
<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" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "anim" type= "StringName" />
<argument index= "1" name= "frame" type= "Texture2D" />
<argument index= "2" name= "at_position" type= "int" default= "-1" />
2017-09-12 22:42:36 +02:00
<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" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "anim" type= "StringName" />
2017-09-12 22:42:36 +02:00
<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" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
2017-09-12 22:42:36 +02:00
<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" >
2021-07-30 15:28:05 +02:00
<return type= "bool" />
<argument index= "0" name= "anim" type= "StringName" />
2017-09-12 22:42:36 +02:00
<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" >
2021-07-30 15:28:05 +02:00
<return type= "PackedStringArray" />
2018-07-26 11:56:21 +02:00
<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" >
2021-07-30 15:28:05 +02:00
<return type= "float" />
<argument index= "0" name= "anim" type= "StringName" />
2017-09-12 22:42:36 +02:00
<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" >
2021-07-30 15:28:05 +02:00
<return type= "Texture2D" />
<argument index= "0" name= "anim" type= "StringName" />
<argument index= "1" name= "idx" type= "int" />
2017-09-12 22:42:36 +02:00
<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" >
2021-07-30 15:28:05 +02:00
<return type= "int" />
<argument index= "0" name= "anim" type= "StringName" />
2017-09-12 22:42:36 +02:00
<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" >
2021-07-30 15:28:05 +02:00
<return type= "bool" />
<argument index= "0" name= "anim" type= "StringName" />
2017-09-12 22:42:36 +02:00
<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" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "anim" type= "StringName" />
2017-09-12 22:42:36 +02:00
<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" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "anim" type= "StringName" />
<argument index= "1" name= "idx" type= "int" />
2017-09-12 22:42:36 +02:00
<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" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "anim" type= "StringName" />
<argument index= "1" name= "newname" type= "StringName" />
2017-09-12 22:42:36 +02:00
<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" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "anim" type= "StringName" />
<argument index= "1" name= "loop" type= "bool" />
2017-09-12 22:42:36 +02:00
<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" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "anim" type= "StringName" />
<argument index= "1" name= "speed" type= "float" />
2017-09-12 22:42:36 +02:00
<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" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "anim" type= "StringName" />
<argument index= "1" name= "idx" type= "int" />
<argument index= "2" name= "txt" type= "Texture2D" />
2017-09-12 22:42:36 +02:00
<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>
</class>