Illutions Engine API - v0.26.0
    Preparing search index...

    Interface EnvCtrlsCfg

    Defines the environment controls settings for THREE.Scene.environment and THREE.Scene.background.

    interface EnvCtrlsCfg {
        backgroundBlurriness: number;
        backgroundIntensity: number;
        dataType: "halfFloat" | "float";
        enable: boolean;
        environmentIntensity: number;
        load: boolean;
        map: string[];
        rotation: { x: number; y: number; z: number };
        rotationSpeed: number;
        type: "hdr" | "exr" | "texture";
    }
    Index
    backgroundBlurriness: number

    Sets the blurriness of the background.

    0
    
    backgroundIntensity: number

    Attenuates the color of the background.

    0
    
    dataType: "halfFloat" | "float"

    Specifies the texture data type used by EXR and HDR loaders.

    'halfFloat'
    
    enable: boolean

    Enables or disables environment and background map handling.

    false
    
    environmentIntensity: number

    Attenuates the color of the environment.

    1.8
    
    load: boolean

    Loads the EXR or HDR loader via dynamic import.

    false
    
    map: string[]

    Ordered paths to the environment map. The first map is used for THREE.Scene.environment and THREE.Scene.background. Additional maps are loaded sequentially and replace only THREE.Scene.background.

    []
    
    rotation: { x: number; y: number; z: number }

    Environment and background rotation values in degrees.

    { x: 0, y: 0, z: 0 }
    
    rotationSpeed: number

    Rotation speed of the environment and background map.

    0
    
    type: "hdr" | "exr" | "texture"

    Specifies the type of environment map file.

    'exr'