/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-07 20:42:07 UTC
  • Revision ID: josh@9ix.org-20130507204207-yavvb4hhzhrjnw1e
fullscreen.  (there must be a more subtle way...)

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