/spacey

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

« back to all changes in this revision

Viewing changes to bullet.lua

  • Committer: Josh C
  • Date: 2013-06-08 00:02:37 UTC
  • Revision ID: josh@9ix.org-20130608000237-v50hyqvrinp5g4rs
try to make setting screen resolution more reliable

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
-- TODO: these need to come out of a factory
2
2
 
3
 
Bullet = Tile:extend {
 
3
Bullet = WrapTile:extend {
4
4
   image = 'data/laser.png',
5
5
   onNew = function(self)
6
6
              --self.velocity = vector.new(1000, 0) -- veclocity 800
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 > 2 then
 
23
                 if love.timer.getTime() - self.createdAt > 0.7 then
22
24
                    -- TODO: reuse these (see factory idea above)
 
25
                    the.bullets:remove(self)
23
26
                    self:die()
24
 
                    the.app.view:remove(self)
25
27
                 end
26
28
              end
27
29
}
 
 
b'\\ No newline at end of file'