58
MenuScreen = View:extend {
59
--title = Text:new{text = "Test Platform Game", font = 48, wordWrap = false},
60
title = Tile:new{image = 'data/title.png', x = 0, y = 0},
61
onNew = function(self)
63
--self.title:centerAround(400, 200)
65
onUpdate = function(self, elapsed)
66
if the.keys:allJustPressed() then
67
the.app.view = GameView:new()
72
53
the.app = App:new {
74
55
onRun = function (self)
75
self.view = MenuScreen:new()
77
self.console:watch('onGround', 'the.player.onGround')
78
self.console:watch('onWall', 'the.player.onWall')
79
self.console:watch('updateTook', 'the.updateTook')
80
self.console:watch('drawTook', 'the.drawTook')
81
self.console:watch('recorder state', 'the.recorder.state')
56
self.view = GameView:new()
57
self.console:watch('onGround', 'the.player.onGround')
58
self.console:watch('onWall', 'the.player.onWall')
59
self.console:watch('updateTook', 'the.updateTook')
60
self.console:watch('drawTook', 'the.drawTook')
61
self.console:watch('recorder state', 'the.recorder.state')
84
63
--the.profiler = newProfiler('time', 2000)
85
64
--the.profiler = newProfiler()