armory/Sources/armory/logicnode/SequenceNode.hx

13 lines
213 B
Haxe
Raw Permalink Normal View History

2017-04-11 11:28:22 +02:00
package armory.logicnode;
class SequenceNode extends LogicNode {
2019-12-19 23:54:08 +01:00
public function new(tree: LogicTree) {
2017-04-11 11:28:22 +02:00
super(tree);
}
2019-12-19 23:54:08 +01:00
override function run(from: Int) {
2018-12-24 10:40:51 +01:00
for (i in 0...outputs.length) runOutput(i);
2017-04-11 11:28:22 +02:00
}
}