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

13 lines
194 B
Haxe
Executable file

package armory.logicnode;
class SelfNode extends LogicNode {
public function new(tree: LogicTree) {
super(tree);
}
override function get(from: Int): Dynamic {
return tree.object;
}
}