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

27 lines
451 B
Haxe

package armory.logicnode;
class ArrayRemoveValueNode extends LogicNode {
var removedValue: Dynamic = null;
public function new(tree: LogicTree) {
super(tree);
}
override function run(from: Int) {
var ar: Array<Dynamic> = inputs[1].get();
if (ar == null) return;
var val: Dynamic = inputs[2].get();
removedValue = val;
ar.remove(val);
runOutput(0);
}
override function get(from: Int): Dynamic {
return removedValue;
}
}