1
Transition = Group:extend {
5
-- NOTE: X/Y will fail if you init Transition before Player!
6
box = Fill:new{x = self.x, y = self.y,
7
height = self.height or the.player.height,
8
width = self.width or the.player.width,
10
onCollide = function(self, other, xOl, yOl)
12
if other == the.player then
13
--print("Sending to "..t.target)
15
the.app.view = GameView:new{level = t.target}
17
if t.targetX or t.targetY then
18
the.player.x = t.targetX
19
the.player.y = t.targetY
22
print("Colliding with: "..other)
27
self:add(Text:new{x = self.x, y = self.y,
31
-- make sure collision doesn't think group is a sprite
32
self.x, self.y, self.width, self.height = nil, nil, nil, nil
34
onUpdate = function(self, dt)
35
self.visible = DEBUG and the.console.visible