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.
Methods
| Signature | Description |
|---|---|
__init__() | |
supports_format(file_format) → bool | Returns 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 |