mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-08 23:07:42 +00:00
Implement CStateManager::Update
This commit is contained in:
@@ -50,4 +50,9 @@ void CDecalManager::AddToRenderer(const zeus::CFrustum& frustum, const CStateMan
|
||||
}
|
||||
}
|
||||
|
||||
void CDecalManager::Update(float dt, CStateManager& mgr)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -33,6 +33,7 @@ public:
|
||||
static void Initialize();
|
||||
static void Shutdown();
|
||||
static void AddToRenderer(const zeus::CFrustum& frustum, const CStateManager& mgr);
|
||||
static void Update(float dt, CStateManager& mgr);
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
@@ -17,6 +17,8 @@ static logvisor::Module Log("urde::CElementGen");
|
||||
|
||||
static bool s_inCreateNewParticles = false;
|
||||
|
||||
CRandom16 CElementGen::g_GlobalSeed = 99;
|
||||
|
||||
int CElementGen::g_ParticleAliveCount;
|
||||
int CElementGen::g_ParticleSystemAliveCount;
|
||||
s32 CElementGen::g_FreeIndex;
|
||||
|
||||
@@ -25,7 +25,9 @@ class CParticleElectric;
|
||||
|
||||
class CElementGen : public CParticleGen
|
||||
{
|
||||
static CRandom16 g_GlobalSeed;
|
||||
public:
|
||||
static void SetGlobalSeed(u16 seed) { g_GlobalSeed.SetSeed(seed); }
|
||||
enum class EModelOrientationType
|
||||
{
|
||||
Normal,
|
||||
|
||||
@@ -10,6 +10,8 @@
|
||||
namespace urde
|
||||
{
|
||||
|
||||
CRandom16 CParticleElectric::g_GlobalSeed = 99;
|
||||
|
||||
void CParticleElectric::RenderSwooshes()
|
||||
{
|
||||
}
|
||||
|
||||
@@ -13,7 +13,9 @@ class CElementGen;
|
||||
|
||||
class CParticleElectric : public CParticleGen
|
||||
{
|
||||
static CRandom16 g_GlobalSeed;
|
||||
public:
|
||||
static void SetGlobalSeed(u16 seed) { g_GlobalSeed.SetSeed(seed); }
|
||||
struct CLineManager
|
||||
{
|
||||
std::unique_ptr<CParticleSwoosh> SSWH;
|
||||
|
||||
Reference in New Issue
Block a user