metaforce/Runtime/Particle/CParticleSwoosh.cpp

121 lines
1.9 KiB
C++
Raw Normal View History

#include "CParticleSwoosh.hpp"
2016-02-13 09:02:47 +00:00
namespace pshag
{
CParticleSwoosh::CParticleSwoosh(const TToken<CSwooshDescription>& desc, int)
2016-02-13 05:49:59 +00:00
{
}
void CParticleSwoosh::Update(double)
{
}
void CParticleSwoosh::Render()
{
}
void CParticleSwoosh::SetOrientation(const Zeus::CTransform&)
{
}
void CParticleSwoosh::SetTranslation(const Zeus::CVector3f&)
{
}
void CParticleSwoosh::SetGlobalOrientation(const Zeus::CTransform&)
{
}
void CParticleSwoosh::SetGlobalTranslation(const Zeus::CVector3f&)
{
}
void CParticleSwoosh::SetGlobalScale(const Zeus::CVector3f&)
{
}
void CParticleSwoosh::SetLocalScale(const Zeus::CVector3f&)
{
}
void CParticleSwoosh::SetParticleEmission(bool)
{
}
void CParticleSwoosh::SetModulationColor(const Zeus::CColor&)
{
}
const Zeus::CTransform& CParticleSwoosh::GetOrientation() const
{
2016-02-17 03:42:27 +00:00
static Zeus::CTransform dummy;
return dummy;
2016-02-13 05:49:59 +00:00
}
const Zeus::CVector3f& CParticleSwoosh::GetTranslation() const
{
2016-02-17 03:42:27 +00:00
static Zeus::CVector3f dummy;
return dummy;
2016-02-13 05:49:59 +00:00
}
const Zeus::CTransform& CParticleSwoosh::GetGlobalOrientation() const
{
2016-02-17 03:42:27 +00:00
static Zeus::CTransform dummy;
return dummy;
2016-02-13 05:49:59 +00:00
}
const Zeus::CVector3f& CParticleSwoosh::GetGlobalTranslation() const
{
2016-02-17 03:42:27 +00:00
static Zeus::CVector3f dummy;
return dummy;
2016-02-13 05:49:59 +00:00
}
const Zeus::CVector3f& CParticleSwoosh::GetGlobalScale() const
{
2016-02-17 03:42:27 +00:00
static Zeus::CVector3f dummy;
return dummy;
2016-02-13 05:49:59 +00:00
}
const Zeus::CColor& CParticleSwoosh::GetModulationColor() const
{
2016-02-17 03:42:27 +00:00
static Zeus::CColor dummy;
return dummy;
2016-02-13 05:49:59 +00:00
}
bool CParticleSwoosh::IsSystemDeletable() const
{
2016-02-17 03:42:27 +00:00
return false;
2016-02-13 05:49:59 +00:00
}
std::pair<Zeus::CAABox, bool> CParticleSwoosh::GetBounds() const
{
2016-02-17 03:42:27 +00:00
return std::make_pair(Zeus::CAABox(), false);
2016-02-13 05:49:59 +00:00
}
u32 CParticleSwoosh::GetParticleCount() const
{
2016-02-17 03:42:27 +00:00
return 0;
2016-02-13 05:49:59 +00:00
}
bool CParticleSwoosh::SystemHasLight() const
{
2016-02-17 03:42:27 +00:00
return false;
2016-02-13 05:49:59 +00:00
}
CLight CParticleSwoosh::GetLight() const
{
2016-02-17 03:42:27 +00:00
return CLight();
2016-02-13 05:49:59 +00:00
}
bool CParticleSwoosh::GetParticleEmission() const
{
2016-02-17 03:42:27 +00:00
return false;
2016-02-13 05:49:59 +00:00
}
void CParticleSwoosh::DestroyParticles()
{
}
}