2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-11 07:07:42 +00:00

Nearly finish CScriptWater

This commit is contained in:
Jack Andersen
2017-08-12 21:56:35 -10:00
parent e0efcc0e5c
commit e25d2a423d
29 changed files with 1059 additions and 372 deletions

View File

@@ -288,7 +288,7 @@ void CActor::SetRotation(const zeus::CQuaternion &q)
x34_transform = q.toTransform(x34_transform.origin);
xe4_27_ = true;
xe4_28_ = true;
xe4_29_ = true;
xe4_29_actorLightsDirty = true;
}
void CActor::SetTranslation(const zeus::CVector3f& tr)
@@ -296,7 +296,7 @@ void CActor::SetTranslation(const zeus::CVector3f& tr)
x34_transform.origin = tr;
xe4_27_ = true;
xe4_28_ = true;
xe4_29_ = true;
xe4_29_actorLightsDirty = true;
}
void CActor::SetTransform(const zeus::CTransform& tr)
@@ -304,7 +304,7 @@ void CActor::SetTransform(const zeus::CTransform& tr)
x34_transform = tr;
xe4_27_ = true;
xe4_28_ = true;
xe4_29_ = true;
xe4_29_actorLightsDirty = true;
}
void CActor::SetAddedToken(u32 tok) { xcc_addedToken = tok; }