Up to date
This page is up to date for Godot 4.0
. If you still find outdated information, please open an issue.
AnimationNodeOneShot
Inherits: AnimationNodeSync < AnimationNode < Resource < RefCounted < Object
Plays an animation once in an AnimationNodeBlendTree.
Description
A resource to add to an AnimationNodeBlendTree. This node will execute a sub-animation and return once it finishes. Blend times for fading in and out can be customized, as well as filters.
After setting the request and changing the animation playback, the one-shot node automatically clears the request on the next process frame by setting its request
value to ONE_SHOT_REQUEST_NONE.
GDScriptC#
# Play child animation connected to "shot" port.
animation_tree.set("parameters/OneShot/request", AnimationNodeOneShot.ONE_SHOT_REQUEST_FIRE)
# Alternative syntax (same result as above).
animation_tree["parameters/OneShot/request"] = AnimationNodeOneShot.ONE_SHOT_REQUEST_FIRE
# Abort child animation connected to "shot" port.
animation_tree.set("parameters/OneShot/request", AnimationNodeOneShot.ONE_SHOT_REQUEST_ABORT)
# Alternative syntax (same result as above).
animation_tree["parameters/OneShot/request"] = AnimationNodeOneShot.ONE_SHOT_REQUEST_ABORT
# Get current state (read-only).
animation_tree.get("parameters/OneShot/active"))
# Alternative syntax (same result as above).
animation_tree["parameters/OneShot/active"]
// Play child animation connected to "shot" port.
animationTree.Set("parameters/OneShot/request", (int)AnimationNodeOneShot.OneShotRequest.Fire);
// Abort child animation connected to "shot" port.
animationTree.Set("parameters/OneShot/request", (int)AnimationNodeOneShot.OneShotRequest.Abort);
// Get current state (read-only).
animationTree.Get("parameters/OneShot/active");
Tutorials
Properties
| ||
| ||
| ||
| ||
| ||
|
Enumerations
enum OneShotRequest:
OneShotRequest ONE_SHOT_REQUEST_NONE = 0
The default state of the request. Nothing is done.
OneShotRequest ONE_SHOT_REQUEST_FIRE = 1
The request to play the animation connected to “shot” port.
OneShotRequest ONE_SHOT_REQUEST_ABORT = 2
The request to stop the animation connected to “shot” port.
enum MixMode:
MixMode MIX_MODE_BLEND = 0
Blends two animations. See also AnimationNodeBlend2.
MixMode MIX_MODE_ADD = 1
Blends two animations additively. See also AnimationNodeAdd2.
Property Descriptions
bool autorestart = false
If true
, the sub-animation will restart automatically after finishing.
In other words, to start auto restarting, the animation must be played once with the ONE_SHOT_REQUEST_FIRE request. The ONE_SHOT_REQUEST_ABORT request stops the auto restarting, but it does not disable the autorestart itself. So, the ONE_SHOT_REQUEST_FIRE request will start auto restarting again.
float autorestart_delay = 1.0
The delay after which the automatic restart is triggered, in seconds.
float autorestart_random_delay = 0.0
If autorestart is true
, a random additional delay (in seconds) between 0 and this value will be added to autorestart_delay.
float fadein_time = 0.0
The fade-in duration. For example, setting this to 1.0
for a 5 second length animation will produce a crossfade that starts at 0 second and ends at 1 second during the animation.
float fadeout_time = 0.0
The fade-out duration. For example, setting this to 1.0
for a 5 second length animation will produce a crossfade that starts at 4 second and ends at 5 second during the animation.
MixMode mix_mode = 0
The blend type.