1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
|
<?xml version="1.0" encoding="UTF-8" ?>
<class name="SpriteFrames" inherits="Resource" version="3.2">
<brief_description>
Sprite frame library for AnimatedSprite.
</brief_description>
<description>
Sprite frame library for [AnimatedSprite]. Contains frames and animation data for playback.
[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.
</description>
<tutorials>
</tutorials>
<methods>
<method name="add_animation">
<return type="void">
</return>
<argument index="0" name="anim" type="String">
</argument>
<description>
Adds a new animation to the library.
</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>
<argument index="2" name="at_position" type="int" default="-1">
</argument>
<description>
Adds a frame to the given animation.
</description>
</method>
<method name="clear">
<return type="void">
</return>
<argument index="0" name="anim" type="String">
</argument>
<description>
Removes all frames from the given animation.
</description>
</method>
<method name="clear_all">
<return type="void">
</return>
<description>
Removes all animations. A "default" animation will be created.
</description>
</method>
<method name="get_animation_loop" qualifiers="const">
<return type="bool">
</return>
<argument index="0" name="anim" type="String">
</argument>
<description>
If [code]true[/code], the given animation will loop.
</description>
</method>
<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>
<method name="get_animation_speed" qualifiers="const">
<return type="float">
</return>
<argument index="0" name="anim" type="String">
</argument>
<description>
The animation's speed in frames per second.
</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>
Returns the animation's selected frame.
</description>
</method>
<method name="get_frame_count" qualifiers="const">
<return type="int">
</return>
<argument index="0" name="anim" type="String">
</argument>
<description>
Returns the number of frames in the animation.
</description>
</method>
<method name="has_animation" qualifiers="const">
<return type="bool">
</return>
<argument index="0" name="anim" type="String">
</argument>
<description>
If [code]true[/code], the named animation exists.
</description>
</method>
<method name="remove_animation">
<return type="void">
</return>
<argument index="0" name="anim" type="String">
</argument>
<description>
Removes the given animation.
</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>
Removes the animation's selected frame.
</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>
Changes the animation's name to [code]newname[/code].
</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>
If [code]true[/code], the animation will loop.
</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>
The animation's speed in frames per second.
</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>
Sets the texture of the given frame.
</description>
</method>
</methods>
<members>
<member name="frames" type="Array" setter="_set_frames" getter="_get_frames">
Compatibility property, always equals to an empty array.
</member>
</members>
<constants>
</constants>
</class>
|