GraphEdit

    GraphEdit is an area capable of showing various GraphNodes. It manages connection events between them.

    GraphEdit manages the showing of GraphNodes it contains, as well as connections and disconnections between them. Signals are sent for each of these two events. Disconnection between GraphNode slots is disabled by default.

    It is greatly advised to enable low-processor usage mode (see ) when using GraphEdits.

    Properties

    voidadd_valid_connection_type ( from_type, int to_type )
    void ( int type )
    void ( int type )
    void ( )
    Error ( String from, from_port, String to, to_port )
    voiddisconnect_node ( from, int from_port, to, int to_port )
    get_connection_list ( ) const
    get_zoom_hbox ( )
    is_node_connected ( from, int from_port, to, int to_port )
    is_valid_connection_type ( from_type, int to_type ) const
    void ( int from_type, to_type )
    voidremove_valid_left_disconnect_type ( type )
    voidremove_valid_right_disconnect_type ( type )
    voidset_connection_activity ( from, int from_port, to, int to_port, amount )
    voidset_selected ( node )

    Theme Properties

    ColoractivityColor( 1, 1, 1, 1 )
    bezier_len_neg160
    intbezier_len_pos80
    bg 
    Colorgrid_majorColor( 1, 1, 1, 0.2 )
    grid_minorColor( 1, 1, 1, 0.05 )
    Textureminimap 
    minus 
    Texturemore 
    port_grab_distance_horizontal48
    intport_grab_distance_vertical6
    reset 
    Colorselection_fillColor( 1, 1, 1, 0.3 )
    selection_strokeColor( 1, 1, 1, 0.8 )
    Texturesnap 
    • _begin_node_move ( )

    Emitted at the beginning of a GraphNode movement.


    • _end_node_move ( )

    Emitted at the end of a GraphNode movement.


    • connection_from_empty ( to, int to_slot, release_position )

    Emitted when user dragging connection from input port into empty space of the graph.


    • connection_request ( String from, from_slot, String to, to_slot )

    Emitted to the GraphEdit when the connection between the from_slot slot of the from GraphNode and the to_slot slot of the to GraphNode is attempted to be created.


    • connection_to_empty ( String from, from_slot, Vector2 release_position )

    Emitted when user dragging connection from output port into empty space of the graph.


    • copy_nodes_request ( )

    Emitted when the user presses Ctrl + C.


    • delete_nodes_request ( )

    Emitted when a GraphNode is attempted to be removed from the GraphEdit.


    Emitted to the GraphEdit when the connection between from_slot slot of from GraphNode and slot of to GraphNode is attempted to be removed.


    • duplicate_nodes_request ( )

    Emitted when a GraphNode is attempted to be duplicated in the GraphEdit.


    • node_selected ( node )

    • node_unselected ( Node node )

    • paste_nodes_request ( )

    Emitted when the user presses Ctrl + V.


    • popup_request ( position )

    Emitted when a popup is requested. Happens on right-clicking in the GraphEdit. position is the position of the mouse pointer when the signal is sent.


    • scroll_offset_changed ( Vector2 ofs )

    Emitted when the scroll offset is changed by the user. It will not be emitted when changed in code.

    Property Descriptions

    • minimap_enabled

    If true, the minimap is visible.


    Default0.65
    Setterset_minimap_opacity(value)
    Getterget_minimap_opacity()

    The opacity of the minimap rectangle.


    • minimap_size
    DefaultVector2( 240, 160 )
    Setterset_minimap_size(value)
    Getterget_minimap_size()

    The size of the minimap rectangle. The map itself is based on the size of the grid area and is scaled to fit this rectangle.


    • bool right_disconnects

    If true, enables disconnection of existing connections in the GraphEdit by dragging the right end.


    • scroll_offset
    DefaultVector2( 0, 0 )
    Setterset_scroll_ofs(value)
    Getterget_scroll_ofs()

    The scroll offset.


    • int snap_distance
    Default20
    Setterset_snap(value)
    Getterget_snap()

    The snapping distance in pixels.


    • use_snap

    If true, enables snapping.


    Default1.0
    Setterset_zoom(value)
    Getterget_zoom()

    The current zoom value.

    Makes possible the connection between two different slot types. The type is defined with the method.


    • void add_valid_left_disconnect_type ( int type )

    • void add_valid_right_disconnect_type ( type )

    Makes possible to disconnect nodes when dragging from the slot at the right if it has the specified type.


    • void clear_connections ( )

    Removes all connections between nodes.


    • Error connect_node ( from, int from_port, to, int to_port )

    Create a connection between the from_port slot of the from GraphNode and the slot of the to GraphNode. If the connection already exists, no connection is created.


    • void disconnect_node ( from, int from_port, to, int to_port )

    Removes the connection between the from_port slot of the from GraphNode and the to_port slot of the to GraphNode. If the connection does not exist, no connection is removed.


    • get_connection_list ( ) const

    Returns an Array containing the list of connections. A connection consists in a structure of the form { from_port: 0, from: "GraphNode name 0", to_port: 1, to: "GraphNode name 1" }.


    Gets the that contains the zooming and grid snap controls in the top left of the graph.

    Warning: The intended usage of this function is to allow you to reposition or add your own custom controls to the container. This is an internal control and as such should not be freed. If you wish to hide this or any of it’s children use their CanvasItem.visible property instead.


    • is_node_connected ( String from, from_port, String to, to_port )

    Returns true if the from_port slot of the from GraphNode is connected to the to_port slot of the to GraphNode.


    • bool is_valid_connection_type ( from_type, int to_type ) const

    Returns whether it’s possible to connect slots of the specified types.


    • void remove_valid_connection_type ( from_type, int to_type )

    Makes it not possible to connect between two different slot types. The type is defined with the method.


    • void remove_valid_left_disconnect_type ( int type )

    Removes the possibility to disconnect nodes when dragging from the slot at the left if it has the specified type.


    • void remove_valid_right_disconnect_type ( type )

    Removes the possibility to disconnect nodes when dragging from the slot at the right if it has the specified type.


    • void set_connection_activity ( String from, from_port, String to, to_port, float amount )

    • void set_selected ( node )

    Sets the specified as the one selected.