/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-13 20:32:58 UTC
  • Revision ID: josh@9ix.org-20130513203258-eywmfkprzcgw3jz6
slow the ship down a bit

Show diffs side-by-side

added added

removed removed

19
19
                  end
20
20
}
21
21
 
22
 
local velLimit = 600
 
22
local velLimit = 400
23
23
--local velLimit = 50
24
24
SpacePlayer = Tile:extend{
25
25
   image = 'data/ship.png',
37
37
                     self.rotation = math.atan2(mouseVec.y, mouseVec.x)
38
38
 
39
39
                     if mouseVec:len2() > 64^2 then
40
 
                        self.acceleration = vector.new(500, 0)
 
40
                        self.acceleration = vector.new(300, 0)
41
41
                        self.acceleration:rotate_inplace(self.rotation)
42
42
                     else
43
43
                        self.acceleration = {x=0, y=0}