Interface ProcessRawOptions

interface ProcessRawOptions {
    _testDataTextureComplete?: boolean;
    autoImportZipContents?: boolean;
    forceImporterReprocess?: boolean;
    generateMipmaps?: boolean;
    processImported?: boolean;
    processRaw?: boolean;
    replaceCameras?: boolean;
    replaceLights?: boolean;
    replaceMaterials?: boolean;
    rootPath?: string;
    [key: string]: any;
}

Hierarchy (view full)

Indexable

[key: string]: any

Properties

_testDataTextureComplete?: boolean

default = false, if set to true, it will test if the data textures are complete. [internal use]

autoImportZipContents?: boolean

default = true, if true, the importer will automatically import the contents of zip files, if zip importer is registered.

forceImporterReprocess?: boolean

default = false. If true, the importer will reprocess the imported objects, even if they are already processed.

generateMipmaps?: boolean

default = undefined, only used for textures

processImported?: boolean

Deprecated

use processRaw instead

processRaw?: boolean

default = true, toggle to control the processing of the raw objects in the proecssRaw method

replaceCameras?: boolean

If true, the importer will replace any three.js camera instances with upgraded cameras default = true

replaceLights?: boolean

If true, the importer will replace any three.js light instances with upgraded lights default = true

replaceMaterials?: boolean

If true, the importer will replace any three.js material instances with upgraded materials default = true

rootPath?: string

internal use

Generated using TypeDoc