Skip to content

EmitterShape Enum

Definition

Namespace: Brine2D.Systems.Rendering

Shape of particle emitter spawn area.

C#
public enum EmitterShape

Fields

Circle 0

Spawn within a circle radius \(default\). Uses SpawnRadius property.

Box 1

Spawn within a rectangular area. Uses ShapeSize property \(width, height\).

Line 2

Spawn along a line. Uses ShapeSize.X property for line length.

Cone 3

Spawn within a cone \(directional\). Uses SpawnRadius and ConeAngle properties.

Point 4

Spawn at exact position \(point emitter\). Good for explosions.