3
image = 'data/laser.png',
5
--self.velocity = vector.new(1000, 0) -- veclocity 800
6
--self.velocity:rotate_inplace(self.rotation)
8
self.velocity = vector.new(
9
love.mouse.getX() - the.app.width / 2,
10
love.mouse.getY() - the.app.height / 2
12
self.velocity:normalize_inplace()
13
self.velocity = self.velocity * 1000
15
self.rotation = math.atan2(self.velocity.y, self.velocity.x)
17
self.createdAt = love.timer.getTime()
21
onUpdate = function(self, dt)
22
if love.timer.getTime() - self.createdAt > 0.7 then
23
-- TODO: reuse these (see factory idea above)
24
the.bullets:remove(self)
b'\\ No newline at end of file'