Editor API Reference - v1.1.4
    Preparing search index...

    Type Alias SceneImportSettings

    Import settings used when uploading a scene (fbx etc.).

    type SceneImportSettings = {
        animCurveTolerance?: number;
        animEnableCubic?: boolean;
        animSampleRate?: number;
        animUseFbxFilename?: boolean;
        overwriteAnimation?: boolean;
        overwriteMaterial?: boolean;
        overwriteModel?: boolean;
        overwriteTexture?: boolean;
        pow2?: boolean;
        searchRelatedAssets?: boolean;
        useGlb?: boolean;
    }
    Index

    Properties

    animCurveTolerance?: number

    The animation curve tolerance. Defaults to 0.

    animEnableCubic?: boolean

    Whether to enable cubic curves. Defaults to false.

    animSampleRate?: number

    The desired animation sample rate. Defaults to 10.

    animUseFbxFilename?: boolean

    Whether to use the fbx filename for animation names. Defaults to false.

    overwriteAnimation?: boolean

    Whether to overwrite existing animations or create new ones. Defaults to true.

    overwriteMaterial?: boolean

    Whether to overwrite existing materials or create new ones. Defaults to true.

    overwriteModel?: boolean

    Whether to overwrite existing model or create a new one. Defaults to true.

    overwriteTexture?: boolean

    Whether to overwrite existing textures or create new ones. Defaults to true.

    pow2?: boolean

    Whether to resize embedded textures to power of 2. Defaults to true.

    searchRelatedAssets?: boolean

    Whether to search for target assets to update throughout the whole project instead of just the same folder. Defaults to true.

    useGlb?: boolean

    Whether to convert models to GLB. Defaults to true.