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

Various implementatations

This commit is contained in:
2016-04-29 03:08:46 -07:00
parent 10dcbaa6c9
commit 00a98bce85
37 changed files with 341 additions and 138 deletions

View File

@@ -65,7 +65,8 @@ class CModelData
{
friend class CActor;
zeus::CVector3f x0_particleScale;
std::unique_ptr<CAnimData> xc_animData;
bool xc_ = false;
std::unique_ptr<CAnimData> x10_animData;
union
{
struct
@@ -128,7 +129,7 @@ public:
void Render(EWhichModel, const zeus::CTransform& xf,
const CActorLights* lights, const CModelFlags& drawFlags) const;
CAnimData* AnimationData() { return xc_animData.get(); }
CAnimData* AnimationData() { return x10_animData.get(); }
};
}