2018-07-26 11:56:21 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2022-06-29 08:35:29 +02:00
<class name= "AnimationNodeTransition" inherits= "AnimationNodeSync" version= "4.0" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation= "../class.xsd" >
2018-07-26 11:56:21 +02:00
<brief_description >
2020-03-03 19:21:21 +01:00
A generic animation transition node for [AnimationTree].
2018-07-26 11:56:21 +02:00
</brief_description>
<description >
2020-03-03 19:21:21 +01:00
Simple state machine for cases which don't require a more advanced [AnimationNodeStateMachine]. Animations can be connected to the inputs and transition times can be specified.
2018-07-26 11:56:21 +02:00
</description>
<tutorials >
2021-11-15 10:43:07 +01:00
<link title= "AnimationTree" > $DOCS_URL/tutorials/animation/animation_tree.html</link>
2020-10-01 10:34:47 +02:00
<link title= "3D Platformer Demo" > https://godotengine.org/asset-library/asset/125</link>
<link title= "Third Person Shooter Demo" > https://godotengine.org/asset-library/asset/678</link>
2018-07-26 11:56:21 +02:00
</tutorials>
<methods >
2023-01-12 13:51:03 +01:00
<method name= "find_input_caption" qualifiers= "const" >
<return type= "int" />
<param index= "0" name= "caption" type= "String" />
<description >
</description>
</method>
2019-06-27 16:10:09 +02:00
<method name= "get_input_caption" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "String" />
2022-08-06 20:11:48 +02:00
<param index= "0" name= "input" type= "int" />
2019-06-27 16:10:09 +02:00
<description >
</description>
</method>
<method name= "is_input_set_as_auto_advance" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "bool" />
2022-08-06 20:11:48 +02:00
<param index= "0" name= "input" type= "int" />
2019-06-27 16:10:09 +02:00
<description >
</description>
</method>
<method name= "set_input_as_auto_advance" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
2022-08-06 20:11:48 +02:00
<param index= "0" name= "input" type= "int" />
<param index= "1" name= "enable" type= "bool" />
2019-06-27 16:10:09 +02:00
<description >
</description>
</method>
<method name= "set_input_caption" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
2022-08-06 20:11:48 +02:00
<param index= "0" name= "input" type= "int" />
<param index= "1" name= "caption" type= "String" />
2019-06-27 16:10:09 +02:00
<description >
</description>
</method>
2018-07-26 11:56:21 +02:00
</methods>
<members >
2022-04-05 19:11:06 +02:00
<member name= "enabled_inputs" type= "int" setter= "set_enabled_inputs" getter= "get_enabled_inputs" default= "0" >
The number of enabled input ports for this node.
</member>
2023-01-10 10:15:16 +01:00
<member name= "reset" type= "bool" setter= "set_reset" getter= "is_reset" default= "true" >
2022-06-29 08:35:29 +02:00
If [code]true[/code], the destination animation is played back from the beginning when switched.
</member>
2022-07-28 10:31:23 +02:00
<member name= "xfade_curve" type= "Curve" setter= "set_xfade_curve" getter= "get_xfade_curve" >
</member>
<member name= "xfade_time" type= "float" setter= "set_xfade_time" getter= "get_xfade_time" default= "0.0" >
2020-03-03 19:21:21 +01:00
Cross-fading time (in seconds) between each animation connected to the inputs.
2018-07-26 11:56:21 +02:00
</member>
</members>
</class>