/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-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

Lines of Context:
21
21
 
22
22
local velLimit = 400
23
23
--local velLimit = 50
24
 
SpacePlayer = WrapTile:extend{
 
24
SpacePlayer = Tile:extend{
25
25
   image = 'data/ship.png',
26
26
   maxVelocity = {x=velLimit,y=velLimit},
27
27
   minVelocity = {x=-velLimit, y=-velLimit},
55
55
                     end
56
56
                  end,
57
57
   onUpdate = function(self)
 
58
                 if self.x < the.app.width / 2 then
 
59
                    self.x = the.bg.width - the.app.width / 2
 
60
                 elseif self.x > the.bg.width - the.app.width / 2 then
 
61
                    self.x = the.app.width / 2
 
62
                 end
 
63
 
 
64
                 if self.y < the.app.height / 2 then
 
65
                    self.y = the.bg.height - the.app.height / 2
 
66
                 elseif self.y > the.bg.height - the.app.height / 2 then
 
67
                    self.y = the.app.height / 2
 
68
                 end
 
69
 
58
70
              end
59
71
}
 
 
b'\\ No newline at end of file'