/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-23 03:10:51 UTC
  • Revision ID: josh@9ix.org-20130623031051-3142chix333jkmqi
pay to fix shield

Show diffs side-by-side

added added

removed removed

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