Files

15 lines
265 B
Haxe
Raw Permalink Normal View History

2026-05-06 17:52:45 -07:00
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);
}
});
}
}