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
| Name | Type | Access | Description |
|---|
flipCoordinateSystem | boolean | Read | Determines whether the coordinate system is inverted during export |
enableMaterials | boolean | Read | Controls whether material data is written to the COLLADA file |
indented | boolean | Read | Specifies whether the output XML is formatted with indentation for readability |
Methods
| Signature | Description |
|---|
constructor() | Creates a new ColladaSaveOptions instance with default values |
See Also