Type Alias TWallsState

TWallsState: {
    color: string | "initial";
    texture?: {
        url?: string;
    };
    topColor?: string | "initial";
    topTexture?: {
        url?: string;
    };
    type: "walls";
    visible: boolean;
}

Type declaration

  • color: string | "initial"

    Color of the walls.

  • Optionaltexture?: {
        url?: string;
    }

    Texture to apply to the geometry element.

    • Optionalurl?: string
  • OptionaltopColor?: string | "initial"

    Color of the top of walls, if not set, defaults to the color.

  • OptionaltopTexture?: {
        url?: string;
    }

    Top texture to apply to the geometry element.

    • Optionalurl?: string
  • type: "walls"
  • visible: boolean

    Visibility of the walls.