/ld27

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

« back to all changes in this revision

Viewing changes to goal.lua

  • Committer: Josh C
  • Date: 2013-08-25 02:26:10 UTC
  • Revision ID: josh@9ix.org-20130825022610-13j6ydir3gmihiwz
.bzrignore

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
   ping = love.audio.newSource('data/Pickup_Coin7.wav', 'static'),
5
5
   onCollide = function(self, other)
6
6
                  love.audio.play(self.ping)
7
 
                  the.goalsAchieved = the.goalsAchieved + 1
8
7
 
9
8
                  self:die()
10
9
                  the.view.goals[tonumber(self.map)] = nil
11
10
                  the.view.objects:remove(self)
12
 
 
13
 
                  if the.goalsAchieved == 3 then
14
 
                     WinView:new():activate()
15
 
                  end
16
11
               end
17
12
}
 
 
b'\\ No newline at end of file'