/ld26

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

« back to all changes in this revision

Viewing changes to main.lua

  • Committer: Josh C
  • Date: 2013-04-27 19:17:32 UTC
  • Revision ID: josh@9ix.org-20130427191732-b04lkepq9cz8e1n7
player min/maxY on a level

Show diffs side-by-side

added added

removed removed

12
12
   forest1 = {
13
13
      objects = function() return {
14
14
                      Tile:new{image = 'data/forest1-bg.png'},
15
 
                      Player:new{x = 200, y = 370, image = 'data/forest1-player.png'},
 
15
                      Player:new{x = 200, y = 370,
 
16
                                 minY = 330, maxY = 500,
 
17
                                 image = 'data/forest1-player.png'},
16
18
                      Tile:new{image = 'data/forest1-fg.png'}
17
19
                   } end,
18
20
   },
19
21
   shore = {
20
22
      objects = function() return {
21
23
                      Tile:new{image = 'data/shore-bg.png'},
22
 
                      Player:new{x = 145, y = 133, image = 'data/shore-player.png'},
 
24
                      Player:new{x = 145, y = 133,
 
25
                                 minY = 133, maxY = 133,
 
26
                                 image = 'data/shore-player.png'},
23
27
                      Tile:new{image = 'data/shore-fg.png'}
24
28
                   } end
25
29
   }