diff --git a/modules/types.lua b/modules/types.lua index fe86508..cec28f3 100644 --- a/modules/types.lua +++ b/modules/types.lua @@ -147,7 +147,7 @@ function module.updateSprites(dt) end function module.drawSprites() - print(module.cameraPosition) + print(logger.dump(module.cameraPosition)) for index, sprite in next, Sprites do if not sprite.animation or not sprite.quads or not sprite.quads[sprite.animation] then goto continue end -- For some reason OG LUA doesnt have continue -- So im forced to use goto ::continue:: since it goes straight to the last point of the cycle