69 for (
auto particleSystem:
particleSystems) particleSystem->applyParentTransformations(parentTransformations);
176 inline const string&
getId()
override {
209 this->pickable =
true;
290 if (particleSystem->isActive() ==
true)
return true;
300 auto emittedParticles = 0;
301 for (
auto particleSystem:
particleSystems) emittedParticles+= particleSystem->emitParticles();
302 return emittedParticles;
friend class ParticleSystemGroup
@ ENTITYTYPE_PARTICLESYSTEMGROUP
Object particle system entity to be used with engine class.
void setReceivesShadows(bool receivesShadows) override
Enable/disable receives shadows.
void setContributesShadows(bool contributesShadows) override
Enable/disable contributes shadows.
Particle system group, which combines several particle systems into a group, to be used with engine c...
void updateParticles() override
Updates the particle entity.
const Matrix4x4 & getTransformationsMatrix() const override
BoundingBox boundingBoxTransformed
const Color4 & getEffectColorAdd() const override
The effect color will be added to fragment color.
ParticleEmitter * getEmitter() override
void setLocalTransformations(const Transformations &transformations) override
Set local transformations.
RenderPass getRenderPass() const override
void dispose() override
Dispose this object 3d.
vector< ParticleSystemEntity * > particleSystems
void setTranslation(const Vector3 &translation) override
Set translation.
void setParentEntity(Entity *entity) override
Set parent entity, needs to be called before adding to engine.
void removeRotation(const int idx) override
Remove rotation.
void setPivot(const Vector3 &pivot) override
Set pivot.
const int getRotationCount() const override
const Quaternion & getRotationsQuaternion() const override
void initialize() override
Initiates this object 3d.
bool isReceivesShadows() override
BoundingBox * getBoundingBox() override
void setRenderPass(RenderPass renderPass) override
Set render pass.
void setReceivesShadows(bool receivesShadows) override
Enable/disable receives shadows.
void addRotation(const Vector3 &axis, const float angle) override
Add rotation.
void update() override
Computes transformation matrix.
const string & getId() override
void setPickable(bool pickable) override
Set this object pickable.
const Transformations & getLocalTransformations() override
Entity * getParentEntity() override
void setEffectColorMul(const Color4 &effectColorMul) override
Set effect color that will be multiplied with fragment color.
const vector< ParticleSystemEntity * > & getParticleSystems()
bool isPickable() override
const Vector3 & getTranslation() const override
void fromTransformations(const Transformations &transformations) override
Set up this transformations from given transformations.
bool isAutoEmit() override
const Color4 & getEffectColorMul() const override
The effect color will be multiplied with fragment color.
const Vector3 & getScale() const override
const Vector3 & getPivot() const override
~ParticleSystemGroup()
Destructor.
BoundingBox * getBoundingBoxTransformed() override
void setScale(const Vector3 &scale) override
Set scale.
bool isContributesShadows() override
void applyParentTransformations(const Transformations &parentTransformations) override
Apply parent transformations.
const float getRotationAngle(const int idx) const override
const Transformations & getTransformations() const override
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.
Transformations localTransformations
EntityType getEntityType() override
const Vector3 & getRotationAxis(const int idx) const override
void setContributesShadows(bool contributesShadows) override
Enable/disable contributes shadows.
void setRotationAxis(const int idx, const Vector3 &axis) override
Set rotation axis.
bool isFrustumCulling() override
bool isEnabled() override
int32_t emitParticles() override
Adds particles to this particle entity at given position.
Rotation & getRotation(const int idx) override
Get rotation at given index.
void setEffectColorAdd(const Color4 &effectColorAdd) override
Set effect color that will be added to fragment color.
void setRenderer(Renderer *renderer) override
Set up renderer.
void setRotationAngle(const int idx, const float angle) override
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.
void fromBoundingVolume(BoundingBox *original)
Set up this bounding volume from given bounding volume.
void extend(BoundingBox *boundingBox)
Extend bounding box with given bounding box.
void update()
Updates this bounding box.
Particle system entity interface.
Particle emitter interface.