CPUParticles.EmissionShape/emissionShape - multiple declarations

Function CPUParticles.emissionShape

Particles will be emitted inside this region. See emissionshape for possible values.

CPUParticles.EmissionShape emissionShape() nothrow @property @nogc;

void emissionShape (
  long v
) nothrow @property @nogc;

Enum CPUParticles.EmissionShape

enum EmissionShape : int { ... }

Enum members

NameDescription
emissionShapeBox Particles will be emitted in the volume of a box.
emissionShapeDirectedPoints Particles will be emitted at a position chosen randomly among emissionPoints. Particle velocity and rotation will be set based on emissionNormals. Particle color will be modulated by emissionColors.
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 chosen randomly among emissionPoints. Particle color will be modulated by emissionColors.
emissionShapeSphere Particles will be emitted in the volume of a sphere.