2018-07-26 11:56:21 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2020-02-01 02:03:48 +01:00
<class name= "AnimationNodeTimeSeek" inherits= "AnimationNode" version= "4.0" >
2018-07-26 11:56:21 +02:00
<brief_description >
2020-03-03 19:21:21 +01:00
A time-seeking animation node to be used with [AnimationTree].
2018-07-26 11:56:21 +02:00
</brief_description>
<description >
2021-04-17 20:06:32 +02:00
This node can be used to cause a seek command to happen to any sub-children of the animation graph. Use this node type to play an [Animation] from the start or a certain playback position inside the [AnimationNodeBlendTree]. After setting the time and changing the animation playback, the seek node automatically goes into sleep mode on the next process frame by setting its [code]seek_position[/code] value to [code]-1.0[/code].
[codeblocks]
[gdscript]
# Play child animation from the start.
animation_tree.set("parameters/Seek/seek_position", 0.0)
# Alternative syntax (same result as above).
animation_tree["parameters/Seek/seek_position"] = 0.0
# Play child animation from 12 second timestamp.
animation_tree.set("parameters/Seek/seek_position", 12.0)
# Alternative syntax (same result as above).
animation_tree["parameters/Seek/seek_position"] = 12.0
[/gdscript]
[csharp]
// Play child animation from the start.
animationTree.Set("parameters/Seek/seek_position", 0.0);
// Play child animation from 12 second timestamp.
animationTree.Set("parameters/Seek/seek_position", 12.0);
[/csharp]
[/codeblocks]
2018-07-26 11:56:21 +02:00
</description>
<tutorials >
2020-08-05 14:43:40 +02:00
<link title= "AnimationTree" > https://docs.godotengine.org/en/latest/tutorials/animation/animation_tree.html</link>
2018-07-26 11:56:21 +02:00
</tutorials>
</class>