diff options
| author | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
|---|---|---|
| committer | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
| commit | 3bf9df6b2785fa6d951086978a3e66f49427166a (patch) | |
| tree | 2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /game/client/fx_trail.h | |
| download | archived-source-engine-2018-hl2-src-master.tar.xz archived-source-engine-2018-hl2-src-master.zip | |
Diffstat (limited to 'game/client/fx_trail.h')
| -rw-r--r-- | game/client/fx_trail.h | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/game/client/fx_trail.h b/game/client/fx_trail.h new file mode 100644 index 0000000..e618fd0 --- /dev/null +++ b/game/client/fx_trail.h @@ -0,0 +1,56 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +//=============================================================================// + +#ifndef FX_TRAIL_H +#define FX_TRAIL_H +#ifdef _WIN32 +#pragma once +#endif + +#include "particle_util.h" +#include "baseparticleentity.h" +#include "particle_prototype.h" + +class C_ParticleTrail : public C_BaseParticleEntity, public IPrototypeAppEffect +{ +public: + + DECLARE_CLASS( C_ParticleTrail, C_BaseParticleEntity ); + + C_ParticleTrail( void ); + virtual ~C_ParticleTrail( void ); + + void GetAimEntOrigin( IClientEntity *pAttachedTo, Vector *pAbsOrigin, QAngle *pAbsAngles ); + + void SetEmit( bool bEmit ); + bool ShouldEmit( void ) { return m_bEmit; } + + void SetSpawnRate( float rate ); + + +// C_BaseEntity. +public: + virtual void OnDataChanged(DataUpdateType_t updateType); + + virtual void Start( CParticleMgr *pParticleMgr, IPrototypeArgAccess *pArgs ); + + int m_nAttachment; + float m_flLifetime; // How long this effect will last + +private: + + float m_SpawnRate; // How many particles per second. + bool m_bEmit; // Keep emitting particles? + + TimedEvent m_ParticleSpawn; + CParticleMgr *m_pParticleMgr; + +private: + + C_ParticleTrail( const C_ParticleTrail & ); +}; + +#endif // FX_TRAIL_H |