|
@@ -1,8 +1,10 @@
|
|
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<class name="VisualShaderNodeGroupBase" inherits="VisualShaderNode" version="3.2">
|
|
<class name="VisualShaderNodeGroupBase" inherits="VisualShaderNode" version="3.2">
|
|
<brief_description>
|
|
<brief_description>
|
|
|
|
+ Base class for a family of nodes with variable amount of input and output ports within the visual shader graph.
|
|
</brief_description>
|
|
</brief_description>
|
|
<description>
|
|
<description>
|
|
|
|
+ Currently, has no direct usage, use the derived classes instead.
|
|
</description>
|
|
</description>
|
|
<tutorials>
|
|
<tutorials>
|
|
</tutorials>
|
|
</tutorials>
|
|
@@ -17,6 +19,7 @@
|
|
<argument index="2" name="name" type="String">
|
|
<argument index="2" name="name" type="String">
|
|
</argument>
|
|
</argument>
|
|
<description>
|
|
<description>
|
|
|
|
+ Adds an input port with the specified [code]type[/code] (see [enum VisualShaderNode.PortType]) and [code]name[/code].
|
|
</description>
|
|
</description>
|
|
</method>
|
|
</method>
|
|
<method name="add_output_port">
|
|
<method name="add_output_port">
|
|
@@ -29,54 +32,63 @@
|
|
<argument index="2" name="name" type="String">
|
|
<argument index="2" name="name" type="String">
|
|
</argument>
|
|
</argument>
|
|
<description>
|
|
<description>
|
|
|
|
+ Adds an output port with the specified [code]type[/code] (see [enum VisualShaderNode.PortType]) and [code]name[/code].
|
|
</description>
|
|
</description>
|
|
</method>
|
|
</method>
|
|
<method name="clear_input_ports">
|
|
<method name="clear_input_ports">
|
|
<return type="void">
|
|
<return type="void">
|
|
</return>
|
|
</return>
|
|
<description>
|
|
<description>
|
|
|
|
+ Removes all previously specified input ports.
|
|
</description>
|
|
</description>
|
|
</method>
|
|
</method>
|
|
<method name="clear_output_ports">
|
|
<method name="clear_output_ports">
|
|
<return type="void">
|
|
<return type="void">
|
|
</return>
|
|
</return>
|
|
<description>
|
|
<description>
|
|
|
|
+ Removes all previously specified output ports.
|
|
</description>
|
|
</description>
|
|
</method>
|
|
</method>
|
|
<method name="get_free_input_port_id" qualifiers="const">
|
|
<method name="get_free_input_port_id" qualifiers="const">
|
|
<return type="int">
|
|
<return type="int">
|
|
</return>
|
|
</return>
|
|
<description>
|
|
<description>
|
|
|
|
+ Returns a free input port ID which can be used in [method add_input_port].
|
|
</description>
|
|
</description>
|
|
</method>
|
|
</method>
|
|
<method name="get_free_output_port_id" qualifiers="const">
|
|
<method name="get_free_output_port_id" qualifiers="const">
|
|
<return type="int">
|
|
<return type="int">
|
|
</return>
|
|
</return>
|
|
<description>
|
|
<description>
|
|
|
|
+ Returns a free output port ID which can be used in [method add_output_port].
|
|
</description>
|
|
</description>
|
|
</method>
|
|
</method>
|
|
<method name="get_input_port_count" qualifiers="const">
|
|
<method name="get_input_port_count" qualifiers="const">
|
|
<return type="int">
|
|
<return type="int">
|
|
</return>
|
|
</return>
|
|
<description>
|
|
<description>
|
|
|
|
+ Returns the number of input ports in use. Alternative for [method get_free_input_port_id].
|
|
</description>
|
|
</description>
|
|
</method>
|
|
</method>
|
|
<method name="get_inputs" qualifiers="const">
|
|
<method name="get_inputs" qualifiers="const">
|
|
<return type="String">
|
|
<return type="String">
|
|
</return>
|
|
</return>
|
|
<description>
|
|
<description>
|
|
|
|
+ Returns a [String] description of the input ports as as colon-separated list using the format [code]id,type,name;[/code] (see [method add_input_port]).
|
|
</description>
|
|
</description>
|
|
</method>
|
|
</method>
|
|
<method name="get_output_port_count" qualifiers="const">
|
|
<method name="get_output_port_count" qualifiers="const">
|
|
<return type="int">
|
|
<return type="int">
|
|
</return>
|
|
</return>
|
|
<description>
|
|
<description>
|
|
|
|
+ Returns the number of output ports in use. Alternative for [method get_free_output_port_id].
|
|
</description>
|
|
</description>
|
|
</method>
|
|
</method>
|
|
<method name="get_outputs" qualifiers="const">
|
|
<method name="get_outputs" qualifiers="const">
|
|
<return type="String">
|
|
<return type="String">
|
|
</return>
|
|
</return>
|
|
<description>
|
|
<description>
|
|
|
|
+ Returns a [String] description of the output ports as as colon-separated list using the format [code]id,type,name;[/code] (see [method add_output_port]).
|
|
</description>
|
|
</description>
|
|
</method>
|
|
</method>
|
|
<method name="has_input_port" qualifiers="const">
|
|
<method name="has_input_port" qualifiers="const">
|
|
@@ -85,6 +97,7 @@
|
|
<argument index="0" name="id" type="int">
|
|
<argument index="0" name="id" type="int">
|
|
</argument>
|
|
</argument>
|
|
<description>
|
|
<description>
|
|
|
|
+ Returns [code]true[/code] if the specified input port exists.
|
|
</description>
|
|
</description>
|
|
</method>
|
|
</method>
|
|
<method name="has_output_port" qualifiers="const">
|
|
<method name="has_output_port" qualifiers="const">
|
|
@@ -93,6 +106,7 @@
|
|
<argument index="0" name="id" type="int">
|
|
<argument index="0" name="id" type="int">
|
|
</argument>
|
|
</argument>
|
|
<description>
|
|
<description>
|
|
|
|
+ Returns [code]true[/code] if the specified output port exists.
|
|
</description>
|
|
</description>
|
|
</method>
|
|
</method>
|
|
<method name="is_valid_port_name" qualifiers="const">
|
|
<method name="is_valid_port_name" qualifiers="const">
|
|
@@ -101,6 +115,7 @@
|
|
<argument index="0" name="name" type="String">
|
|
<argument index="0" name="name" type="String">
|
|
</argument>
|
|
</argument>
|
|
<description>
|
|
<description>
|
|
|
|
+ Returns [code]true[/code] if the specified port name does not override an existed port name and is valid within the shader.
|
|
</description>
|
|
</description>
|
|
</method>
|
|
</method>
|
|
<method name="remove_input_port">
|
|
<method name="remove_input_port">
|
|
@@ -109,6 +124,7 @@
|
|
<argument index="0" name="id" type="int">
|
|
<argument index="0" name="id" type="int">
|
|
</argument>
|
|
</argument>
|
|
<description>
|
|
<description>
|
|
|
|
+ Removes the specified input port.
|
|
</description>
|
|
</description>
|
|
</method>
|
|
</method>
|
|
<method name="remove_output_port">
|
|
<method name="remove_output_port">
|
|
@@ -117,6 +133,7 @@
|
|
<argument index="0" name="id" type="int">
|
|
<argument index="0" name="id" type="int">
|
|
</argument>
|
|
</argument>
|
|
<description>
|
|
<description>
|
|
|
|
+ Removes the specified output port.
|
|
</description>
|
|
</description>
|
|
</method>
|
|
</method>
|
|
<method name="set_input_port_name">
|
|
<method name="set_input_port_name">
|
|
@@ -127,6 +144,7 @@
|
|
<argument index="1" name="name" type="String">
|
|
<argument index="1" name="name" type="String">
|
|
</argument>
|
|
</argument>
|
|
<description>
|
|
<description>
|
|
|
|
+ Renames the specified input port.
|
|
</description>
|
|
</description>
|
|
</method>
|
|
</method>
|
|
<method name="set_input_port_type">
|
|
<method name="set_input_port_type">
|
|
@@ -137,6 +155,7 @@
|
|
<argument index="1" name="type" type="int">
|
|
<argument index="1" name="type" type="int">
|
|
</argument>
|
|
</argument>
|
|
<description>
|
|
<description>
|
|
|
|
+ Sets the specified input port's type (see [enum VisualShaderNode.PortType]).
|
|
</description>
|
|
</description>
|
|
</method>
|
|
</method>
|
|
<method name="set_inputs">
|
|
<method name="set_inputs">
|
|
@@ -145,6 +164,7 @@
|
|
<argument index="0" name="inputs" type="String">
|
|
<argument index="0" name="inputs" type="String">
|
|
</argument>
|
|
</argument>
|
|
<description>
|
|
<description>
|
|
|
|
+ Defines all input ports using a [String] formatted as a colon-separated list: [code]id,type,name;[/code] (see [method add_input_port]).
|
|
</description>
|
|
</description>
|
|
</method>
|
|
</method>
|
|
<method name="set_output_port_name">
|
|
<method name="set_output_port_name">
|
|
@@ -155,6 +175,7 @@
|
|
<argument index="1" name="name" type="String">
|
|
<argument index="1" name="name" type="String">
|
|
</argument>
|
|
</argument>
|
|
<description>
|
|
<description>
|
|
|
|
+ Renames the specified output port.
|
|
</description>
|
|
</description>
|
|
</method>
|
|
</method>
|
|
<method name="set_output_port_type">
|
|
<method name="set_output_port_type">
|
|
@@ -165,6 +186,7 @@
|
|
<argument index="1" name="type" type="int">
|
|
<argument index="1" name="type" type="int">
|
|
</argument>
|
|
</argument>
|
|
<description>
|
|
<description>
|
|
|
|
+ Sets the specified output port's type (see [enum VisualShaderNode.PortType]).
|
|
</description>
|
|
</description>
|
|
</method>
|
|
</method>
|
|
<method name="set_outputs">
|
|
<method name="set_outputs">
|
|
@@ -173,11 +195,13 @@
|
|
<argument index="0" name="outputs" type="String">
|
|
<argument index="0" name="outputs" type="String">
|
|
</argument>
|
|
</argument>
|
|
<description>
|
|
<description>
|
|
|
|
+ Defines all output ports using a [String] formatted as a colon-separated list: [code]id,type,name;[/code] (see [method add_output_port]).
|
|
</description>
|
|
</description>
|
|
</method>
|
|
</method>
|
|
</methods>
|
|
</methods>
|
|
<members>
|
|
<members>
|
|
<member name="size" type="Vector2" setter="set_size" getter="get_size" default="Vector2( 0, 0 )">
|
|
<member name="size" type="Vector2" setter="set_size" getter="get_size" default="Vector2( 0, 0 )">
|
|
|
|
+ The size of the node in the visual shader graph.
|
|
</member>
|
|
</member>
|
|
</members>
|
|
</members>
|
|
<constants>
|
|
<constants>
|