/spacey

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

« back to all changes in this revision

Viewing changes to main.lua

  • Committer: Josh C
  • Date: 2013-06-08 01:10:00 UTC
  • Revision ID: josh@9ix.org-20130608011000-18c5io3gp1gzwebk
toggle fullscreen with f11 or alt-enter

Show diffs side-by-side

added added

removed removed

Lines of Context:
259
259
              math.randomseed(os.time())
260
260
 
261
261
              self.view = GameView:new()
 
262
 
 
263
              -- should fail silently if it can't go to fullscreen...
 
264
              love.graphics.toggleFullscreen()
 
265
 
262
266
              if DEBUG then
263
267
                 self.console:watch('VERSION', 'VERSION')
264
268
                 self.console:watch('updateTook', 'the.updateTook')
278
282
                 if the.keys:justPressed('q') then
279
283
                    self.quit()
280
284
                 elseif the.keys:justPressed('return') then
281
 
                    self.view = GameView:new()
 
285
                    if the.keys:pressed('alt') then
 
286
                       love.graphics.toggleFullscreen()
 
287
                    else
 
288
                       self.view = GameView:new()
 
289
                    end
282
290
                 elseif the.keys:justPressed('f1') then
283
291
                    local ss = love.graphics.newScreenshot()
284
292
                    ss:encode('screenshot-' ..love.timer.getTime()..'.png')
 
293
                 elseif the.keys:justPressed('f11') then
 
294
                    love.graphics.toggleFullscreen()
285
295
                 end
286
296
              end,
287
297
   update = function (self, dt)