This commit is contained in:
Entarno54 2025-05-29 20:33:45 +07:00
parent 0eda2e9dbe
commit 58d8f44f9e

View File

@ -147,7 +147,7 @@ function module.updateSprites(dt)
end
function module.drawSprites()
print(logger.dump(module.cameraPosition))
print(logging.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