Files
LNXSDK/leenkx/Sources/leenkx/logicnode/GroupNode.hx

17 lines
268 B
Haxe
Raw Normal View History

2025-01-22 16:18:30 +01:00
package leenkx.logicnode;
import iron.Scene;
class GroupNode extends LogicNode {
public var property0: String;
public function new(tree: LogicTree) {
super(tree);
}
override function get(from: Int): Dynamic {
return Scene.active.getGroup(property0);
}
}