/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-12 17:37:55 UTC
  • Revision ID: josh@9ix.org-20130512173755-cpc9gqzglyurezzb
starry background

Show diffs side-by-side

added added

removed removed

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