2018-07-26 11:56:21 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2021-04-26 13:14:51 +02:00
<class name= "VisualShaderNode" inherits= "Resource" version= "3.4" >
2018-07-26 11:56:21 +02:00
<brief_description >
2020-03-03 19:21:21 +01:00
Base class for nodes in a visual shader graph.
2018-07-26 11:56:21 +02:00
</brief_description>
<description >
2020-10-12 19:37:50 +02:00
Visual shader graphs consist of various nodes. Each node in the graph is a separate object and they are represented as a rectangular boxes with title and a set of properties. Each node has also connection ports that allow to connect it to another nodes and control the flow of the shader.
2018-07-26 11:56:21 +02:00
</description>
<tutorials >
2021-08-12 16:58:38 +02:00
<link > https://docs.godotengine.org/en/3.4/tutorials/shading/visual_shaders.html</link>
2018-07-26 11:56:21 +02:00
</tutorials>
<methods >
2020-01-23 11:14:14 +01:00
<method name= "get_default_input_values" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "Array" />
2020-01-23 11:14:14 +01:00
<description >
2020-01-23 08:31:45 +01:00
Returns an [Array] containing default values for all of the input ports of the node in the form [code][index0, value0, index1, value1, ...][/code].
2020-01-23 11:14:14 +01:00
</description>
</method>
2018-07-26 11:56:21 +02:00
<method name= "get_input_port_default_value" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "Variant" />
<argument index= "0" name= "port" type= "int" />
2018-07-26 11:56:21 +02:00
<description >
2020-01-23 08:31:45 +01:00
Returns the default value of the input [code]port[/code].
2018-07-26 11:56:21 +02:00
</description>
</method>
2020-01-23 11:14:14 +01:00
<method name= "set_default_input_values" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "values" type= "Array" />
2020-01-23 11:14:14 +01:00
<description >
2020-01-23 08:31:45 +01:00
Sets the default input ports values using an [Array] of the form [code][index0, value0, index1, value1, ...][/code]. For example: [code][0, Vector3(0, 0, 0), 1, Vector3(0, 0, 0)][/code].
2020-01-23 11:14:14 +01:00
</description>
</method>
2018-07-26 11:56:21 +02:00
<method name= "set_input_port_default_value" >
2021-07-30 15:28:05 +02:00
<return type= "void" />
<argument index= "0" name= "port" type= "int" />
<argument index= "1" name= "value" type= "Variant" />
2018-07-26 11:56:21 +02:00
<description >
2020-01-23 08:31:45 +01:00
Sets the default value for the selected input [code]port[/code].
2018-07-26 11:56:21 +02:00
</description>
</method>
</methods>
<members >
2019-06-29 12:38:01 +02:00
<member name= "output_port_for_preview" type= "int" setter= "set_output_port_for_preview" getter= "get_output_port_for_preview" default= "-1" >
2020-01-23 08:31:45 +01:00
Sets the output port index which will be showed for preview. If set to [code]-1[/code] no port will be open for preview.
2018-07-26 11:56:21 +02:00
</member>
</members>
<signals >
<signal name= "editor_refresh_request" >
<description >
2020-01-23 08:31:45 +01:00
Emitted when the node requests an editor refresh. Currently called only in setter of [member VisualShaderNodeTexture.source], [VisualShaderNodeTexture], and [VisualShaderNodeCubeMap] (and their derivatives).
2018-07-26 11:56:21 +02:00
</description>
</signal>
</signals>
<constants >
2019-08-09 21:51:48 +02:00
<constant name= "PORT_TYPE_SCALAR" value= "0" enum= "PortType" >
Floating-point scalar. Translated to [code]float[/code] type in shader code.
</constant>
<constant name= "PORT_TYPE_VECTOR" value= "1" enum= "PortType" >
3D vector of floating-point values. Translated to [code]vec3[/code] type in shader code.
</constant>
<constant name= "PORT_TYPE_BOOLEAN" value= "2" enum= "PortType" >
Boolean type. Translated to [code]bool[/code] type in shader code.
</constant>
<constant name= "PORT_TYPE_TRANSFORM" value= "3" enum= "PortType" >
Transform type. Translated to [code]mat4[/code] type in shader code.
</constant>
2019-10-01 10:51:50 +02:00
<constant name= "PORT_TYPE_SAMPLER" value= "4" enum= "PortType" >
Sampler type. Translated to reference of sampler uniform in shader code. Can only be used for input ports in non-uniform nodes.
</constant>
<constant name= "PORT_TYPE_MAX" value= "5" enum= "PortType" >
Represents the size of the [enum PortType] enum.
2019-08-09 21:51:48 +02:00
</constant>
2018-07-26 11:56:21 +02:00
</constants>
</class>