- Saving progress...

This commit is contained in:
2025-02-18 06:50:37 +01:00
parent 88e406dae0
commit 99a29cf2e0
3 changed files with 58 additions and 17 deletions

View File

@@ -10,7 +10,7 @@ function mini.init()
--turbo(false)
--local perico = "péricòñ"
--print(utf8.len(perico))
ants = 0xc936;
Ants = 0xc936;
s = surface.load("tiles01.gif")
--surface.source(s)
p = palette.load("tiles01.gif")
@@ -29,12 +29,12 @@ function mini.update()
end
if system.isBeat() then
ants = (ants >> 12) | ((ants<<4)&0xffff)
Ants = (Ants >> 12) | ((Ants<<4)&0xffff)
end
surface.cls(5)
draw.surface(s, 0, 0, 64, 64, 10, 10)
draw.rect(10, 10, 73, 73, 8)
draw.setPattern(ants)
draw.setPattern(Ants)
draw.rect(10, 10, 73, 73, 0)
draw.setPattern(0xffff)