Interface TextureBackgroundOptions

Texture background options

TextureBackgroundOptions

2024.3.7

yisky

interface TextureBackgroundOptions {
    blurriness?: number;
    intensity?: number;
    texture?:
        | string
        | CubeTexture
        | Texture
        | string[]
        | {
            mapping?: Mapping;
            url: string;
        };
}

Properties

blurriness?: number

Blurriness

TextureBackgroundOptions

intensity?: number

Intensity

TextureBackgroundOptions

texture?:
    | string
    | CubeTexture
    | Texture
    | string[]
    | {
        mapping?: Mapping;
        url: string;
    }

Texture

TextureBackgroundOptions