/ld26

To get this branch, use:
bzr branch /bzr/ld26

« back to all changes in this revision

Viewing changes to displacer.lua

  • Committer: Josh C
  • Date: 2013-04-29 00:35:28 UTC
  • Revision ID: josh@9ix.org-20130429003528-6o7b23zq3c4m8nxe
be moved

Show diffs side-by-side

added added

removed removed

9
9
                    self:displace(other)
10
10
                 end
11
11
              end
12
 
}
 
 
'\\ No newline at end of file'
 
12
}
 
13
 
 
14
MaybeDisplacer = Fill:extend{
 
15
   fill = {0, 255, 255},
 
16
   visible = false,
 
17
   onUpdate = function(self, dt)
 
18
                self.visible = DEBUG and the.console.visible
 
19
             end,
 
20
   onCollide = function(self, other, xOl, yOl)
 
21
                  --print('col')
 
22
                  if the.player.canMove then
 
23
                     self:displace(other)
 
24
                  end
 
25
               end
 
26
}