Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Last active December 22, 2021 16:58
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/1906fdb27081d6bdacd101b357ab2935 to your computer and use it in GitHub Desktop.
Save aspose-com-gists/1906fdb27081d6bdacd101b357ab2935 to your computer and use it in GitHub Desktop.
Convert GLB to FBX Programmatically using C#
// Load the input GLB file
Scene scene = new Scene("Input.glb");
// Initialize an object of FBXSaveOptions class
FBXSaveOptions options = new FBXSaveOptions(FileFormat.FBX7500Binary);
// Save output FBX file
scene.Save("output.fbx", options);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment