From fc32ce43f545e7a452a6057f13c597f288a95dd8 Mon Sep 17 00:00:00 2001 From: Kazhnuz Date: Sun, 30 Jun 2019 22:04:01 +0200 Subject: [PATCH] fix(actor3D): fix checkGround not trying the right coordinate --- examples/gameplay/moveplayer3D/actors/parent.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/gameplay/moveplayer3D/actors/parent.lua b/examples/gameplay/moveplayer3D/actors/parent.lua index 2a43c98..b71c7e0 100644 --- a/examples/gameplay/moveplayer3D/actors/parent.lua +++ b/examples/gameplay/moveplayer3D/actors/parent.lua @@ -7,6 +7,7 @@ function Parent:new(world, type, x, y, z, w, h, d, isSolid) end function Parent:draw() + Parent.super.draw(self) self:drawMainHitbox() end