VisualShaderNodeCustom

    Virtual class to define custom s for use in the Visual Shader Editor.

    By inheriting this class you can create a custom VisualShader script addon which will be automatically added to the Visual Shader Editor. The ‘s behavior is defined by overriding the provided virtual methods.

    In order for the node to be registered as an editor addon, you must use the keyword and provide a class_name for your custom script. For example:

    Override this method to define the category of the associated custom node in the Visual Shader Editor’s members dialog.

    Defining this method is optional. If not overridden, the node will be filed under the “Custom” category.


    • _get_code ( Array input_vars, output_vars, int mode, type ) virtual

    Override this method to define the actual shader code of the associated custom node. The shader code should be returned as a string, which can have multiple lines (the """ multiline string construct can be used for convenience).

    The input_vars and output_vars arrays contain the string names of the various input and output variables, as defined by and _get_output_* virtual methods in this class.

    The output ports can be assigned values in the shader code. For example, return output_vars[0] + " = " + input_vars[0] + ";".

    You can customize the generated code based on the shader mode (see Mode) and/or type (see ).

    Defining this method is required.


    • String _get_description ( ) virtual

    Defining this method is optional.


    • _get_global_code ( int mode ) virtual

    Override this method to add shader code on top of the global shader, to define your own standard library of reusable methods, varyings, constants, uniforms, etc. The shader code should be returned as a string, which can have multiple lines (the multiline string construct can be used for convenience).

    Be careful with this functionality as it can cause name conflicts with other custom nodes, so be sure to give the defined entities unique names.

    You can customize the generated code based on the shader mode (see ).

    Defining this method is optional.


    • int _get_input_port_count ( ) virtual

    Override this method to define the amount of input ports of the associated custom node.

    Defining this method is required. If not overridden, the node has no input ports.


    • _get_input_port_name ( int port ) virtual

    Override this method to define the names of input ports of the associated custom node. The names are used both for the input slots in the editor and as identifiers in the shader code, and are passed in the input_vars array in .

    Defining this method is optional, but recommended. If not overridden, input ports are named as "in" + str(port).


    Override this method to define the returned type of each input port of the associated custom node (see PortType for possible types).


    • _get_name ( ) virtual

    Override this method to define the name of the associated custom node in the Visual Shader Editor’s members dialog and graph.

    Defining this method is optional, but recommended. If not overridden, the node will be named as “Unnamed”.


    • int _get_output_port_count ( ) virtual

    Override this method to define the amount of output ports of the associated custom node.

    Defining this method is required. If not overridden, the node has no output ports.


    • _get_output_port_name ( int port ) virtual

    Override this method to define the names of output ports of the associated custom node. The names are used both for the output slots in the editor and as identifiers in the shader code, and are passed in the output_vars array in .

    Defining this method is optional, but recommended. If not overridden, output ports are named as .


    • int _get_output_port_type ( port ) virtual

    Override this method to define the returned type of each output port of the associated custom node (see PortType for possible types).

    Defining this method is optional, but recommended. If not overridden, output ports will return the type.


    • int _get_return_icon_type ( ) virtual

    Override this method to define the return icon of the associated custom node in the Visual Shader Editor’s members dialog.

    Defining this method is optional. If not overridden, no return icon is shown.


    Defining this method is optional. If not overridden, the node will be filed under the root of the main category (see ).