FbxPlugin

Overview

FbxPlugin registers FBX (.fbx) I/O support in the Aspose.3D for TypeScript runtime. It wires together the format detector, importer, and exporter components for the FBX (.fbx) format so that Scene.open() and Scene.save() can transparently read and write .fbx 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()FbxPlugin
getFileFormat()FileFormatReturns the FileFormat object representing FBX
getImporter()ImporterReturns the Importer used to read FBX files
getExporter()ExporterReturns the Exporter used to write FBX files
getFormatDetector()FormatDetectorReturns the FormatDetector for identifying FBX files
createLoadOptions()FbxLoadOptionsCreates a default FbxLoadOptions object
createSaveOptions()FbxSaveOptionsCreates a default FbxSaveOptions object

See Also