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

Properly cleanup Xorg in visigen, various fixes and cleanups in URDE, more CRidley imps

This commit is contained in:
2019-11-19 15:06:25 -08:00
parent 4762c7b832
commit 8b6dff70b4
20 changed files with 610 additions and 190 deletions

View File

@@ -68,7 +68,7 @@ private:
int m_maxMAXP = 256;
u16 x94_randomSeed = g_GlobalSeed;
float x98_generatorRate = 1.f;
float x9c_cextValues[16] = {};
float x9c_externalVars[16] = {};
zeus::CVector3f xdc_translation;
zeus::CVector3f xe8_globalTranslation;
@@ -186,8 +186,8 @@ public:
u32 GetParticleCountAll() const { return x264_recursiveParticleCount; }
void EndLifetime();
void ForceParticleCreation(int amount);
float GetCEXTValue(int i) const { return x9c_cextValues[i]; }
void SetCEXTValue(int i, float v) { x9c_cextValues[i] = v; }
float GetExternalVar(int i) const { return x9c_externalVars[i]; }
void SetCEXTValue(int i, float v) { x9c_externalVars[i] = v; }
bool InternalUpdate(double);
void RenderModels(const CActorLights* actLights);