diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-08-25 07:58:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-25 07:58:59 +0200 |
commit | 629524c7a20fa599c1a97be21d67239a8dca682b (patch) | |
tree | d6a91b1cbbb857bcf5238d7bbd0af2f12ff71f95 /doc | |
parent | 0a828dbd923723319d29ade6977191f90072ce9d (diff) | |
parent | a90c348a86d60cdabac9e7f5d1109beeaa52b506 (diff) |
Merge pull request #64868 from timothyqiu/see-url
Fix missing URL text in the classref
Diffstat (limited to 'doc')
-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 beb259b12b..1b5a795b3c 100644 --- a/doc/classes/AnimationNodeStateMachineTransition.xml +++ b/doc/classes/AnimationNodeStateMachineTransition.xml @@ -9,7 +9,7 @@ </tutorials> <members> <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=$DOCS_URL/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]: + 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=$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]: [codeblocks] [gdscript] $animation_tree.set("parameters/conditions/idle", is_on_floor and (linear_velocity.x == 0)) |