* En_Tite

* Fix
This commit is contained in:
Maide
2021-10-27 11:02:26 -03:00
committed by GitHub
parent a60c47a970
commit c97a8e5225
6 changed files with 1107 additions and 81 deletions
File diff suppressed because it is too large Load Diff
+25 -2
View File
@@ -7,11 +7,34 @@ struct EnTite;
typedef void (*EnTiteActionFunc)(struct EnTite*, GlobalContext*);
enum {
/* -4 */ ENTITE_MINUS_4 = -4,
/* -3 */ ENTITE_MINUS_3,
/* -2 */ ENTITE_MINUS_2,
/* -1 */ ENTITE_MINUS_1,
/* 0 */ ENTITE_MINUS_0,
};
typedef struct EnTite {
/* 0x0000 */ Actor actor;
/* 0x0144 */ char unk_144[0x170];
/* 0x0144 */ SkelAnime skelAnime;
/* 0x0188 */ Vec3s jointTable[25];
/* 0x021E */ Vec3s morphTable[25];
/* 0x02B4 */ EnTiteActionFunc actionFunc;
/* 0x02B8 */ char unk_2B8[0x14C];
/* 0x02B8 */ u8 unk_2B8;
/* 0x02B9 */ u8 unk_2B9;
/* 0x02BA */ s8 unk_2BA;
/* 0x02BB */ u8 unk_2BB;
/* 0x02BC */ s16 unk_2BC;
/* 0x02BE */ s16 unk_2BE;
/* 0x02C0 */ s32 unk_2C0;
/* 0x02C4 */ f32 unk_2C4;
/* 0x02C8 */ f32 unk_2C8;
/* 0x02CC */ f32 unk_2CC;
/* 0x02D0 */ Vec3f unk_2D0[9];
/* 0x033C */ Vec3f unk_33C[9];
/* 0x03A8 */ Gfx* unk_3A8;
/* 0x03AC */ ColliderSphere collider;
} EnTite; // size = 0x404
extern const ActorInit En_Tite_InitVars;