/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-05-05 14:00:45 UTC
  • Revision ID: josh@9ix.org-20130505140045-o1dcza3m347rkx3i
targeting cursor (manual switch to start)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
Bullet = WrapTile:extend {
3
 
   image = 'data/laser.png',
4
 
   onNew = function(self)
5
 
              --self.velocity = vector.new(1000, 0) -- veclocity 800
6
 
              --self.velocity:rotate_inplace(self.rotation)
7
 
 
8
 
              self.velocity = vector.new(
9
 
                 love.mouse.getX() - the.app.width / 2,
10
 
                 love.mouse.getY() - the.app.height / 2
11
 
              )
12
 
              self.velocity:normalize_inplace()
13
 
              self.velocity = self.velocity * 1000
14
 
 
15
 
              self.rotation = math.atan2(self.velocity.y, self.velocity.x)
16
 
 
17
 
              self.createdAt = love.timer.getTime()
18
 
           end,
19
 
   onUpdate = function(self, dt)
20
 
                 if love.timer.getTime() - self.createdAt > 1 then
21
 
                    -- TODO: reuse these (see factory idea above)
22
 
                    self:die()
23
 
                    the.app.view:remove(self)
24
 
                 end
25
 
              end
26
 
}
 
 
b'\\ No newline at end of file'