From be7cff0460a1f1f7be55464052fc68b9318d1122 Mon Sep 17 00:00:00 2001 From: roeming Date: Thu, 17 Jul 2025 14:55:47 -0400 Subject: [PATCH] link ant_anim --- config/GAFE01_00/foresta/splits.txt | 2 +- configure.py | 1 + src/data/npc/model/mdl/act_ant_anim.c | 12 ++++++++++++ 3 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 src/data/npc/model/mdl/act_ant_anim.c diff --git a/config/GAFE01_00/foresta/splits.txt b/config/GAFE01_00/foresta/splits.txt index 077b4911..fcd53195 100644 --- a/config/GAFE01_00/foresta/splits.txt +++ b/config/GAFE01_00/foresta/splits.txt @@ -3639,7 +3639,7 @@ data/npc/model/tex/bev_1.c: data/npc/model/mdl/act_ant.c: .data start:0x00096000 end:0x00096328 -data/dataobject/dataobject_96328.c: +data/npc/model/mdl/act_ant_anim.c: .data start:0x00096328 end:0x00096338 data/npc/model/mdl/ant_1.c: diff --git a/configure.py b/configure.py index 061a1635..2e988c87 100644 --- a/configure.py +++ b/configure.py @@ -2632,6 +2632,7 @@ config.libs = [ Object(Matching, "data/field/mvactor/title_demo.c"), Object(Matching, "data/field/mvactor/water_test.c"), Object(Matching, "data/npc/model/mdl/act_ant.c"), + Object(Matching, "data/npc/model/mdl/act_ant_anim.c"), ], ), ] diff --git a/src/data/npc/model/mdl/act_ant_anim.c b/src/data/npc/model/mdl/act_ant_anim.c new file mode 100644 index 00000000..35c6f2c7 --- /dev/null +++ b/src/data/npc/model/mdl/act_ant_anim.c @@ -0,0 +1,12 @@ +#include "libforest/gbi_extensions.h" +#include "PR/gbi.h" +#include "evw_anime.h" + +EVW_ANIME_SCROLL act_ant_evw_anime_1[] = { + { 2, -1, 32, 32 }, + { 1, 2, 32, 32 }, +}; + +EVW_ANIME_DATA act_ant_evw_anime[] = { + { -1, EVW_ANIME_TYPE_SCROLL2, act_ant_evw_anime_1 }, +};