| Itch.io | https://idaho06.itch.io/ |
| Website | https://lemniscata.com |
| Github | https://github.com/idaho06 |
| Itch.io | https://idaho06.itch.io/ |
| Website | https://lemniscata.com |
| Github | https://github.com/idaho06 |
```lua
engine.spawn()
:with_sprite("laser", 48, 83, 24, 21)
:with_collider(6, 6, 3, 3)
:with_zindex(1)
:with_signals()
:register_as("template")
:build()
engine.clone("template")
:with_group("lasers")
:with_position(spawn_x, spawn_y)
:with_rotation(SHIP_ROTATION)
:with_velocity(
math.sin(radians) * 500.0,
-math.cos(radians) * 500.0
)
:with_ttl(1.5)
:build()
```