Path: blob/master/doc/classes/AnimationNodeStateMachineTransition.xml
10277 views
<?xml version="1.0" encoding="UTF-8" ?>1<class name="AnimationNodeStateMachineTransition" inherits="Resource" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd">2<brief_description>3A transition within an [AnimationNodeStateMachine] connecting two [AnimationRootNode]s.4</brief_description>5<description>6The path generated when using [method AnimationNodeStateMachinePlayback.travel] is limited to the nodes connected by [AnimationNodeStateMachineTransition].7You can set the timing and conditions of the transition in detail.8</description>9<tutorials>10<link title="Using AnimationTree">$DOCS_URL/tutorials/animation/animation_tree.html</link>11</tutorials>12<members>13<member name="advance_condition" type="StringName" setter="set_advance_condition" getter="get_advance_condition" default="&""">14Turn on auto advance when this condition is set. The provided name will become a boolean parameter on the [AnimationTree] that can be controlled from code (see [url=$DOCS_URL/tutorials/animation/animation_tree.html#controlling-from-code]Using AnimationTree[/url]). For example, if [member AnimationTree.tree_root] is an [AnimationNodeStateMachine] and [member advance_condition] is set to [code]"idle"[/code]:15[codeblocks]16[gdscript]17$animation_tree.set("parameters/conditions/idle", is_on_floor and (linear_velocity.x == 0))18[/gdscript]19[csharp]20GetNode<AnimationTree>("animation_tree").Set("parameters/conditions/idle", IsOnFloor && (LinearVelocity.X == 0));21[/csharp]22[/codeblocks]23</member>24<member name="advance_expression" type="String" setter="set_advance_expression" getter="get_advance_expression" default="""">25Use an expression as a condition for state machine transitions. It is possible to create complex animation advance conditions for switching between states and gives much greater flexibility for creating complex state machines by directly interfacing with the script code.26</member>27<member name="advance_mode" type="int" setter="set_advance_mode" getter="get_advance_mode" enum="AnimationNodeStateMachineTransition.AdvanceMode" default="1">28Determines whether the transition should be disabled, enabled when using [method AnimationNodeStateMachinePlayback.travel], or traversed automatically if the [member advance_condition] and [member advance_expression] checks are [code]true[/code] (if assigned).29</member>30<member name="break_loop_at_end" type="bool" setter="set_break_loop_at_end" getter="is_loop_broken_at_end" default="false">31If [code]true[/code], breaks the loop at the end of the loop cycle for transition, even if the animation is looping.32</member>33<member name="priority" type="int" setter="set_priority" getter="get_priority" default="1">34Lower priority transitions are preferred when travelling through the tree via [method AnimationNodeStateMachinePlayback.travel] or [member advance_mode] is set to [constant ADVANCE_MODE_AUTO].35</member>36<member name="reset" type="bool" setter="set_reset" getter="is_reset" default="true">37If [code]true[/code], the destination animation is played back from the beginning when switched.38</member>39<member name="switch_mode" type="int" setter="set_switch_mode" getter="get_switch_mode" enum="AnimationNodeStateMachineTransition.SwitchMode" default="0">40The transition type.41</member>42<member name="xfade_curve" type="Curve" setter="set_xfade_curve" getter="get_xfade_curve">43Ease curve for better control over cross-fade between this state and the next. Should be a unit [Curve].44</member>45<member name="xfade_time" type="float" setter="set_xfade_time" getter="get_xfade_time" default="0.0">46The time to cross-fade between this state and the next.47[b]Note:[/b] [AnimationNodeStateMachine] transitions the current state immediately after the start of the fading. The precise remaining time can only be inferred from the main animation. When [AnimationNodeOutput] is considered as the most upstream, so the [member xfade_time] is not scaled depending on the downstream delta. See also [member AnimationNodeOneShot.fadeout_time].48</member>49</members>50<signals>51<signal name="advance_condition_changed">52<description>53Emitted when [member advance_condition] is changed.54</description>55</signal>56</signals>57<constants>58<constant name="SWITCH_MODE_IMMEDIATE" value="0" enum="SwitchMode">59Switch to the next state immediately. The current state will end and blend into the beginning of the new one.60</constant>61<constant name="SWITCH_MODE_SYNC" value="1" enum="SwitchMode">62Switch to the next state immediately, but will seek the new state to the playback position of the old state.63</constant>64<constant name="SWITCH_MODE_AT_END" value="2" enum="SwitchMode">65Wait for the current state playback to end, then switch to the beginning of the next state animation.66</constant>67<constant name="ADVANCE_MODE_DISABLED" value="0" enum="AdvanceMode">68Don't use this transition.69</constant>70<constant name="ADVANCE_MODE_ENABLED" value="1" enum="AdvanceMode">71Only use this transition during [method AnimationNodeStateMachinePlayback.travel].72</constant>73<constant name="ADVANCE_MODE_AUTO" value="2" enum="AdvanceMode">74Automatically use this transition if the [member advance_condition] and [member advance_expression] checks are [code]true[/code] (if assigned).75</constant>76</constants>77</class>787980