102 return ObjectParticleSystemInternal::isEnabled();
120 return ObjectParticleSystemInternal::getEmitter();
124 return ObjectParticleSystemInternal::getEffectColorAdd();
132 return ObjectParticleSystemInternal::getEffectColorMul();
139 inline const string&
getId()
override {
140 return ObjectParticleSystemInternal::getId();
144 return ObjectParticleSystemInternal::isContributesShadows();
152 return ObjectParticleSystemInternal::isReceivesShadows();
160 return ObjectParticleSystemInternal::isPickable();
164 ObjectParticleSystemInternal::setPickable(
pickable);
244 return ObjectParticleSystemInternal::isActive();
248 return ObjectParticleSystemInternal::isAutoEmit();
252 return ObjectParticleSystemInternal::emitParticles();
259 return ObjectParticleSystemInternal::getLocalTransformations();
262 ObjectParticleSystemInternal::setLocalTransformations(transformations);
@ ENTITYTYPE_OBJECTPARTICLESYSTEM
Object particle system entity to be used with engine class.
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
ObjectParticleSystem(const string &id, Model *model, const Vector3 &scale, bool autoEmit, bool contributesShadows, bool receivesShadows, int32_t maxCount, ParticleEmitter *emitter)
Public constructor.
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.
const vector< Object3D * > & getEnabledObjects()
bool isContributesShadows() override
const vector< Object3D * > & getObjects()
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...
Representation of a 3d model.
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Particle system which displays objects as particles.
BoundingBox boundingBoxTransformed
ParticleEmitter * emitter
vector< Object3D * > objects
vector< Object3D * > enabledObjects
Particle system entity interface.
Particle emitter interface.