2017-09-12 20:42:36 +00:00
<?xml version="1.0" encoding="UTF-8" ?>
2023-07-06 08:08:05 +00:00
<class name= "SpriteFrames" inherits= "Resource" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation= "../class.xsd" >
2017-09-12 20:42:36 +00:00
<brief_description >
2022-01-12 02:55:45 +00:00
Sprite frame library for AnimatedSprite2D and AnimatedSprite3D.
2017-09-12 20:42:36 +00:00
</brief_description>
<description >
2022-01-12 02:55:45 +00:00
Sprite frame library for an [AnimatedSprite2D] or [AnimatedSprite3D] node. Contains frames and animation data for playback.
2017-09-12 20:42:36 +00:00
</description>
<tutorials >
</tutorials>
<methods >
<method name= "add_animation" >
2021-07-30 13:28:05 +00:00
<return type= "void" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "anim" type= "StringName" />
2017-09-12 20:42:36 +00:00
<description >
2023-01-10 06:50:48 +00:00
Adds a new [param anim] animation to the library.
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "add_frame" >
2021-07-30 13:28:05 +00:00
<return type= "void" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "anim" type= "StringName" />
2022-11-26 14:00:38 +00:00
<param index= "1" name= "texture" type= "Texture2D" />
<param index= "2" name= "duration" type= "float" default= "1.0" />
<param index= "3" name= "at_position" type= "int" default= "-1" />
2017-09-12 20:42:36 +00:00
<description >
2024-06-16 15:43:20 +00:00
Adds a frame to the [param anim] animation. If [param at_position] is [code]-1[/code], the frame will be added to the end of the animation. [param duration] specifies the relative duration, see [method get_frame_duration] for details.
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "clear" >
2021-07-30 13:28:05 +00:00
<return type= "void" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "anim" type= "StringName" />
2017-09-12 20:42:36 +00:00
<description >
2023-01-10 06:50:48 +00:00
Removes all frames from the [param anim] animation.
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "clear_all" >
2021-07-30 13:28:05 +00:00
<return type= "void" />
2017-09-12 20:42:36 +00:00
<description >
2023-01-10 06:50:48 +00:00
Removes all animations. An empty [code]default[/code] animation will be created.
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "get_animation_loop" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "bool" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "anim" type= "StringName" />
2017-09-12 20:42:36 +00:00
<description >
2020-09-11 10:22:10 +00: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 20:42:36 +00:00
</description>
</method>
2018-07-26 09:56:21 +00:00
<method name= "get_animation_names" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "PackedStringArray" />
2018-07-26 09:56:21 +00:00
<description >
Returns an array containing the names associated to each animation. Values are placed in alphabetical order.
</description>
</method>
2017-09-12 20:42:36 +00:00
<method name= "get_animation_speed" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "float" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "anim" type= "StringName" />
2017-09-12 20:42:36 +00:00
<description >
2022-11-26 14:00:38 +00:00
Returns the speed in frames per second for the [param anim] animation.
2017-09-12 20:42:36 +00:00
</description>
</method>
2022-11-26 14:00:38 +00:00
<method name= "get_frame_count" qualifiers= "const" >
<return type= "int" />
<param index= "0" name= "anim" type= "StringName" />
<description >
Returns the number of frames for the [param anim] animation.
</description>
</method>
<method name= "get_frame_duration" qualifiers= "const" >
<return type= "float" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "anim" type= "StringName" />
<param index= "1" name= "idx" type= "int" />
2017-09-12 20:42:36 +00:00
<description >
2022-11-26 14:00:38 +00:00
Returns a relative duration of the frame [param idx] in the [param anim] animation (defaults to [code]1.0[/code]). For example, a frame with a duration of [code]2.0[/code] is displayed twice as long as a frame with a duration of [code]1.0[/code]. You can calculate the absolute duration (in seconds) of a frame using the following formula:
[codeblock]
2023-02-22 07:45:00 +00:00
absolute_duration = relative_duration / (animation_fps * abs(playing_speed))
2022-11-26 14:00:38 +00:00
[/codeblock]
2023-02-22 07:45:00 +00:00
In this example, [code]playing_speed[/code] refers to either [method AnimatedSprite2D.get_playing_speed] or [method AnimatedSprite3D.get_playing_speed].
2017-09-12 20:42:36 +00:00
</description>
</method>
2022-11-26 14:00:38 +00:00
<method name= "get_frame_texture" qualifiers= "const" >
<return type= "Texture2D" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "anim" type= "StringName" />
2022-11-26 14:00:38 +00:00
<param index= "1" name= "idx" type= "int" />
2017-09-12 20:42:36 +00:00
<description >
2022-11-26 14:00:38 +00:00
Returns the texture of the frame [param idx] in the [param anim] animation.
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "has_animation" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "bool" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "anim" type= "StringName" />
2017-09-12 20:42:36 +00:00
<description >
2023-01-10 06:50:48 +00:00
Returns [code]true[/code] if the [param anim] animation exists.
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "remove_animation" >
2021-07-30 13:28:05 +00:00
<return type= "void" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "anim" type= "StringName" />
2017-09-12 20:42:36 +00:00
<description >
2023-01-10 06:50:48 +00:00
Removes the [param anim] animation.
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "remove_frame" >
2021-07-30 13:28:05 +00:00
<return type= "void" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "anim" type= "StringName" />
<param index= "1" name= "idx" type= "int" />
2017-09-12 20:42:36 +00:00
<description >
2023-01-10 06:50:48 +00:00
Removes the [param anim] animation's frame [param idx].
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "rename_animation" >
2021-07-30 13:28:05 +00:00
<return type= "void" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "anim" type= "StringName" />
<param index= "1" name= "newname" type= "StringName" />
2017-09-12 20:42:36 +00:00
<description >
2023-01-10 06:50:48 +00:00
Changes the [param anim] animation's name to [param newname].
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "set_animation_loop" >
2021-07-30 13:28:05 +00:00
<return type= "void" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "anim" type= "StringName" />
<param index= "1" name= "loop" type= "bool" />
2017-09-12 20:42:36 +00:00
<description >
2023-01-10 06:50:48 +00:00
If [param loop] is [code]true[/code], the [param anim] animation will loop when it reaches the end, or the start if it is played in reverse.
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "set_animation_speed" >
2021-07-30 13:28:05 +00:00
<return type= "void" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "anim" type= "StringName" />
2022-11-26 14:00:38 +00:00
<param index= "1" name= "fps" type= "float" />
2017-09-12 20:42:36 +00:00
<description >
2022-11-26 14:00:38 +00:00
Sets the speed for the [param anim] animation in frames per second.
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "set_frame" >
2021-07-30 13:28:05 +00:00
<return type= "void" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "anim" type= "StringName" />
<param index= "1" name= "idx" type= "int" />
2022-11-26 14:00:38 +00:00
<param index= "2" name= "texture" type= "Texture2D" />
<param index= "3" name= "duration" type= "float" default= "1.0" />
2017-09-12 20:42:36 +00:00
<description >
2024-06-16 15:43:20 +00:00
Sets the [param texture] and the [param duration] of the frame [param idx] in the [param anim] animation. [param duration] specifies the relative duration, see [method get_frame_duration] for details.
2017-09-12 20:42:36 +00:00
</description>
</method>
</methods>
</class>