A connection instance defines the connection between two nodes. All you have to do is pass on a from and to node, and optionally a weight.
var B = new Node();
var C = new Node();
var connection = new Connection(A, B, 0.5);
Connection properties:
| Property | contains |
|---|---|
| from | connection origin node |
| to | connection destination node |
| weight | the weight of the connection |
| gater | the node gating this connection |
| gain | for gating, gets multiplied with weight |
There are three connection methods:
x to all nodes from group yx to all nodes in the same group except itselfx to one node in group yEvery one of these connection methods can also be used on the group itself! (x.connect(x, METHOD))