Create Graph

using Databrain.Logic;

public class LogicGraph : GraphData{}

To create a new graph, simply select the Logics type in the type list of the Databrain editor and create a new DataObject (Graph).

Every graph starts with an OnStart node. You can have as many OnStart nodes as you like in one graph.

Add Node

Right click on the editor canvas to open up the node panel. Here you can search for a node or browse through the different categories.

Connect Node

To connect a node with another one, simply click on the output and drag the connection to the next node. The node panel opens up automatically when dragging on an empty space which lets you select a new node to connect to.

Group Nodes

To group nodes, simply select the nodes you want to group and use the shortcut Ctrl + G. Alternatively, you can also click on the Create Group-button in the toolbar of the node editor.

You can rename a group by clicking on the name of the group.

Resizing a group evaluates which nodes are in a group and adds or removes them from a group automatically.

Last updated