Attention: Here be dragons
This is the latest
(unstable) version of this documentation, which may document features
not available in or compatible with released stable versions of Godot.
Checking the stable version of the documentation...
VisualScriptLists¶
Inherits: VisualScriptNode < Resource < Reference < Object
Inherited By: VisualScriptComposeArray
Una clase virtual de Visual Script para nodos editables en gráficos.
Descripción¶
A Visual Script virtual class that defines the shape and the default behavior of the nodes that have to be in-graph editable nodes.
Métodos¶
void |
add_input_data_port ( Variant.Type type, String name, int index ) |
void |
add_output_data_port ( Variant.Type type, String name, int index ) |
void |
remove_input_data_port ( int index ) |
void |
remove_output_data_port ( int index ) |
void |
set_input_data_port_name ( int index, String name ) |
void |
set_input_data_port_type ( int index, Variant.Type type ) |
void |
set_output_data_port_name ( int index, String name ) |
void |
set_output_data_port_type ( int index, Variant.Type type ) |
Descripciones de Métodos¶
void add_input_data_port ( Variant.Type type, String name, int index )
Adds an input port to the Visual Script node.
void add_output_data_port ( Variant.Type type, String name, int index )
Adds an output port to the Visual Script node.
void remove_input_data_port ( int index )
Removes an input port from the Visual Script node.
void remove_output_data_port ( int index )
Removes an output port from the Visual Script node.
Sets the name of an input port.
void set_input_data_port_type ( int index, Variant.Type type )
Sets the type of an input port.
Sets the name of an output port.
void set_output_data_port_type ( int index, Variant.Type type )
Sets the type of an output port.