Interface WangColor

Wang color.

interface WangColor {
    class?: string;
    color: string;
    name: string;
    probability: number;
    properties?: AnyProperty[];
    tile: number;
}

Properties

class?: string

Optional class of the Wang color.

color: string

The color.

name: string

The name.

probability: number

Probability used when randomizing.

properties?: AnyProperty[]

Optional custom properties.

tile: number

Local ID of tile representing the Wang color.

Generated using TypeDoc