diff --git a/makefile.gfx b/makefile.gfx index 6132933bb..05e1abe12 100644 --- a/makefile.gfx +++ b/makefile.gfx @@ -155,16 +155,14 @@ cleananims: cleanplayeranims ANIM_OUT_DIR := $(DATA_OUT)/anims PLAYER_ANIM_IN_DIR := $(ACTOR_IN_DIR)/SpongeBob/SbAnim -# duff -# idlegeneric02 idlegeneric05 idlegeneric03 -# PLAYER_ANIM_LIST := buttbounce deathelectric deathfall electricshock fall fireaim firerecoill float getup hitground01 hover idleboots idlecoral \ -# idlecoral01 idlegeneric01 idlegeneric04 idlelauncher idlenet jumpend jumpstart karate \ -# knockback knockforward netfirelob netswipe netswipejump run runjumpend runjumpstart runstart runstop soakup teeterback teeterfront wakeup -PLAYER_ANIM_LIST := idlegeneric04 idlelauncher runstart run runstop +PLAYER_ANIM_LIST := buttbounce deathelectric deathfall electricshock fall fireaim firerecoill float getup hitground01 hover idleboots idlecoral \ + idlecoral01 idlegeneric01 idlegeneric02 idlegeneric03 idlegeneric04 idlegeneric05 idlelauncher idlenet jumpend jumpstart karate \ + knockback knockforward netfirelob netswipe netswipejump run runjumpend runjumpstart runstart runstop soakup teeterback teeterfront wakeup PLAYER_ANIM_IN := $(foreach FILE, $(PLAYER_ANIM_LIST),$(PLAYER_ANIM_IN_DIR)/$(FILE).gin) PLAYER_ANIM_OUT := $(ANIM_OUT_DIR)/Player.Abk +PLAYER_ANIM_INC := $(INC_DIR)/Player_Anim.h playeranims: $(PLAYER_ANIM_IN) @@ -173,7 +171,7 @@ cleanplayeranims: @$(ECHO) Player Anims Cleaned $(PLAYER_ANIM_OUT) : $(PLAYER_ANIM_IN) - @$(MKANIM3D) $(PLAYER_ANIM_IN) -o:$(PLAYER_ANIM_OUT) -s:256 + @$(MKANIM3D) $(PLAYER_ANIM_IN) -o:$(PLAYER_ANIM_OUT) -i:$(PLAYER_ANIM_INC) -s:256 GFX_DATA_OUT += $(PLAYER_ANIM_OUT)