Contains data used to animate everything in the engine. An Animation resource contains data used to animate everything in the engine. Animations are divided into tracks, and each track must be linked to a node. The state of that node can be changed through time, by adding timed keys (events) to the track. [codeblock] # This creates an animation that makes the node "Enemy" move to the right by # 100 pixels in 1 second. var animation = Animation.new() var track_index = animation.add_track(Animation.TYPE_VALUE) animation.track_set_path(track_index, "Enemy:position.x") animation.track_insert_key(track_index, 0.0, 0) animation.track_insert_key(track_index, 0.5, 100) [/codeblock] Animations are just data containers, and must be added to nodes such as an [AnimationPlayer] or [AnimationTreePlayer] to be played back. https://docs.godotengine.org/en/latest/tutorials/animation/index.html Adds a track to the Animation. Clear the animation (clear all tracks and reset all). Adds a new track that is a copy of the given track from [code]to_animation[/code]. Returns the index of the specified track. If the track is not found, return -1. Returns the amount of tracks in the animation. Returns all the key indices of a method track, given a position and delta time. Returns the method name of a method track. Returns the arguments values to be called on a method track for a given key in a given track. Removes a track by specifying the track index. Finds the key index by time in a given track. Optionally, only find it if the exact time is given. Returns [code]true[/code] if the track at [code]idx[/code] wraps the interpolation loop. New tracks wrap the interpolation loop by default. Returns the interpolation type of a given track. Returns the amount of keys in a given track. Returns the time at which the key is located. Returns the transition curve (easing) for a specific key (see the built-in math function [method @GDScript.ease]). Returns the value of a given key in a given track. Gets the path of a track. For more information on the path format, see [method track_set_path]. Gets the type of a track. Insert a generic key in a given track. Returns [code]true[/code] if the track at index [code]idx[/code] is enabled. Returns [code]true[/code] if the given track is imported. Else, return [code]false[/code]. Moves a track down. Changes the index position of track [code]idx[/code] to the one defined in [code]to_idx[/code]. Moves a track up. Removes a key by index in a given track. Removes a key by position (seconds) in a given track. Enables/disables the given track. Tracks are enabled by default. Sets the given track as imported or not. If [code]true[/code], the track at [code]idx[/code] wraps the interpolation loop. Sets the interpolation type of a given track. Sets the time of an existing key. Sets the transition curve (easing) for a specific key (see the built-in math function [method @GDScript.ease]). Sets the value of an existing key. Sets the path of a track. Paths must be valid scene-tree paths to a node, and must be specified starting from the parent node of the node that will reproduce the animation. Tracks that control properties or bones must append their name after the path, separated by [code]":"[/code]. For example, [code]"character/skeleton:ankle"[/code] or [code]"character/mesh:transform/local"[/code]. Swaps the track [code]idx[/code]'s index position with the track [code]with_idx[/code]. Insert a transform key for a transform track. Returns the interpolated value of a transform track at a given time (in seconds). An array consisting of 3 elements: position ([Vector3]), rotation ([Quat]) and scale ([Vector3]). Returns all the key indices of a value track, given a position and delta time. Returns the update mode of a value track. Sets the update mode ([code]UPDATE_*[/code]) of a value track. The total length of the animation (in seconds). [b]Note:[/b] Length is not delimited by the last key, as this one may be before or after the end to ensure correct interpolation and looping. A flag indicating that the animation must loop. This is uses for correct interpolation of animation cycles, and for hinting the player that it must restart the animation. The animation step value. Value tracks set values in node properties, but only those which can be Interpolated. Transform tracks are used to change node local transforms or skeleton pose bones. Transitions are interpolated. Method tracks call functions with given arguments per key. No interpolation (nearest value). Linear interpolation. Cubic interpolation. Update between keyframes. Update at the keyframes and hold the value. Update at the keyframes.