2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-15 06:46:08 +00:00

Minor CPhysicsActor fixes

This commit is contained in:
2020-12-13 14:57:21 -08:00
parent 82c62b0312
commit 1e8aa2581e
2 changed files with 18 additions and 27 deletions

View File

@@ -81,15 +81,10 @@ class CPhysicsActor : public CActor {
protected:
float xe8_mass;
float xec_massRecip;
float xf0_inertiaTensor;
float xf4_inertiaTensorRecip;
union {
struct {
bool xf8_24_movable : 1;
bool xf8_25_angularEnabled : 1;
};
u8 _dummy = 0;
};
float xf0_inertiaTensor = 0.f;
float xf4_inertiaTensorRecip = 0.f;
bool xf8_24_movable : 1 = true;
bool xf8_25_angularEnabled : 1 = false;
bool xf9_standardCollider = false;
zeus::CVector3f xfc_constantForce;
zeus::CAxisAngle x108_angularMomentum;