ColladaPlugin

Overview

ColladaPlugin registers COLLADA (.dae) I/O support in the Aspose.3D for TypeScript runtime. It wires together the format detector, importer, and exporter components for the COLLADA (.dae) format so that Scene.open() and Scene.save() can transparently read and write .dae files without any explicit format configuration by the caller. Plugins are initialised automatically when the @aspose-3d/api package is loaded at application startup; you do not need to instantiate or register them directly in your own code.

Methods

SignatureDescription
constructor()
getInstance()ColladaPluginReturns the singleton ColladaPlugin instance
createImporter()ImporterCreates an Importer for reading COLLADA files
createExporter()ExporterCreates an Exporter for writing COLLADA files
getFileFormat()FileFormat` returns the FileFormat object describing the COLLADA format
getImporter()ImporterReturns the existing Importer associated with this plugin
getExporter()ExporterReturns the existing Exporter associated with this plugin
getFormatDetector()FormatDetectorReturns a FormatDetector for identifying COLLADA files
createLoadOptions()ColladaLoadOptionsCreates a ColladaLoadOptions object for import settings
createSaveOptions()SaveOptionsCreates a SaveOptions object for export settings

See Also