interface EmitterShape {
    type: string;
    clone(): EmitterShape;
    initialize(particle: Particle, emissionState: EmissionState): void;
    toJSON(): ShapeJSON;
    update(system: IParticleSystem, delta: number): void;
}

Implemented by

Properties

Methods

Properties

type: string

Methods

  • Returns ShapeJSON

  • Parameters

    Returns void