ParticlesMaterial.EmissionShape/emissionShape - multiple declarations
Function ParticlesMaterial.emissionShape
Particles will be emitted inside this region. Use emissionshape
constants for values.
ParticlesMaterial . EmissionShape emissionShape() nothrow @property @nogc;
void emissionShape
(
long v
) nothrow @property @nogc;
Enum ParticlesMaterial.EmissionShape
enum EmissionShape
: int { ... }
Enum members
Name | Description |
---|---|
emissionShapeBox
|
Particles will be emitted in the volume of a box. |
emissionShapeDirectedPoints
|
Particles will be emitted at a position determined by sampling a random point on the emissionPointTexture . Particle velocity and rotation will be set based on emissionNormalTexture . Particle color will be modulated by emissionColorTexture .
|
emissionShapeMax
|
Represents the size of the emissionshape enum.
|
emissionShapePoint
|
All particles will be emitted from a single point. |
emissionShapePoints
|
Particles will be emitted at a position determined by sampling a random point on the emissionPointTexture . Particle color will be modulated by emissionColorTexture .
|
emissionShapeSphere
|
Particles will be emitted in the volume of a sphere. |