- [NEW] Actualitzat per a usar l'última versió de mini (v1.3.10)

This commit is contained in:
2025-11-11 11:23:21 +01:00
parent 447f5bfdb7
commit 5f05f6e568
3 changed files with 20 additions and 20 deletions

View File

@@ -144,9 +144,9 @@ game={
draw=function()
surf.cls(6)
view.origin(game.cam.x, game.cam.y)
view.origin(-game.cam.x, -game.cam.y)
surf.source(tiles)
map.set(mapa.surface)
map.surf(mapa.surface)
map.draw()--map(0,0,0,0,mapa.w, mapa.h)
switches.draw();
surf.source(sprites)
@@ -164,10 +164,10 @@ game={
end
if mapa.front_layer then
surf.source(tiles)
map.set(mapa.front_layer)
map.surf(mapa.front_layer)
map.draw() -- map(0,0,0,0,mapa.w, mapa.h)
end
map.set(mapa.surface)
map.surf(mapa.surface)
view.origin(0,0)
for i=0,15 do draw.rectf(20+i*4,0,4,4,i) end
end,