mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 12:42:11 +00:00
c2a91148f3
The particles for the flame, frost and storm atronachs work correctly now.
51 lines
1.4 KiB
C++
51 lines
1.4 KiB
C++
#ifndef OENGINE_OGRE_PARTICLES_H
|
|
#define OENGINE_OGRE_PARTICLES_H
|
|
|
|
#include <OgreParticleEmitterFactory.h>
|
|
#include <OgreParticleAffectorFactory.h>
|
|
|
|
/** Factory class for NifEmitter. */
|
|
class NifEmitterFactory : public Ogre::ParticleEmitterFactory
|
|
{
|
|
public:
|
|
/** See ParticleEmitterFactory */
|
|
Ogre::String getName() const
|
|
{ return "Nif"; }
|
|
|
|
/** See ParticleEmitterFactory */
|
|
Ogre::ParticleEmitter* createEmitter(Ogre::ParticleSystem *psys);
|
|
};
|
|
|
|
/** Factory class for GrowFadeAffector. */
|
|
class GrowFadeAffectorFactory : public Ogre::ParticleAffectorFactory
|
|
{
|
|
/** See Ogre::ParticleAffectorFactory */
|
|
Ogre::String getName() const
|
|
{ return "GrowFade"; }
|
|
|
|
/** See Ogre::ParticleAffectorFactory */
|
|
Ogre::ParticleAffector *createAffector(Ogre::ParticleSystem *psys);
|
|
};
|
|
|
|
/** Factory class for GravityAffector. */
|
|
class GravityAffectorFactory : public Ogre::ParticleAffectorFactory
|
|
{
|
|
/** See Ogre::ParticleAffectorFactory */
|
|
Ogre::String getName() const
|
|
{ return "Gravity"; }
|
|
|
|
/** See Ogre::ParticleAffectorFactory */
|
|
Ogre::ParticleAffector *createAffector(Ogre::ParticleSystem *psys);
|
|
};
|
|
|
|
struct NiNodeHolder
|
|
{
|
|
std::vector<Ogre::Bone*> mBones;
|
|
|
|
// Ogre::Any needs this for some reason
|
|
friend std::ostream& operator<<(std::ostream& o, const NiNodeHolder& r)
|
|
{ return o; }
|
|
};
|
|
|
|
#endif /* OENGINE_OGRE_PARTICLES_H */
|