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

D3D CElementGen rendering

This commit is contained in:
Jack Andersen
2016-02-16 17:42:27 -10:00
parent 468db3b203
commit 13e3afa72f
14 changed files with 429 additions and 16 deletions

View File

@@ -49,50 +49,68 @@ void CParticleSwoosh::SetModulationColor(const Zeus::CColor&)
const Zeus::CTransform& CParticleSwoosh::GetOrientation() const
{
static Zeus::CTransform dummy;
return dummy;
}
const Zeus::CVector3f& CParticleSwoosh::GetTranslation() const
{
static Zeus::CVector3f dummy;
return dummy;
}
const Zeus::CTransform& CParticleSwoosh::GetGlobalOrientation() const
{
static Zeus::CTransform dummy;
return dummy;
}
const Zeus::CVector3f& CParticleSwoosh::GetGlobalTranslation() const
{
static Zeus::CVector3f dummy;
return dummy;
}
const Zeus::CVector3f& CParticleSwoosh::GetGlobalScale() const
{
static Zeus::CVector3f dummy;
return dummy;
}
const Zeus::CColor& CParticleSwoosh::GetModulationColor() const
{
static Zeus::CColor dummy;
return dummy;
}
bool CParticleSwoosh::IsSystemDeletable() const
{
return false;
}
std::pair<Zeus::CAABox, bool> CParticleSwoosh::GetBounds() const
{
return std::make_pair(Zeus::CAABox(), false);
}
u32 CParticleSwoosh::GetParticleCount() const
{
return 0;
}
bool CParticleSwoosh::SystemHasLight() const
{
return false;
}
CLight CParticleSwoosh::GetLight() const
{
return CLight();
}
bool CParticleSwoosh::GetParticleEmission() const
{
return false;
}
void CParticleSwoosh::DestroyParticles()