/spacey

To get this branch, use:
bzr branch /bzr/spacey

« back to all changes in this revision

Viewing changes to bullet.lua

  • Committer: Josh C
  • Date: 2013-05-14 17:13:43 UTC
  • Revision ID: josh@9ix.org-20130514171343-s251e971hc92mzb0
shoot things!

Show diffs side-by-side

added added

removed removed

16
16
              self.rotation = math.atan2(self.velocity.y, self.velocity.x)
17
17
 
18
18
              self.createdAt = love.timer.getTime()
 
19
 
 
20
              the.bullets:add(self)
19
21
           end,
20
22
   onUpdate = function(self, dt)
21
 
                 if love.timer.getTime() - self.createdAt > 1 then
 
23
                 if love.timer.getTime() - self.createdAt > 0.7 then
22
24
                    -- TODO: reuse these (see factory idea above)
23
25
                    self:die()
24
26
                    the.app.view:remove(self)
 
27
                    the.bullets:remove(self)
25
28
                 end
26
29
              end
27
30
}
 
 
'\\ No newline at end of file'