armory/Sources/armory/logicnode/PickerNode.hx
2016-10-25 13:01:20 +02:00

29 lines
568 B
Haxe
Executable file

package armory.logicnode;
import armory.trait.internal.NodeExecutor;
class PickerNode extends Node {
public var target:iron.node.Node;
public var property0:String;
public function new() {
super();
}
public override function start(executor:NodeExecutor, parent:Node = null) {
super.start(executor, parent);
executor.notifyOnNodeInit(init);
}
function init() {
target = iron.Scene.active.getChild(property0);
}
public static function create(_property0:String):PickerNode {
var n = new PickerNode();
n.property0 = _property0;
return n;
}
}