AnimationNodeStateMachineTransition.xml 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <class name="AnimationNodeStateMachineTransition" inherits="Resource" version="3.2">
  3. <brief_description>
  4. </brief_description>
  5. <description>
  6. </description>
  7. <tutorials>
  8. <link>https://docs.godotengine.org/en/latest/tutorials/animation/animation_tree.html</link>
  9. </tutorials>
  10. <methods>
  11. </methods>
  12. <members>
  13. <member name="advance_condition" type="String" setter="set_advance_condition" getter="get_advance_condition" default="&quot;&quot;">
  14. Turn 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=https://docs.godotengine.org/en/latest/tutorials/animation/animation_tree.html#controlling-from-code][/url]). For example, if [member AnimationTree.tree_root] is an [AnimationNodeStateMachine] and [member advance_condition] is set to [code]"idle"[/code]:
  15. [codeblock]
  16. $animation_tree["parameters/conditions/idle"] = is_on_floor and (linear_velocity.x == 0)
  17. [/codeblock]
  18. </member>
  19. <member name="auto_advance" type="bool" setter="set_auto_advance" getter="has_auto_advance" default="false">
  20. Turn on the transition automatically when this state is reached. This works best with [constant SWITCH_MODE_AT_END].
  21. </member>
  22. <member name="disabled" type="bool" setter="set_disabled" getter="is_disabled" default="false">
  23. Don't use this transition during [method AnimationNodeStateMachinePlayback.travel] or [member auto_advance].
  24. </member>
  25. <member name="priority" type="int" setter="set_priority" getter="get_priority" default="1">
  26. Lower priority transitions are preferred when travelling through the tree via [method AnimationNodeStateMachinePlayback.travel] or [member auto_advance].
  27. </member>
  28. <member name="switch_mode" type="int" setter="set_switch_mode" getter="get_switch_mode" enum="AnimationNodeStateMachineTransition.SwitchMode" default="0">
  29. The transition type.
  30. </member>
  31. <member name="xfade_time" type="float" setter="set_xfade_time" getter="get_xfade_time" default="0.0">
  32. The time to cross-fade between this state and the next.
  33. </member>
  34. </members>
  35. <signals>
  36. <signal name="advance_condition_changed">
  37. <description>
  38. Emitted when [member advance_condition] is changed.
  39. </description>
  40. </signal>
  41. </signals>
  42. <constants>
  43. <constant name="SWITCH_MODE_IMMEDIATE" value="0" enum="SwitchMode">
  44. Switch to the next state immediately. The current state will end and blend into the beginning of the new one.
  45. </constant>
  46. <constant name="SWITCH_MODE_SYNC" value="1" enum="SwitchMode">
  47. Switch to the next state immediately, but will seek the new state to the playback position of the old state.
  48. </constant>
  49. <constant name="SWITCH_MODE_AT_END" value="2" enum="SwitchMode">
  50. Wait for the current state playback to end, then switch to the beginning of the next state animation.
  51. </constant>
  52. </constants>
  53. </class>