2018-08-21 00:35:30 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2022-02-14 14:18:53 +01:00
<class name= "AnimationNodeStateMachinePlayback" inherits= "Resource" version= "4.0" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation= "../class.xsd" >
2018-08-21 00:35:30 +02:00
<brief_description >
2020-01-23 11:14:14 +01:00
Playback control for [AnimationNodeStateMachine].
2018-08-21 00:35:30 +02:00
</brief_description>
<description >
2019-06-22 01:04:47 +02:00
Allows control of [AnimationTree] state machines created with [AnimationNodeStateMachine]. Retrieve with [code]$AnimationTree.get("parameters/playback")[/code].
[b]Example:[/b]
2020-07-31 16:07:26 +02:00
[codeblocks]
[gdscript]
2019-05-21 04:45:23 +02:00
var state_machine = $AnimationTree.get("parameters/playback")
state_machine.travel("some_state")
2020-07-31 16:07:26 +02:00
[/gdscript]
[csharp]
var stateMachine = GetNode< AnimationTree> ("AnimationTree").Get("parameters/playback") as AnimationNodeStateMachinePlayback;
stateMachine.Travel("some_state");
[/csharp]
[/codeblocks]
2018-08-21 00:35:30 +02:00
</description>
<tutorials >
2021-11-15 10:43:07 +01:00
<link title= "AnimationTree" > $DOCS_URL/tutorials/animation/animation_tree.html</link>
2018-08-21 00:35:30 +02:00
</tutorials>
<methods >
2021-01-04 14:33:44 +01:00
<method name= "get_current_length" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "float" />
2018-08-21 00:35:30 +02:00
<description >
</description>
</method>
2021-01-04 14:33:44 +01:00
<method name= "get_current_node" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "StringName" />
2018-08-21 00:35:30 +02:00
<description >
2021-01-04 14:33:44 +01:00
Returns the currently playing animation state.
2018-08-21 00:35:30 +02:00
</description>
</method>
2020-09-19 04:59:25 +02:00
<method name= "get_current_play_position" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "float" />
2020-09-19 04:59:25 +02:00
<description >
Returns the playback position within the current animation state.
</description>
</method>
2021-01-04 14:33:44 +01:00
<method name= "get_travel_path" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "PackedStringArray" />
2021-01-04 14:33:44 +01:00
<description >
Returns the current travel path as computed internally by the A* algorithm.
</description>
</method>
2018-08-21 00:35:30 +02:00
<method name= "is_playing" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "bool" />
2018-08-21 00:35:30 +02:00
<description >
2019-05-21 04:45:23 +02:00
Returns [code]true[/code] if an animation is playing.
2018-08-21 00:35:30 +02:00
</description>
</method>
<method name= "start" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
2022-08-06 20:11:48 +02:00
<param index= "0" name= "node" type= "StringName" />
2018-08-21 00:35:30 +02:00
<description >
2019-05-21 04:45:23 +02:00
Starts playing the given animation.
2018-08-21 00:35:30 +02:00
</description>
</method>
<method name= "stop" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
2018-08-21 00:35:30 +02:00
<description >
2019-05-21 04:45:23 +02:00
Stops the currently playing animation.
2018-08-21 00:35:30 +02:00
</description>
</method>
<method name= "travel" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
2022-08-06 20:11:48 +02:00
<param index= "0" name= "to_node" type= "StringName" />
2018-08-21 00:35:30 +02:00
<description >
2019-05-21 04:45:23 +02:00
Transitions from the current state to another one, following the shortest path.
2018-08-21 00:35:30 +02:00
</description>
</method>
</methods>
2019-09-03 12:44:58 +02:00
<members >
2021-12-02 20:38:49 +01:00
<member name= "resource_local_to_scene" type= "bool" setter= "set_local_to_scene" getter= "is_local_to_scene" overrides= "Resource" default= "true" />
2019-09-03 12:44:58 +02:00
</members>
2018-08-21 00:35:30 +02:00
</class>