/ld28

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

« back to all changes in this revision

Viewing changes to main.lua

  • Committer: Josh C
  • Date: 2013-12-15 20:12:04 UTC
  • Revision ID: josh@9ix.org-20131215201204-k5ldifo4g8shxd3x
nameĀ theĀ game

Show diffs side-by-side

added added

removed removed

Lines of Context:
96
96
 
97
97
SlowView = View:extend {
98
98
   onNew = function(self)
 
99
              local texts = {
 
100
                 '',
 
101
                 "Your movements have slowed...",
 
102
                 "Your movements have slowed...\nand they no longer only imitate you..."
 
103
              }
 
104
 
99
105
              local text = Text:new {
100
 
                 text = 'Your movements have slowed...',
 
106
                 text = texts[self.level],
101
107
                 --height = the.app.height,
102
108
                 width = the.app.width,
103
109
                 align = 'center',
139
145
}
140
146
 
141
147
the.app = App:new {
142
 
   name = "LD28",
 
148
   name = "One Among Many",
143
149
   fps = 30,
144
150
   onRun = function (self)
145
151
              print('Version: ' .. VERSION)