Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Last active December 22, 2021 16:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aspose-com-gists/97128843ae343ee09c9c8c203572b47b to your computer and use it in GitHub Desktop.
Save aspose-com-gists/97128843ae343ee09c9c8c203572b47b to your computer and use it in GitHub Desktop.
Convert FBX to GLB Programmatically in C# .NET
// Load the input FBX file
Scene scene = new Scene("Input.fbx");
// Specify output file format as GLB
FileFormat outputFormat = FileFormat.GLTF2_Binary;
// Save the output GLB file
scene.Save("test.glb", outputFormat);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment