/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-07 21:30:17 UTC
  • Revision ID: josh@9ix.org-20130507213017-i9xbjk0qjjqe91dk
constant velocity for bullets.  using hump.vector e9b86ef 

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
 
              -- set velocity.x,y from vector velocity
7
 
              -- rotation should be passed in at creation
 
6
              self.velocity = vector.new(800, 0) -- veclocity 800
 
7
              self.velocity:rotate_inplace(self.rotation)
8
8
 
9
9
              self.createdAt = love.timer.getTime()
10
10
           end,