summaryrefslogtreecommitdiff
path: root/doc/classes/AnimationNodeTransition.xml
diff options
context:
space:
mode:
authorSilc Renew <tokage.it.lab@gmail.com>2023-01-29 23:54:13 +0900
committerSilc Renew <tokage.it.lab@gmail.com>2023-01-30 03:52:55 +0900
commitd27005f80e8f05fdf8de4a39973c74320c03766d (patch)
treee7279cfa8814e1e6f664fe338b3228f2247b32c7 /doc/classes/AnimationNodeTransition.xml
parenta3dae9e548e5fbab7b7be070cf71f972656f759b (diff)
Remove the max input limit & cleanup AnimationNodeTransition API
Diffstat (limited to 'doc/classes/AnimationNodeTransition.xml')
-rw-r--r--doc/classes/AnimationNodeTransition.xml26
1 files changed, 2 insertions, 24 deletions
diff --git a/doc/classes/AnimationNodeTransition.xml b/doc/classes/AnimationNodeTransition.xml
index 90bae41586..57e79ac161 100644
--- a/doc/classes/AnimationNodeTransition.xml
+++ b/doc/classes/AnimationNodeTransition.xml
@@ -12,20 +12,6 @@
<link title="Third Person Shooter Demo">https://godotengine.org/asset-library/asset/678</link>
</tutorials>
<methods>
- <method name="find_input_caption" qualifiers="const">
- <return type="int" />
- <param index="0" name="caption" type="String" />
- <description>
- Returns the input index which corresponds to [param caption]. If not found, returns [code]-1[/code].
- </description>
- </method>
- <method name="get_input_caption" qualifiers="const">
- <return type="String" />
- <param index="0" name="input" type="int" />
- <description>
- Returns the name of the input at the given [param input] index. This name is displayed in the editor next to the node input.
- </description>
- </method>
<method name="is_input_set_as_auto_advance" qualifiers="const">
<return type="bool" />
<param index="0" name="input" type="int" />
@@ -41,18 +27,10 @@
Enables or disables auto-advance for the given [param input] index. If enabled, state changes to the next input after playing the animation once. If enabled for the last input state, it loops to the first.
</description>
</method>
- <method name="set_input_caption">
- <return type="void" />
- <param index="0" name="input" type="int" />
- <param index="1" name="caption" type="String" />
- <description>
- Sets the name of the input at the given [param input] index. This name is displayed in the editor next to the node input.
- </description>
- </method>
</methods>
<members>
- <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. The maximum is [code]31[/code].
+ <member name="input_count" type="int" setter="set_input_count" getter="get_input_count" default="0">
+ The number of enabled input ports for this node.
</member>
<member name="reset" type="bool" setter="set_reset" getter="is_reset" default="true">
If [code]true[/code], the destination animation is played back from the beginning when switched.