FbxImporter — Aspose.3D FOSS Java API Reference

FbxImporter — FBX format importer. Inherits from: IImporter.

Package: com.aspose.threed

Critical limitation in this edition: Binary FBX import always produces an empty scene. The importer reads and tokenizes the binary FBX structure, but the scene-graph construction step (parseScope() populates an objectMap that is never used to build scene nodes). No meshes, materials, or nodes will be present in the returned Scene regardless of the FBX file content. Additionally, is64bit() always returns true regardless of file version, which means FBX v6.x files will be mis-parsed.

FBX export is not implemented — FbxExporter.export() always throws ExportException.


Methods

MethodReturnsDescription
canImport(FileFormat format)booleanReturns true for FBX format.
load(Stream stream, LoadOptions options)SceneAttempts to load FBX from stream. Returns a valid but empty Scene — no scene content is populated.

See Also