Interface GridEmitterParameters

Interface representing the parameters for a grid emitter.

interface GridEmitterParameters {
    column?: number;
    height?: number;
    row?: number;
    width?: number;
}

Properties

column?: number

The number of columns in the grid.

height?: number

The height of the grid.

row?: number

The number of rows in the grid.

width?: number

The width of the grid.