31ParticleSystemGroup::ParticleSystemGroup(
const string&
id,
bool autoEmit,
bool contributesShadows,
bool receivesShadows,
const vector<ParticleSystemEntity*>& particleSystems) :
32 id(id), autoEmit(autoEmit), contributesShadows(contributesShadows), receivesShadows(receivesShadows), particleSystems(particleSystems)
38 this->contributesShadows =
false;
39 this->receivesShadows =
false;
85 if (this->enabled ==
enabled)
return;
110 for (
auto particleSystem:
particleSystems) particleSystem->updateParticles();
120 if (this->frustumCulling ==
true) {
void deregisterEntity(Entity *entity)
Removes a entity from internal lists, those entities can also be sub entities from entity hierarchy o...
void registerEntity(Entity *entity)
Adds a entity to internal lists, those entities can also be sub entities from entity hierarchy or par...
Fog particle system entity to be used with engine class.
void setParentEntity(Entity *entity) override
Set parent entity, needs to be called before adding to engine.
Object 3D to be used with engine class.
Object particle system entity to be used with engine class.
void setParentEntity(Entity *entity) override
Set parent entity, needs to be called before adding to engine.
Particle system group, which combines several particle systems into a group, to be used with engine c...
void updateParticles() override
Updates the particle entity.
BoundingBox boundingBoxTransformed
void dispose() override
Dispose this object 3d.
vector< ParticleSystemEntity * > particleSystems
void initialize() override
Initiates this object 3d.
void update() override
Computes transformation matrix.
void fromTransformations(const Transformations &transformations) override
Set up this transformations from given transformations.
~ParticleSystemGroup()
Destructor.
void setFrustumCulling(bool frustumCulling) override
Set frustum culling.
void setAutoEmit(bool autoEmit) override
Set auto emit.
void setEngine(Engine *engine) override
Set up engine.
void setEnabled(bool enabled) override
Enable/disable rendering.
void setRenderer(Renderer *renderer) override
Set up renderer.
Point particle system entity to be used with engine class.
void setParentEntity(Entity *entity) override
Set parent entity, needs to be called before adding to engine.
void set(const array< float, 4 > &color)
Set up color.
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
void fromBoundingVolumeWithTransformations(BoundingBox *original, const Transformations &transformations)
Create bounding volume from given original(of same type) with applied transformations.
Particle system entity interface.
virtual void updateEntity(Entity *entity)=0
Updates a entity.
virtual void addEntity(Entity *entity)=0
Adds a entity.
virtual void removeEntity(Entity *entity)=0
Removes a entity.