1
-- TODO: these need to come out of a factory
3
Bullet = WrapTile:extend {
4
image = 'data/laser.png',
6
--self.velocity = vector.new(1000, 0) -- veclocity 800
7
--self.velocity:rotate_inplace(self.rotation)
9
self.velocity = vector.new(
10
love.mouse.getX() - the.app.width / 2,
11
love.mouse.getY() - the.app.height / 2
13
self.velocity:normalize_inplace()
14
self.velocity = self.velocity * 1000
16
self.rotation = math.atan2(self.velocity.y, self.velocity.x)
18
self.createdAt = love.timer.getTime()
22
onUpdate = function(self, dt)
23
if love.timer.getTime() - self.createdAt > 0.7 then
24
-- TODO: reuse these (see factory idea above)
26
the.app.view:remove(self)
27
the.bullets:remove(self)
b'\\ No newline at end of file'