ColladaImporter

Overview

ColladaImporter reads a COLLADA (.dae) file or binary buffer and reconstructs its scene graph as Aspose.3D for TypeScript objects including nodes, meshes, materials, and animations. It is invoked automatically by Scene.open() when the source file has the .dae extension or when a ColladaLoadOptions instance is provided explicitly. Pass ColladaLoadOptions to control which node hierarchies are loaded, how materials are resolved, and whether animation tracks are included during import.

Properties

NameTypeAccessDescription
name: stringReadHolds the identifier name of the importer
effect: stringReadHolds a string describing the effect or purpose of the importer

Methods

SignatureDescription
constructor()Creates a new instance of the ColladaImporter class
supportsFormat(fileFormat: FileFormat)booleanReturns true if the given FileFormat is supported by this importer
importScene(scene: Scene, stream: any, options: LoadOptions)Loads a COLLADA scene from a stream into the provided Scene using specified options

See Also