From 02ff4fe225b552d69ddd7ba7d51787f473389dd3 Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Mon, 6 May 2024 00:47:29 +0200 Subject: [PATCH] fixed default graphics for growing or exploding BD engine elements --- src/conf_gfx.c | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/src/conf_gfx.c b/src/conf_gfx.c index 6263049d..71d13cd0 100644 --- a/src/conf_gfx.c +++ b/src/conf_gfx.c @@ -103,6 +103,20 @@ struct ConfigInfo image_config[] = // images for Boulder Dash style elements and actions + { "[bdx_default].exploding", "RocksElements.png" }, + { "[bdx_default].exploding.xpos", "0" }, + { "[bdx_default].exploding.ypos", "4" }, + { "[bdx_default].exploding.frames", "8" }, + { "[bdx_default].exploding.delay", "5" }, + { "[bdx_default].exploding.anim_mode", "linear" }, + + { "[bdx_default].growing", "RocksElements.png" }, + { "[bdx_default].growing.xpos", "0" }, + { "[bdx_default].growing.ypos", "4" }, + { "[bdx_default].growing.frames", "8" }, + { "[bdx_default].growing.delay", "4" }, + { "[bdx_default].growing.anim_mode", "linear" }, + { "bdx_player", UNDEFINED_FILENAME }, { "bdx_player.clone_from", "player_1" }, { "bdx_player.down", UNDEFINED_FILENAME }, @@ -153,8 +167,6 @@ struct ConfigInfo image_config[] = { "bdx_player.snapping.left.clone_from", "player_1.snapping.left" }, { "bdx_player.snapping.right", UNDEFINED_FILENAME }, { "bdx_player.snapping.right.clone_from", "player_1.snapping.right" }, - { "bdx_player.growing", UNDEFINED_FILENAME }, - { "bdx_player.growing.clone_from", "[default].exploding" }, { "bdx_player_glued", UNDEFINED_FILENAME }, { "bdx_player_glued.clone_from", "bdx_player" }, -- 2.34.1