/ld27

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

« back to all changes in this revision

Viewing changes to main.lua

  • Committer: Josh C
  • Date: 2013-08-26 00:10:14 UTC
  • Revision ID: josh@9ix.org-20130826001014-d7iobtdaet72558t
actually handle multiple goals in one maze

Show diffs side-by-side

added added

removed removed

Lines of Context:
133
133
 
134
134
              local nr = 'data/NewRocker-Regular.otf'
135
135
              self:add(Text:new{
136
 
                          text = 'Treasures of the Decimaze',
 
136
                          text = 'Name Of Game',
137
137
                          --x = 0,
138
138
                          y = 100,
139
139
                          width = self.bg.width,
179
179
}
180
180
 
181
181
the.app = App:new {
182
 
   name = "Treasures of the Decimaze",
183
182
   onRun = function (self)
184
183
              print('Version: ' .. VERSION)
185
184
 
195
194
              end
196
195
           end,
197
196
   onUpdate = function (self, dt)
198
 
                 if the.keys:justPressed('f1') then
199
 
                    local ss = love.graphics.newScreenshot()
200
 
                    ss:encode('screenshot-' ..love.timer.getTime()..'.png')
201
 
                 end
202
197
              end
203
198
}