phaser - v3.90.0
    Preparing search index...

    Type Alias GenerateGridVertsResult

    type GenerateGridVertsResult = {
        alphas?: number | number[];
        colors?: number | number[];
        indices: number[];
        uvs: number[];
        verts: number[];
    }
    Index

    Properties

    alphas?: number | number[]

    An array of alpha values, one per vertex, or a single alpha value applied to all vertices.

    colors?: number | number[]

    An array of colors, one per vertex, or a single color value applied to all vertices.

    indices: number[]

    An array of vertex indexes. This array will be empty if the tile parameter was true.

    uvs: number[]

    An array of UV values, two per vertex.

    verts: number[]

    An array of vertex values in x, y pairs.