/traderous

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

« back to all changes in this revision

Viewing changes to bullet.lua

  • Committer: Josh C
  • Date: 2013-05-09 00:35:25 UTC
  • Revision ID: josh@9ix.org-20130509003525-ad51iyqb2j9eg1wl
get lasers going the right way

Show diffs side-by-side

added added

removed removed

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
7
 
              self.velocity:rotate_inplace(self.rotation)
 
6
              --self.velocity = vector.new(1000, 0) -- veclocity 800
 
7
              --self.velocity:rotate_inplace(self.rotation)
 
8
 
 
9
              self.velocity = vector.new(
 
10
                 love.mouse.getX() - the.app.width / 2,
 
11
                 love.mouse.getY() - the.app.height / 2
 
12
              )
 
13
              self.velocity:normalize_inplace()
 
14
              self.velocity = self.velocity * 1000
 
15
 
 
16
              self.rotation = math.atan2(self.velocity.y, self.velocity.x)
8
17
 
9
18
              self.createdAt = love.timer.getTime()
10
19
           end,