Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Last active November 12, 2023 21:09
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aspose-com-gists/fe3a72e93e954cb0200ef625e7af2bf0 to your computer and use it in GitHub Desktop.
Save aspose-com-gists/fe3a72e93e954cb0200ef625e7af2bf0 to your computer and use it in GitHub Desktop.
Convert OBJ to FBX File Programmatically in Java
// Load the OBJ in an object of Scene class
Scene document = new Scene("template.obj");
// Create an instance of FbxSaveOptions
FbxSaveOptions options = new FbxSaveOptions(FileFormat.FBX7500ASCII);
// Convert 3D Object OBJ File to FBX
document.save("output.fbx", options);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment