GraphNode

Inherits: Container < Control < CanvasItem < Node < Object

A GraphNode is a container with potentially several input and output slots allowing connections between GraphNodes. Slots can have different, incompatible types.

Description

A GraphNode is a container. Each GraphNode can have several input and output slots, sometimes referred to as ports, allowing connections between GraphNodes. To add a slot to GraphNode, add any Control-derived child node to it.

After adding at least one child to GraphNode new sections will be automatically created in the Inspector called ‘Slot’. When ‘Slot’ is expanded you will see list with index number for each slot. You can click on each of them to expand further.

In the Inspector you can enable (show) or disable (hide) slots. By default all slots are disabled so you may not see any slots on your GraphNode initially. You can assign a type to each slot. Only slots of the same type will be able to connect to each other. You can also assign colors to slots. A tuple of input and output slots is defined for each GUI element included in the GraphNode. Input connections are on the left and output connections are on the right side of GraphNode. Only enabled slots are counted as connections.

Properties

boolcommentfalse
Vector2offsetVector2( 0, 0 )
Overlayoverlay0
boolresizablefalse
boolselectedfalse
boolshow_closefalse
Stringtitle“”

Methods

voidclear_all_slots ( )
voidclear_slot ( int idx )
Colorget_connection_input_color ( int idx )
intget_connection_input_count ( )
Vector2get_connection_input_position ( int idx )
intget_connection_input_type ( int idx )
Colorget_connection_output_color ( int idx )
intget_connection_output_count ( )
Vector2get_connection_output_position ( int idx )
intget_connection_output_type ( int idx )
Colorget_slot_color_left ( int idx ) const
Colorget_slot_color_right ( int idx ) const
intget_slot_type_left ( int idx ) const
intget_slot_type_right ( int idx ) const
boolis_slot_enabled_left ( int idx ) const
boolis_slot_enabled_right ( int idx ) const
voidset_slot ( int idx, bool enable_left, int type_left, Color color_left, bool enable_right, int type_right, Color color_right, Texture custom_left=null, Texture custom_right=null )

Theme Properties

StyleBoxbreakpoint 
Textureclose 
Colorclose_colorColor( 0, 0, 0, 1 )
intclose_offset18
StyleBoxcomment 
StyleBoxcommentfocus 
StyleBoxdefaultfocus 
StyleBoxdefaultframe 
StyleBoxframe 
Textureport 
intport_offset3
StyleBoxposition 
Textureresizer 
Colorresizer_colorColor( 0, 0, 0, 1 )
StyleBoxselectedframe 
intseparation1
Colortitle_colorColor( 0, 0, 0, 1 )
Fonttitle_font 
inttitle_offset20

Signals

  • close_request ( )

Emitted when the GraphNode is requested to be closed. Happens on clicking the close button (see show_close).


Emitted when the GraphNode is dragged.


  • offset_changed ( )

Emitted when the GraphNode is moved.


  • raise_request ( )

Emitted when the GraphNode is requested to be displayed over other ones. Happens on focusing (clicking into) the GraphNode.


  • resize_request ( Vector2 new_minsize )

Emitted when the GraphNode is requested to be resized. Happens on dragging the resizer handle (see resizable).

Enumerations

enum Overlay:

  • OVERLAY_DISABLED = 0 —- No overlay is shown.
  • OVERLAY_BREAKPOINT = 1 —- Show overlay set in the breakpoint theme property.
  • OVERLAY_POSITION = 2 —- Show overlay set in the position theme property.

Property Descriptions

Defaultfalse
Setterset_comment(value)
Getteris_comment()

If true, the GraphNode is a comment node.


DefaultVector2( 0, 0 )
Setterset_offset(value)
Getterget_offset()

The offset of the GraphNode, relative to the scroll offset of the GraphEdit.

Note: You cannot use position directly, as GraphEdit is a Container.


Default0
Setterset_overlay(value)
Getterget_overlay()

Sets the overlay shown above the GraphNode. See Overlay.


Defaultfalse
Setterset_resizable(value)
Getteris_resizable()

If true, the user can resize the GraphNode.

Note: Dragging the handle will only emit the resize_request signal, the GraphNode needs to be resized manually.


Defaultfalse
Setterset_selected(value)
Getteris_selected()

If true, the GraphNode is selected.


Defaultfalse
Setterset_show_close_button(value)
Getteris_close_button_visible()

If true, the close button will be visible.

Note: Pressing it will only emit the close_request signal, the GraphNode needs to be removed manually.


Default“”
Setterset_title(value)
Getterget_title()

The text displayed in the GraphNode’s title bar.

Method Descriptions

  • void clear_all_slots ( )

Disables all input and output slots of the GraphNode.


  • void clear_slot ( int idx )

Disables input and output slot whose index is idx.


  • Color get_connection_input_color ( int idx )

Returns the color of the input connection idx.


  • int get_connection_input_count ( )

Returns the number of enabled input slots (connections) to the GraphNode.


  • Vector2 get_connection_input_position ( int idx )

Returns the position of the input connection idx.


  • int get_connection_input_type ( int idx )

Returns the type of the input connection idx.


  • Color get_connection_output_color ( int idx )

Returns the color of the output connection idx.


  • int get_connection_output_count ( )

Returns the number of enabled output slots (connections) of the GraphNode.


  • Vector2 get_connection_output_position ( int idx )

Returns the position of the output connection idx.


  • int get_connection_output_type ( int idx )

Returns the type of the output connection idx.


  • Color get_slot_color_left ( int idx ) const

Returns the color set to idx left (input) slot.


  • Color get_slot_color_right ( int idx ) const

Returns the color set to idx right (output) slot.


  • int get_slot_type_left ( int idx ) const

Returns the (integer) type of left (input) idx slot.


  • int get_slot_type_right ( int idx ) const

Returns the (integer) type of right (output) idx slot.


  • bool is_slot_enabled_left ( int idx ) const

Returns true if left (input) slot idx is enabled, false otherwise.


  • bool is_slot_enabled_right ( int idx ) const

Returns true if right (output) slot idx is enabled, false otherwise.


Sets properties of the slot with ID idx.

If enable_left/right, a port will appear and the slot will be able to be connected from this side.

type_left/right is an arbitrary type of the port. Only ports with the same type values can be connected.

color_left/right is the tint of the port’s icon on this side.

custom_left/right is a custom texture for this side’s port.

Note: This method only sets properties of the slot. To create the slot, add a Control-derived child to the GraphNode.