Strata - v1.4.10
    Preparing search index...

    Interface VolumetricCloudOptions

    Options for creating a volumetric cloud material.

    interface VolumetricCloudOptions {
        cloudBase?: number;
        cloudColor?: Color;
        cloudHeight?: number;
        coverage?: number;
        dayNight?: Partial<DayNightConfig>;
        density?: number;
        lightSteps?: number;
        shadowColor?: Color;
        steps?: number;
        time?: number;
        wind?: Partial<WindConfig>;
    }
    Index

    Properties

    cloudBase?: number

    Base altitude of the cloud volume.

    cloudColor?: Color

    Base cloud color.

    cloudHeight?: number

    Height/thickness of the cloud volume.

    coverage?: number

    Cloud coverage (0-1).

    dayNight?: Partial<DayNightConfig>

    Day/night configuration.

    density?: number

    Cloud density (0-1).

    lightSteps?: number

    Light sampling steps. Higher = better shadows.

    shadowColor?: Color

    Cloud shadow color.

    steps?: number

    Raymarching steps. Higher = better quality but slower.

    time?: number

    Animation time.

    wind?: Partial<WindConfig>

    Wind configuration.