2018-08-20 22:35:30 +00:00
<?xml version="1.0" encoding="UTF-8" ?>
2023-07-06 08:08:05 +00:00
<class name= "AnimationNodeStateMachinePlayback" inherits= "Resource" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation= "../class.xsd" >
2018-08-20 22:35:30 +00:00
<brief_description >
2020-01-23 10:14:14 +00:00
Playback control for [AnimationNodeStateMachine].
2018-08-20 22:35:30 +00:00
</brief_description>
<description >
2019-06-21 23:04:47 +00:00
Allows control of [AnimationTree] state machines created with [AnimationNodeStateMachine]. Retrieve with [code]$AnimationTree.get("parameters/playback")[/code].
[b]Example:[/b]
2019-05-21 02:45:23 +00:00
[codeblock]
var state_machine = $AnimationTree.get("parameters/playback")
state_machine.travel("some_state")
[/codeblock]
2018-08-20 22:35:30 +00:00
</description>
<tutorials >
2021-11-15 16:11:20 +00:00
<link > $DOCS_URL/tutorials/animation/animation_tree.html</link>
2018-08-20 22:35:30 +00:00
</tutorials>
<methods >
2021-01-05 20:20:27 +00:00
<method name= "get_current_length" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "float" />
2018-08-20 22:35:30 +00:00
<description >
</description>
</method>
2021-01-05 20:20:27 +00:00
<method name= "get_current_node" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "String" />
2018-08-20 22:35:30 +00:00
<description >
2021-01-05 20:20:27 +00:00
Returns the currently playing animation state.
2018-08-20 22:35:30 +00:00
</description>
</method>
2020-09-19 02:59:25 +00:00
<method name= "get_current_play_position" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "float" />
2020-09-19 02:59:25 +00:00
<description >
Returns the playback position within the current animation state.
</description>
</method>
2021-01-05 20:20:27 +00:00
<method name= "get_travel_path" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "PoolStringArray" />
2021-01-05 20:20:27 +00:00
<description >
Returns the current travel path as computed internally by the A* algorithm.
</description>
</method>
2018-08-20 22:35:30 +00:00
<method name= "is_playing" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "bool" />
2018-08-20 22:35:30 +00:00
<description >
2019-05-21 02:45:23 +00:00
Returns [code]true[/code] if an animation is playing.
2018-08-20 22:35:30 +00:00
</description>
</method>
<method name= "start" >
2021-07-30 13:28:05 +00:00
<return type= "void" />
<argument index= "0" name= "node" type= "String" />
2018-08-20 22:35:30 +00:00
<description >
2019-05-21 02:45:23 +00:00
Starts playing the given animation.
2018-08-20 22:35:30 +00:00
</description>
</method>
<method name= "stop" >
2021-07-30 13:28:05 +00:00
<return type= "void" />
2018-08-20 22:35:30 +00:00
<description >
2019-05-21 02:45:23 +00:00
Stops the currently playing animation.
2018-08-20 22:35:30 +00:00
</description>
</method>
<method name= "travel" >
2021-07-30 13:28:05 +00:00
<return type= "void" />
<argument index= "0" name= "to_node" type= "String" />
2018-08-20 22:35:30 +00:00
<description >
2019-05-21 02:45:23 +00:00
Transitions from the current state to another one, following the shortest path.
2018-08-20 22:35:30 +00:00
</description>
</method>
</methods>
2019-09-03 10:44:58 +00:00
<members >
2021-12-02 20:15:17 +00: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 10:44:58 +00:00
</members>
2018-08-20 22:35:30 +00:00
<constants >
</constants>
</class>