Scene.AssetInfo

Scene.AssetInfo property

Gets or sets the top-level asset information

public AssetInfo AssetInfo { get; set; }

Property Value

The document info.

Examples

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

Scene scene = Scene.FromFile("test.fbx");
Console.WriteLine($"The FBX file is created by {scene.AssetInfo.ApplicationName} {scene.AssetInfo.ApplicationVersion}");

See Also