Trabajando en la pantalla de game over

This commit is contained in:
2022-11-06 19:32:10 +01:00
parent 6fe596bf48
commit 232842d876
5 changed files with 15 additions and 2 deletions

View File

@@ -1,9 +1,9 @@
frameWidth=16 frameWidth=16
frameHeight=16 frameHeight=18
[animation] [animation]
name=default name=default
speed=6 speed=5
loop=0 loop=0
frames=0,1,2,3 frames=0,1,2,3
[/animation] [/animation]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 300 B

After

Width:  |  Height:  |  Size: 377 B

View File

@@ -0,0 +1,9 @@
frameWidth=19
frameHeight=18
[animation]
name=default
speed=6
loop=0
frames=0,1,2,3
[/animation]

Binary file not shown.

After

Width:  |  Height:  |  Size: 341 B

View File

@@ -1180,6 +1180,10 @@ bool Director::setFileList()
// Jugador // Jugador
asset->add("/data/player/player.png", t_bitmap); asset->add("/data/player/player.png", t_bitmap);
asset->add("/data/player/player.ani", t_data); asset->add("/data/player/player.ani", t_data);
asset->add("/data/player/player2.png", t_bitmap);
asset->add("/data/player/player2.ani", t_data);
asset->add("/data/player/player_game_over.png", t_bitmap);
asset->add("/data/player/player_game_over.ani", t_data);
// Items // Items
asset->add("/data/items/items.png", t_bitmap); asset->add("/data/items/items.png", t_bitmap);