/traderous

To get this branch, use:
bzr branch http://9ix.org/bzr/traderous

« back to all changes in this revision

Viewing changes to bullet.lua

  • Committer: Josh C
  • Date: 2013-06-25 19:56:26 UTC
  • Revision ID: josh@9ix.org-20130625195626-00x63mxdyk1k6ud7
last fix for saving

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
-- TODO: these need to come out of a factory
 
2
 
 
3
Bullet = Tile:extend {
 
4
   image = 'data/laser.png',
 
5
   onNew = function(self)
 
6
              self.velocity = vector.new(1000, 0)
 
7
              self.velocity:rotate_inplace(self.rotation)
 
8
 
 
9
              self.createdAt = love.timer.getTime()
 
10
 
 
11
              the.bullets:add(self)
 
12
           end,
 
13
   onUpdate = function(self, dt)
 
14
                 if love.timer.getTime() - self.createdAt > 0.7 then
 
15
                    -- TODO: reuse these (see factory idea above)
 
16
                    the.bullets:remove(self)
 
17
                    self:die()
 
18
                 end
 
19
              end
 
20
}
 
 
b'\\ No newline at end of file'