t3du - Set / Get World Nodes

This commit is contained in:
2025-06-10 18:40:21 +00:00
parent 65961b1593
commit aeb353fb20

View File

@ -0,0 +1,13 @@
package leenkx.logicnode;
class GetWorldNode extends LogicNode {
public function new(tree: LogicTree) {
super(tree);
}
override function get(from: Int): Dynamic {
trace(iron.Scene.active.world);
return iron.Scene.active.raw.world_ref;
}
}