21PointsParticleSystem::PointsParticleSystem(
const string&
id,
ParticleEmitter* emitter, int32_t maxPoints,
float pointSize,
bool autoEmit,
Texture* texture, int32_t textureHorizontalSprites, int32_t textureVerticalSprites,
float fps) :
22 PointsParticleSystemInternal(id, emitter, maxPoints, pointSize, autoEmit, texture, textureHorizontalSprites, textureVerticalSprites, fps)
28 PointsParticleSystemInternal::initialize();
33 PointsParticleSystemInternal::fromTransformations(transformations);
39 PointsParticleSystemInternal::update();
46 if (this->enabled ==
enabled)
return;
60 PointsParticleSystemInternal::setEnabled(
enabled);
65 PointsParticleSystemInternal::updateParticles();
77 if (this->frustumCulling ==
true) {
93 PointsParticleSystemInternal::setAutoEmit(
autoEmit);
100 PointsParticleSystemInternal::dispose();
108 PointsParticleSystemInternal::setEngine(
engine);
113 PointsParticleSystemInternal::setRenderer(
renderer);
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...
Point particle system entity to be used with engine class.
void updateParticles() override
Updates the particle entity.
void dispose() override
Dispose this object 3d.
void initialize() override
Initiates this object 3d.
void update() override
Update transformations.
void fromTransformations(const Transformations &transformations) override
Set up this transformations from given transformations.
bool isAutoEmit() 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.
bool isFrustumCulling() override
void setRenderer(Renderer *renderer) override
Set up renderer.
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
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.
Particle emitter interface.