2018-07-26 11:56:21 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2022-02-14 14:18:53 +01:00
<class name= "AnimationNodeBlendTree" inherits= "AnimationRootNode" version= "4.0" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation= "../class.xsd" >
2018-07-26 11:56:21 +02:00
<brief_description >
2020-03-03 19:21:21 +01:00
[AnimationTree] node resource that contains many blend type nodes.
2018-07-26 11:56:21 +02:00
</brief_description>
<description >
2022-03-21 11:02:40 +01:00
This node may contain a sub-tree of any other blend type nodes, such as [AnimationNodeTransition], [AnimationNodeBlend2], [AnimationNodeBlend3], [AnimationNodeOneShot], etc. This is one of the most commonly used roots.
An [AnimationNodeOutput] node named [code]output[/code] is created by default.
2018-07-26 11:56:21 +02:00
</description>
<tutorials >
2021-11-15 10:43:07 +01:00
<link title= "AnimationTree" > $DOCS_URL/tutorials/animation/animation_tree.html</link>
2018-07-26 11:56:21 +02:00
</tutorials>
<methods >
<method name= "add_node" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
2022-08-06 20:11:48 +02:00
<param index= "0" name= "name" type= "StringName" />
<param index= "1" name= "node" type= "AnimationNode" />
<param index= "2" name= "position" type= "Vector2" default= "Vector2(0, 0)" />
2018-07-26 11:56:21 +02:00
<description >
2020-03-03 19:21:21 +01:00
Adds an [AnimationNode] at the given [code]position[/code]. The [code]name[/code] is used to identify the created sub-node later.
2018-07-26 11:56:21 +02:00
</description>
</method>
<method name= "connect_node" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
2022-08-06 20:11:48 +02:00
<param index= "0" name= "input_node" type= "StringName" />
<param index= "1" name= "input_index" type= "int" />
<param index= "2" name= "output_node" type= "StringName" />
2018-07-26 11:56:21 +02:00
<description >
2020-03-03 19:21:21 +01:00
Connects the output of an [AnimationNode] as input for another [AnimationNode], at the input port specified by [code]input_index[/code].
2018-07-26 11:56:21 +02:00
</description>
</method>
<method name= "disconnect_node" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
2022-08-06 20:11:48 +02:00
<param index= "0" name= "input_node" type= "StringName" />
<param index= "1" name= "input_index" type= "int" />
2018-07-26 11:56:21 +02:00
<description >
2020-03-03 19:21:21 +01:00
Disconnects the node connected to the specified input.
2018-07-26 11:56:21 +02:00
</description>
</method>
<method name= "get_node" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "AnimationNode" />
2022-08-06 20:11:48 +02:00
<param index= "0" name= "name" type= "StringName" />
2018-07-26 11:56:21 +02:00
<description >
2020-03-03 19:21:21 +01:00
Returns the sub-node with the specified [code]name[/code].
2018-07-26 11:56:21 +02:00
</description>
</method>
2018-08-21 00:35:30 +02:00
<method name= "get_node_position" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "Vector2" />
2022-08-06 20:11:48 +02:00
<param index= "0" name= "name" type= "StringName" />
2018-08-21 00:35:30 +02:00
<description >
2020-03-03 19:21:21 +01:00
Returns the position of the sub-node with the specified [code]name[/code].
2018-08-21 00:35:30 +02:00
</description>
</method>
2018-07-26 11:56:21 +02:00
<method name= "has_node" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "bool" />
2022-08-06 20:11:48 +02:00
<param index= "0" name= "name" type= "StringName" />
2018-07-26 11:56:21 +02:00
<description >
2020-03-03 19:21:21 +01:00
Returns [code]true[/code] if a sub-node with specified [code]name[/code] exists.
2018-07-26 11:56:21 +02:00
</description>
</method>
<method name= "remove_node" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
2022-08-06 20:11:48 +02:00
<param index= "0" name= "name" type= "StringName" />
2018-07-26 11:56:21 +02:00
<description >
2020-03-03 19:21:21 +01:00
Removes a sub-node.
2018-07-26 11:56:21 +02:00
</description>
</method>
<method name= "rename_node" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
2022-08-06 20:11:48 +02:00
<param index= "0" name= "name" type= "StringName" />
<param index= "1" name= "new_name" type= "StringName" />
2018-07-26 11:56:21 +02:00
<description >
2020-03-03 19:21:21 +01:00
Changes the name of a sub-node.
2018-07-26 11:56:21 +02:00
</description>
</method>
2018-08-21 00:35:30 +02:00
<method name= "set_node_position" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
2022-08-06 20:11:48 +02:00
<param index= "0" name= "name" type= "StringName" />
<param index= "1" name= "position" type= "Vector2" />
2018-08-21 00:35:30 +02:00
<description >
2020-03-03 19:21:21 +01:00
Modifies the position of a sub-node.
2018-08-21 00:35:30 +02:00
</description>
</method>
2018-07-26 11:56:21 +02:00
</methods>
<members >
2019-09-24 19:45:03 +02:00
<member name= "graph_offset" type= "Vector2" setter= "set_graph_offset" getter= "get_graph_offset" default= "Vector2(0, 0)" >
2020-03-03 19:21:21 +01:00
The global offset of all sub-nodes.
2018-07-26 11:56:21 +02:00
</member>
</members>
<constants >
<constant name= "CONNECTION_OK" value= "0" >
2020-03-03 19:21:21 +01:00
The connection was successful.
2018-07-26 11:56:21 +02:00
</constant>
<constant name= "CONNECTION_ERROR_NO_INPUT" value= "1" >
2020-03-03 19:21:21 +01:00
The input node is [code]null[/code].
2018-07-26 11:56:21 +02:00
</constant>
<constant name= "CONNECTION_ERROR_NO_INPUT_INDEX" value= "2" >
2020-03-03 19:21:21 +01:00
The specified input port is out of range.
2018-07-26 11:56:21 +02:00
</constant>
<constant name= "CONNECTION_ERROR_NO_OUTPUT" value= "3" >
2020-03-03 19:21:21 +01:00
The output node is [code]null[/code].
2018-07-26 11:56:21 +02:00
</constant>
<constant name= "CONNECTION_ERROR_SAME_NODE" value= "4" >
2020-03-03 19:21:21 +01:00
Input and output nodes are the same.
2018-07-26 11:56:21 +02:00
</constant>
<constant name= "CONNECTION_ERROR_CONNECTION_EXISTS" value= "5" >
2020-03-03 19:21:21 +01:00
The specified connection already exists.
2018-07-26 11:56:21 +02:00
</constant>
</constants>
</class>