Interface EmitterShape

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

Implemented by

Properties

Methods

Properties

type: string

Methods

  • Parameters

    Returns void

  • Parameters

    Returns void