mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 15:47:46 +00:00
CParticleGen inheritance fix
This commit is contained in:
@@ -1,17 +1,41 @@
|
||||
#ifndef __RETRO_CPARTICLESWOOSH_HPP__
|
||||
#define __RETRO_CPARTICLESWOOSH_HPP__
|
||||
|
||||
#include "CElementGen.hpp"
|
||||
#include "CParticleGen.hpp"
|
||||
#include "CToken.hpp"
|
||||
|
||||
namespace Retro
|
||||
{
|
||||
class CSwooshDescription;
|
||||
|
||||
class CParticleSwoosh : public CElementGen
|
||||
class CParticleSwoosh : public CParticleGen
|
||||
{
|
||||
public:
|
||||
CParticleSwoosh(const TToken<CSwooshDescription>& desc, int);
|
||||
|
||||
void Update(double);
|
||||
void Render();
|
||||
void SetOrientation(const Zeus::CTransform&);
|
||||
void SetTranslation(const Zeus::CVector3f&);
|
||||
void SetGlobalOrientation(const Zeus::CTransform&);
|
||||
void SetGlobalTranslation(const Zeus::CVector3f&);
|
||||
void SetGlobalScale(const Zeus::CVector3f&);
|
||||
void SetLocalScale(const Zeus::CVector3f&);
|
||||
void SetParticleEmission(bool);
|
||||
void SetModulationColor(const Zeus::CColor&);
|
||||
const Zeus::CTransform& GetOrientation() const;
|
||||
const Zeus::CVector3f& GetTranslation() const;
|
||||
const Zeus::CTransform& GetGlobalOrientation() const;
|
||||
const Zeus::CVector3f& GetGlobalTranslation() const;
|
||||
const Zeus::CVector3f& GetGlobalScale() const;
|
||||
const Zeus::CColor& GetModulationColor() const;
|
||||
bool IsSystemDeletable() const;
|
||||
std::pair<Zeus::CAABox, bool> GetBounds() const;
|
||||
u32 GetParticleCount() const;
|
||||
bool SystemHasLight() const;
|
||||
CLight GetLight() const;
|
||||
bool GetParticleEmission() const;
|
||||
void DestroyParticles();
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user