class BoxEmitter
Defined in:
The C4Emitters.h
BoxEmitter
class represents a box emitter node in a world.
Definition
class BoxEmitter final : public Emitter
Constructor
BoxEmitter(const Vector3D& size);
Parameters
size |
The size of the box. |
Description
The BoxEmitter
class represents an emitter node that is shaped like a box whose dimensions are specified by the size
parameter. The associated BoxEmitterObject
can be used by a particle system to generate random points inside a box emitter volume.
Base Classes
Emitter |
A box emitter is a specific type of emitter. |
See Also