You can read more details at: Convert OBJ to FBX File in Java
Last active
November 12, 2023 21:09
-
-
Save aspose-com-gists/fe3a72e93e954cb0200ef625e7af2bf0 to your computer and use it in GitHub Desktop.
Convert OBJ to FBX File Programmatically in Java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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