Files
Leenkx_Examples/script_linkedgroup/Sources/lnx/PinSpawner.hx
2026-05-06 17:52:45 -07:00

15 lines
265 B
Haxe

package lnx;
class PinSpawner extends iron.Trait {
public function new() {
super();
notifyOnUpdate(function() {
var mouse = iron.system.Input.getMouse();
if (mouse.started()) {
iron.Scene.active.spawnObject("PinGroup", null, null);
}
});
}
}