d_a_obj_fallobj debug work + dVibration_c alignment (#3048)

* d_a_obj_fallobj debug

* fix dVibration_c alignment

* fix

* pr comments
This commit is contained in:
Niklas Bauer
2026-01-20 02:58:59 +01:00
committed by GitHub
parent 87a3705039
commit 1817d3123f
3 changed files with 86 additions and 41 deletions
+5 -3
View File
@@ -44,9 +44,11 @@ public:
int Draw();
int Delete();
u32 getTime() { return fopAcM_GetParamBit(this, 8, 8); }
u32 getPos() { return fopAcM_GetParamBit(this, 0x14, 8); }
static BOOL checkFallStart(fopAc_ac_c* actor) { return actor->speed.y != 0.0f; }
u8 getTime() { return fopAcM_GetParamBit(this, 8, 8); }
u8 getPos() { return fopAcM_GetParamBit(this, 0x14, 8); }
bool checkFallStart() {
return this->speed.y != 0.0f;
};
private:
/* 0x5A0 */ request_of_phase_process_class mPhaseReq;