armory/Sources/armory/logicnode/SwitchNode.hx
2019-12-19 23:54:08 +01:00

23 lines
364 B
Haxe

package armory.logicnode;
class SwitchNode extends LogicNode {
public function new(tree: LogicTree) {
super(tree);
}
override function run(from: Int) {
var v1: Dynamic = inputs[1].get();
if (inputs.length > 2) {
for (i in 2...inputs.length) {
if (inputs[i].get() == v1) {
runOutput(i - 1);
return;
}
}
}
runOutput(0);
}
}