Type Alias TWallsState

TWallsState: {
    color: string;
    height: number;
    opacity: number;
    texture: undefined | { url: string };
    topColor?: string;
    topTexture: undefined | { url: string };
    type: "walls";
    visible: boolean;
}

Type declaration

  • color: string

    Color of the walls.

    #ffffff
    
  • height: number

    Height of the walls.

    0
    
  • opacity: number

    Opacity of the walls.

    1
    
  • texture: undefined | { url: string }

    Texture to apply to the geometry element.

  • OptionaltopColor?: string

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

  • topTexture: undefined | { url: string }

    Top texture to apply to the geometry element.

  • type: "walls"
  • visible: boolean

    Visibility of the walls.

    true