/traderous

To get this branch, use:
bzr branch http://9ix.org/bzr/traderous

« back to all changes in this revision

Viewing changes to main.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:
32
32
              --    end
33
33
              -- end
34
34
 
35
 
              the.bg = Tile:new{
36
 
                 image = 'data/stars3.png',
37
 
                 -- 1366x768 * 3
38
 
                 width = 4098,
39
 
                 height = 2304
 
35
              local bg = Tile:new{
 
36
                 image = 'data/stars2.png',
 
37
                 width = 102400,
 
38
                 height = 76800,
 
39
                 x = -51200,
 
40
                 y = -38400
40
41
              }
41
 
              self:add(the.bg)
 
42
              self:add(bg)
42
43
 
43
44
              --the.player = CrystalPlayer:new{x=400,y=300}
44
 
              the.player = SpacePlayer:new{x=1366,y=768}
 
45
              the.player = SpacePlayer:new{x=400,y=300}
45
46
              self:add(the.player)
46
47
 
47
48
              self:add(Enemy:new{x=400, y=300})
83
84
              if DEBUG then
84
85
                 self.console:watch('VERSION', 'VERSION')
85
86
                 self.console:watch('updateTook', 'the.updateTook')
86
 
                 self.console:watch('the.player.x', 'the.player.x')
87
 
                 self.console:watch('the.player.y', 'the.player.y')
88
 
                 self.console:watch('the.app.width', 'the.app.width')
89
 
                 self.console:watch('the.app.height', 'the.app.height')
90
87
                 --self.console:watch('drawTook', 'the.drawTook')
91
88
              end
92
89
           end,