FbxImporter

Overview

FbxImporter is a class in Aspose.3D FOSS for Python. Inherits from: Importer.

FbxImporter.supports_format returns True if the given file format is supported for import.

This class provides 5 methods for working with FbxImporter objects in Python programs. Available methods include: __init__, import_scene, open, open_from_stream, supports_format. All public members are accessible to any Python application after installing the Aspose.3D FOSS for Python package.

Methods

SignatureDescription
__init__()
supports_format(file_format)boolReturns True if the given file format is supported for import
open(filename: str, options: Optional['FbxLoadOptions'])'Scene'Loads a scene from a file using optional FbxLoadOptions and returns a Scene object
open_from_stream(stream: io.IOBase, options: Optional['FbxLoadOptions'])'Scene'Loads a scene from a binary stream with optional FbxLoadOptions and returns a Scene
import_scene(scene: 'Scene', stream: io.IOBase, options: 'FbxLoadOptions')Imports FBX data from a stream into an existing Scene using provided FbxLoadOptions

See Also