2018-08-21 00:35:30 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2019-04-01 12:33:56 +02:00
<class name= "AnimationNodeStateMachinePlayback" inherits= "Resource" category= "Core" version= "3.2" >
2018-08-21 00:35:30 +02:00
<brief_description >
2019-05-21 04:45:23 +02: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]
2019-05-21 04:45:23 +02:00
[codeblock]
var state_machine = $AnimationTree.get("parameters/playback")
state_machine.travel("some_state")
[/codeblock]
2018-08-21 00:35:30 +02:00
</description>
<tutorials >
</tutorials>
<methods >
<method name= "get_current_node" qualifiers= "const" >
<return type= "String" >
</return>
<description >
2019-05-21 04:45:23 +02:00
Returns the currently playing animation state.
2018-08-21 00:35:30 +02:00
</description>
</method>
<method name= "get_travel_path" qualifiers= "const" >
<return type= "PoolStringArray" >
</return>
<description >
</description>
</method>
<method name= "is_playing" qualifiers= "const" >
<return type= "bool" >
</return>
<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" >
<return type= "void" >
</return>
<argument index= "0" name= "node" type= "String" >
</argument>
<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" >
<return type= "void" >
</return>
<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" >
<return type= "void" >
</return>
<argument index= "0" name= "to_node" type= "String" >
</argument>
<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 >
2019-09-24 13:34:03 +02:00
<member name= "resource_local_to_scene" type= "bool" setter= "set_local_to_scene" getter= "is_local_to_scene" override= "true" default= "true" />
2019-09-03 12:44:58 +02:00
</members>
2018-08-21 00:35:30 +02:00
<constants >
</constants>
</class>