/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:41:14 UTC
  • Revision ID: josh@9ix.org-20130513204114-wtg735gs4b38wad4
extract wrapping behavior, wrap bullets

Show diffs side-by-side

added added

removed removed

21
21
 
22
22
local velLimit = 400
23
23
--local velLimit = 50
24
 
SpacePlayer = Tile:extend{
 
24
SpacePlayer = WrapTile: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
 
 
70
58
              end
71
59
}
 
 
'\\ No newline at end of file'