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

15 lines
271 B
Haxe

package armory.logicnode;
class GetObjectNode extends LogicNode {
public function new(tree: LogicTree) {
super(tree);
}
override function get(from: Int): Dynamic {
var objectName: String = inputs[0].get();
return iron.Scene.active.getChild(objectName);
}
}