/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:
37
37
 
38
38
                     --TODO: acceleration limit.  It should at least be proportional (not 16:9)
39
39
 
40
 
                     if the.mouse:pressed() and -- assumes left button
41
 
                       love.timer.getTime() - self.lastFired > 0.25 and
42
 
                       the.cursor:inTargetArea() then
 
40
                     if the.mouse:pressed() then -- assumes left button
 
41
                        if love.timer.getTime() - self.lastFired > 0.25 then
43
42
                           --print('pew')
44
43
                           b = Bullet:new{
45
44
                              x = self.x, y = self.y,
46
45
                              rotation = self.rotation,
 
46
                              velocity = {
 
47
                                 x = self.velocity.x * 1.5,
 
48
                                 y = self.velocity.y * 1.5
 
49
                              },
47
50
                           }
48
51
                           the.app.view:add(b)
49
52
                           self.lastFired = love.timer.getTime()
 
53
                        end
50
54
                     end
51
55
                  end,
52
56
   onUpdate = function(self)