- [NEW] ralentitzades les animacions

- [NEW] Desde l'editor, amb 'P' es posiciona al heroi en la posició del cursor
- [ONGOING] habitacions: 6%
- [NEW] Més tiles
- [CHG] Reajustada velocitat de l'heroi
- [FIX] Ajustada la caixa de colisió un pixelet
- [CHG] Ajustat el bot màxim
This commit is contained in:
2025-06-22 19:39:13 +02:00
parent e01f3e8cc9
commit 2d19554269
7 changed files with 23 additions and 17 deletions

View File

@@ -3,34 +3,34 @@ animations = {
["hero_stand"] = {
cycle = {1},
frames = {
{ frame={x=0,y=0,w=16,h=17}, wait=2 },
{ frame={x=0,y=0,w=16,h=17}, wait=4 },
}
},
["hero_jump"] = {
cycle = {1},
frames = {
{ frame={x=32,y=0,w=16,h=17}, wait=2 },
{ frame={x=32,y=0,w=16,h=17}, wait=4 },
}
},
["hero_walk"] = {
cycle = {1,2,1,3},
frames = {
{ frame={x=0,y=0,w=16,h=17}, wait=2 },
{ frame={x=16,y=0,w=16,h=17}, wait=2 },
{ frame={x=32,y=0,w=16,h=17}, wait=2 }
{ frame={x=0,y=0,w=16,h=17}, wait=4 },
{ frame={x=16,y=0,w=16,h=17}, wait=4 },
{ frame={x=32,y=0,w=16,h=17}, wait=4 }
}
},
["hero_stairs_idle"] = {
cycle = {1},
frames = {
{ frame={x=48,y=0,w=16,h=17}, wait=2 }
{ frame={x=48,y=0,w=16,h=17}, wait=4 }
}
},
["hero_stairs"] = {
cycle = {1,2},
frames = {
{ frame={x=48,y=0,w=16,h=17}, wait=2 },
{ frame={x=48,y=0,w=16,h=17}, wait=2, reversed=true }
{ frame={x=48,y=0,w=16,h=17}, wait=4 },
{ frame={x=48,y=0,w=16,h=17}, wait=4, reversed=true }
}
},
}