ColladaSaveOptions

ColladaSaveOptions

Overview

ColladaSaveOptions controls how a Scene is serialised to COLLADA (.dae) format. Construct an instance, configure the desired properties, and pass it to Scene.save() to override the built-in export defaults. Typical settings include output coordinate-system handedness, floating-point precision, whether binary buffers are embedded, and format-version selection. When Scene.save() receives only a file path, ColladaFormat supplies the default export configuration automatically.

Properties

NameTypeAccessDescription
flipCoordinateSystembooleanReadDetermines whether the coordinate system is inverted during export
enableMaterialsbooleanReadControls whether material data is written to the COLLADA file
indentedbooleanReadSpecifies whether the output XML is formatted with indentation for readability

Methods

SignatureDescription
constructor()Creates a new ColladaSaveOptions instance with default values

See Also