A GraphNode is a container with several input and output slots allowing connections between GraphNodes. Slots can have different, incompatible types. A GraphNode is a container defined by a title. It can have one or more input and output slots, which can be enabled (shown) or disabled (not shown) and have different (incompatible) types. Colors can also be assigned to slots. A tuple of input and output slots is defined for each GUI element included in the GraphNode. Input and output connections are left and right slots, but only enabled slots are counted as connections. To add a slot to GraphNode, add any [Control]-derived child node to it. Disables all input and output slots of the GraphNode. Disables input and output slot whose index is [code]idx[/code]. Returns the color of the input connection [code]idx[/code]. Returns the number of enabled input slots (connections) to the GraphNode. Returns the position of the input connection [code]idx[/code]. Returns the type of the input connection [code]idx[/code]. Returns the color of the output connection [code]idx[/code]. Returns the number of enabled output slots (connections) of the GraphNode. Returns the position of the output connection [code]idx[/code]. Returns the type of the output connection [code]idx[/code]. Returns the color set to [code]idx[/code] left (input) slot. Returns the color set to [code]idx[/code] right (output) slot. Returns the (integer) type of left (input) [code]idx[/code] slot. Returns the (integer) type of right (output) [code]idx[/code] slot. Returns [code]true[/code] if left (input) slot [code]idx[/code] is enabled, [code]false[/code] otherwise. Returns [code]true[/code] if right (output) slot [code]idx[/code] is enabled, [code]false[/code] otherwise. Sets properties of the slot with id [code]idx[/code]. If [code]enable_left[/code]/[code]right[/code], a port will appear and the slot will be able to be connected from this side. [code]type_left[/code]/[code]right[/code] is an arbitrary type of the port. Only ports with the same type values can be connected. [code]color_left[/code]/[code]right[/code] is the tint of the port's icon on this side. [code]custom_left[/code]/[code]right[/code] is a custom texture for this side's port. [b]Note:[/b] this method only sets properties of the slot. To create the slot, add a [Control]-derived child to the GraphNode. If [code]true[/code], the GraphNode is a comment node. The offset of the GraphNode, relative to the scroll offset of the [GraphEdit]. [b]Note:[/b] You cannot use position directly, as [GraphEdit] is a [Container]. Signal sent on closing the GraphNode. Signal sent when the GraphNode is dragged. Signal sent when the GraphNode is moved. Signal sent when the GraphNode is requested to be displayed over other ones. Happens on focusing (clicking into) the GraphNode.