En_Floormas (#307)

* En_Floormas

* Format
This commit is contained in:
Maide
2021-11-04 22:30:05 +00:00
committed by GitHub
parent 31e4089a4b
commit 418e09bf6f
5 changed files with 1115 additions and 93 deletions
File diff suppressed because it is too large Load Diff
@@ -7,11 +7,32 @@ struct EnFloormas;
typedef void (*EnFloormasActionFunc)(struct EnFloormas*, GlobalContext*);
#define ENFLOORMAS_GET_7FFF(thisx) ((thisx)->params & 0x7FFF)
#define ENFLOORMAS_GET_8000(thisx) ((thisx)->params & 0x8000)
enum {
/* 0x00 */ ENFLOORMAS_GET_7FFF_0,
/* 0x10 */ ENFLOORMAS_GET_7FFF_10 = 0x10,
/* 0x20 */ ENFLOORMAS_GET_7FFF_20 = 0x20,
/* 0x40 */ ENFLOORMAS_GET_7FFF_40 = 0x40,
};
typedef struct EnFloormas {
/* 0x0000 */ Actor actor;
/* 0x0144 */ char unk_144[0x44];
/* 0x0144 */ SkelAnime skelAnime;
/* 0x0188 */ EnFloormasActionFunc actionFunc;
/* 0x018C */ char unk_18C[0x214];
/* 0x018C */ u8 unk_18C;
/* 0x018E */ s16 unk_18E;
/* 0x0190 */ s16 unk_190;
/* 0x0192 */ s16 unk_192;
/* 0x0194 */ s16 unk_194;
/* 0x0196 */ Vec3s jointTable[25];
/* 0x022C */ Vec3s morphTable[25];
/* 0x02C4 */ f32 unk_2C4;
/* 0x02C8 */ f32 unk_2C8;
/* 0x02CC */ f32 unk_2CC;
/* 0x02D0 */ Vec3f unk_2D0[11];
/* 0x0354 */ ColliderCylinder collider;
} EnFloormas; // size = 0x3A0
extern const ActorInit En_Floormas_InitVars;