Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Last active December 22, 2021 20:38
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/89984f0db8d9881a6de86d31a2266449 to your computer and use it in GitHub Desktop.
Save aspose-com-gists/89984f0db8d9881a6de86d31a2266449 to your computer and use it in GitHub Desktop.
Convert GLB to FBX File Programmatically in Java
// Load the input GLB file
Scene scene = new Scene("Input.glb");
// Initialize an object of FBXSaveOptions class
FbxSaveOptions options = new FbxSaveOptions(FileFormat.FBX7500_BINARY);
// 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