/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-25 22:33:36 UTC
  • Revision ID: josh@9ix.org-20130825223336-060day31ux18mzat
update pause and win screens with ridiculous font

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
GameView = View:extend {
18
18
   gameStart = 0,
19
 
   switchSounds = {},
20
19
   onNew = function (self)
21
20
              self:loadLayers('data/map.lua')
22
21
              self.focus = the.player
43
42
                 end
44
43
              end
45
44
 
46
 
              local sndFiles = {'data/Explosion2.wav', 'data/Explosion3.wav', 'data/Hit_Hurt3.wav'}
47
 
 
48
 
              for _, sndFile in ipairs(sndFiles) do
49
 
                 local snd = love.audio.newSource(sndFile, 'static')
50
 
                 table.insert(self.switchSounds, snd)
51
 
              end
52
 
 
53
45
              --the.interface = Group:new()
54
46
 
55
47
              --self:add(the.interface)
96
88
                         the.activeGoal.visible = false
97
89
                      end
98
90
                      the.activeGoal = self.goals[newMaze]
99
 
 
100
 
                      love.audio.play(self.switchSounds[math.random(#self.switchSounds)])
101
91
                   else
102
92
                      the.activeMaze = self.maze2
103
93
                      the.activeBg = self.bg