/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-05-29 02:51:39 UTC
  • Revision ID: josh@9ix.org-20130529025139-g8sboz3p23excyz4
F1 = screenshot

Show diffs side-by-side

added added

removed removed

Lines of Context:
108
108
              --the.player = CrystalPlayer:new{x=400,y=300}
109
109
              the.player = SpacePlayer:new{x=1366,y=768}
110
110
              self:add(the.player)
 
111
              self:add(the.player.thrust)
111
112
 
112
113
              --self:add(Enemy:new{x=400, y=300})
113
114
 
274
275
              end
275
276
           end,
276
277
   onUpdate = function (self, dt)
277
 
                 if the.keys:justPressed('escape') then
 
278
                 if the.keys:justPressed('q') then
278
279
                    self.quit()
 
280
                 elseif the.keys:justPressed('return') then
 
281
                    self.view = GameView:new()
 
282
                 elseif the.keys:justPressed('f1') then
 
283
                    local ss = love.graphics.newScreenshot()
 
284
                    ss:encode('screenshot-' ..love.timer.getTime()..'.png')
279
285
                 end
280
286
              end,
281
287
   update = function (self, dt)