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

CFlaahgraTentacle implementations (needs testing)

This commit is contained in:
2019-06-09 17:09:07 -07:00
parent 77d0ef942d
commit b251bc541f
8 changed files with 324 additions and 3 deletions

View File

@@ -242,12 +242,12 @@ void CScriptEffect::Render(const CStateManager& mgr) const {
*/
if (x104_particleSystem && x104_particleSystem->GetParticleCountAll() > 0) {
g_NumParticlesRendered += x104_particleSystem->GetParticleCountAll();
x104_particleSystem->Render(GetActorLights());
x104_particleSystem->Render(x138_actorLights.get());
}
if (xf4_electric && xf4_electric->GetParticleCount() > 0) {
g_NumParticlesRendered += xf4_electric->GetParticleCount();
xf4_electric->Render(GetActorLights());
xf4_electric->Render(x138_actorLights.get());
}
}