/spacey

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

« back to all changes in this revision

Viewing changes to player.lua

  • Committer: Josh C
  • Date: 2013-05-13 20:26:30 UTC
  • Revision ID: josh@9ix.org-20130513202630-jd3tf1rr5zp3gbcm
move player around looping world

Show diffs side-by-side

added added

removed removed

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
}
 
 
'\\ No newline at end of file'