17 lines
268 B
Haxe
17 lines
268 B
Haxe
|
package leenkx.logicnode;
|
||
|
|
||
|
class GroupOutputsNode extends LogicNode {
|
||
|
|
||
|
public function new(tree: LogicTree) {
|
||
|
super(tree);
|
||
|
}
|
||
|
|
||
|
override function run(from: Int) {
|
||
|
runOutput(from);
|
||
|
}
|
||
|
|
||
|
override function get(from: Int): Dynamic {
|
||
|
return inputs[from].get();
|
||
|
}
|
||
|
}
|