babylon.quarks - v0.19.0
    Preparing search index...

    Interface RectangleEmitterParameters

    Interface representing the parameters for a rectangle emitter.

    interface RectangleEmitterParameters {
        height?: number;
        mode?: EmitterMode;
        speed?: ValueGenerator | FunctionValueGenerator;
        spread?: number;
        thickness?: number;
        width?: number;
    }
    Index

    Properties

    height?: number

    The height of the rectangle.

    The mode of the emitter. EmitterMode

    The speed of the emitter start point travels when mode is EmitterMode.Loop or EmitterMode.PingPong. EmitterMode

    spread?: number

    The length of segment of which emitter point converges at the start and end, when mode is EmitterMode.Loop or EmitterMode.PingPong. EmitterMode

    thickness?: number

    The thickness of the ring. 1 is a full rectangle, 0 is a ring with 0 radius.

    width?: number

    The width of the rectangle.