ColladaLoadOptions

ColladaLoadOptions

Overview

ColladaLoadOptions configures how a COLLADA (.dae) file is imported into a Scene. Construct an instance, set the desired properties, and pass it to Scene.open() alongside the file path to override the format defaults. Common settings cover which node hierarchies to load, how embedded materials are resolved, and whether animation data is included in the import. When no ColladaLoadOptions is supplied, Scene.open() applies the COLLADA (.dae) defaults defined by ColladaFormat.

Properties

NameTypeAccessDescription
flipCoordinateSystembooleanReadDetermines whether the coordinate system is inverted during import
enableMaterialsbooleanReadIndicates if material data should be parsed from the COLLADA file
scalenumberReadSpecifies a uniform scaling factor applied to the imported geometry
normalizeNormalbooleanReadSpecifies whether vertex normals are normalized after loading

Methods

SignatureDescription
constructor()Creates a new instance with default load settings

See Also