/traderous

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

« back to all changes in this revision

Viewing changes to player.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:
43
43
                           b = Bullet:new{
44
44
                              x = self.x, y = self.y,
45
45
                              rotation = self.rotation,
 
46
                              velocity = {
 
47
                                 x = self.velocity.x * 1.5,
 
48
                                 y = self.velocity.y * 1.5
 
49
                              },
46
50
                           }
47
51
                           the.app.view:add(b)
48
52
                           self.lastFired = love.timer.getTime()