asset_info property

asset_info property

Gets or sets the top-level asset information

Example

The following code shows how to read the application information from a FBX file:

from aspose.threed import Scene

scene = Scene.from_file("test.fbx")
print(f"The FBX file is created by {scene.asset_info.application_name} {scene.asset_info.application_version}")

Definition:

@property
def asset_info(self):
    ...
@asset_info.setter
def asset_info(self, value):
    ...

See Also