1
2
3
4
5
6
7
8
9
10
11
12
|
Displacer = Fill:extend{
fill = {0, 255, 255},
visible = false,
onUpdate = function(self, dt)
self.visible = DEBUG and the.console.visible
end,
onCollide = function(self, other, xOl, yOl)
if other == the.player then --sanity check
self:displace(other)
end
end
}
|