Corregit bol, adaptat final, modificat Batman. Joc completament jugable. Falten 2 de Premiere i el Imp

This commit is contained in:
2026-03-17 22:31:38 +01:00
parent 9e6c50cd87
commit 5b9b9aed6d
6 changed files with 35 additions and 23 deletions

View File

@@ -2,7 +2,7 @@ local arcade_config = require("arcade_config")
o2aX = arcade_config.org2arc_escala
txr = arcade_config.tiles_per_row-1
txr2 = arcade_config.tiles_per_row_base2
toff = tiles_offset
toff = arcade_config.tiles_offset
tw = arcade_config.tiles_width
th = arcade_config.tiles_height
-- posició en el gif des de l'offset de tiles
@@ -18,9 +18,9 @@ end
function bol.draw()
-- draw.surf(112,88,16,8,bol.x,bol.y,16,8)
local x = toff+bol_gif_col*tw
local y = bol_gif_row*th
draw.surf(x,y,tw*2,th,bol.x*o2aX,bol.y*o2aX,tw,th)
local x = bol_gif_col*tw
local y = toff+bol_gif_row*th
draw.surf(x,y,tw*2,th,bol.x*o2aX,bol.y*o2aX,tw*2,th)
end
function bol.update()