86 return FogParticleSystemInternal::isEnabled();
103 return FogParticleSystemInternal::getEmitter();
107 return FogParticleSystemInternal::getEffectColorAdd();
115 return FogParticleSystemInternal::getEffectColorMul();
122 inline const string&
getId()
override {
123 return FogParticleSystemInternal::getId();
127 return FogParticleSystemInternal::isContributesShadows();
135 return FogParticleSystemInternal::isReceivesShadows();
143 return FogParticleSystemInternal::isPickable();
147 FogParticleSystemInternal::setPickable(
pickable);
227 return FogParticleSystemInternal::isActive();
231 return FogParticleSystemInternal::isAutoEmit();
235 return FogParticleSystemInternal::emitParticles();
242 return FogParticleSystemInternal::getLocalTransformations();
245 FogParticleSystemInternal::setLocalTransformations(transformations);
@ ENTITYTYPE_FOGPARTICLESYSTEM
Fog particle system entity to be used with engine class.
FogParticleSystem(const string &id, ParticleEmitter *emitter, int32_t maxPoints, float pointSize, Texture *texture=nullptr, int32_t textureHorizontalSprites=1, int32_t textureVerticalSprites=1, float fps=10.0f)
Public constructor.
void updateParticles() override
Updates the particle entity.
const Matrix4x4 & getTransformationsMatrix() const override
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.
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
Update transformations.
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.
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
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.
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
Particle system group, which combines several particle systems into a group, to be used with engine c...
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
BoundingBox boundingBoxTransformed
int32_t textureHorizontalSprites
ParticleEmitter * emitter
int32_t textureVerticalSprites
void updateInternal()
Update bounding volume.
Particle system entity interface.
Particle emitter interface.