diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-02-22 14:59:09 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2020-02-22 14:59:09 +0100 |
commit | fea37cfb526418f489975ccdbdb46035d61d4a88 (patch) | |
tree | 1a8fe418a3b114c2193cab8436e315b210d75480 /doc/classes/AnimationNodeStateMachineTransition.xml | |
parent | bf7d6de55662d7f4f9e82e69920582cf8ec55375 (diff) | |
download | redot-engine-fea37cfb526418f489975ccdbdb46035d61d4a88.tar.gz |
doc: Sync classref with StringName/Callable changes
Diffstat (limited to 'doc/classes/AnimationNodeStateMachineTransition.xml')
-rw-r--r-- | doc/classes/AnimationNodeStateMachineTransition.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/AnimationNodeStateMachineTransition.xml b/doc/classes/AnimationNodeStateMachineTransition.xml index d40a6f1e46..f0b7cc4099 100644 --- a/doc/classes/AnimationNodeStateMachineTransition.xml +++ b/doc/classes/AnimationNodeStateMachineTransition.xml @@ -10,7 +10,7 @@ <methods> </methods> <members> - <member name="advance_condition" type="String" setter="set_advance_condition" getter="get_advance_condition" default=""""> + <member name="advance_condition" type="StringName" setter="set_advance_condition" getter="get_advance_condition" default="@"""> 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]: [codeblock] $animation_tree["parameters/conditions/idle"] = is_on_floor and (linear_velocity.x == 0) |