Estructura DX i escena logo JAILGAMES animada

This commit is contained in:
2026-05-16 10:54:07 +02:00
parent d8883372b0
commit 8a5f97bad4
12 changed files with 786 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
-- Logo JAILGAMES — bitmap monocromatic 35x5 extret de art/jailgames.gif.
--
-- '#' = pixel actiu (color del logo)
-- '.' = pixel inactiu (fons negre)
--
-- L'escena 'logo' col.loca aquest bitmap a (origen_x, origen_y) i en
-- gestiona l'animacio (entrada per columnes + estable + fade-out).
return {
origen_x = 2,
origen_y = 12,
width = 35,
height = 5,
files = {
"..#.###.#.#...###.###.#...#.###.###",
"..#.#.#.#.#...#...#.#.##.##.#...#..",
"..#.#.#.#.#...#.#.#.#.#.#.#.###.###",
"..#.###.#.#...#.#.###.#...#.#.....#",
"###.#.#.#.###.###.#.#.#...#.###.###",
},
}