/traderous

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

« back to all changes in this revision

Viewing changes to player.lua

  • Committer: Josh C
  • Date: 2013-05-05 00:41:10 UTC
  • Revision ID: josh@9ix.org-20130505004110-hmcvz9payau6q0io
maxVelocity

Show diffs side-by-side

added added

removed removed

7
7
                        print('hi')
8
8
                     end
9
9
 
10
 
                     --local dx = the.mouse.x - 400
11
 
                     --local dy = the.mouse.y - 300
12
10
                     local dx = love.mouse.getX() - 400
13
11
                     local dy = love.mouse.getY() - 300
14
12
 
17
15
 
18
16
                     --print(dx, dy)
19
17
 
20
 
                     -- NOTE: actually, maybe I want to show the mouse?
21
18
                     love.mouse.setPosition(400,300)
22
19
                  end
23
20
}
24
21
 
 
22
local velLimit = 600
25
23
SpacePlayer = Fill:extend{
26
24
   fill = {255,0,0},
27
25
   height = 32,
28
26
   width = 32,
 
27
   maxVelocity = {x=velLimit,y=velLimit},
 
28
   minVelocity = {x=-velLimit, y=-velLimit},
29
29
   onStartFrame = function(self)
30
30
                     --local dx = love.mouse.getX() - self.x
31
31
                     --local dy = love.mouse.getY() - self.y