/ld26

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

« back to all changes in this revision

Viewing changes to main.lua

  • Committer: Josh C
  • Date: 2013-04-27 18:35:29 UTC
  • Revision ID: josh@9ix.org-20130427183529-0lqp56qq6m0yocn1
levels hash, scale player

Show diffs side-by-side

added added

removed removed

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