Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Last active December 22, 2021 20:36
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/7068dde1af54ac658f1d3c5af0658f59 to your computer and use it in GitHub Desktop.
Save aspose-com-gists/7068dde1af54ac658f1d3c5af0658f59 to your computer and use it in GitHub Desktop.
Convert FBX to GLB Programmatically in Java | FBX to Binary glTF File
// Load the input FBX file
Scene scene = new Scene("Input.fbx");
// Specify output file format as GLB
FileFormat outputFormat = FileFormat.GLTF2_BINARY;
// Save 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