Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Created April 13, 2022 11:56
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/557d7f5a6fabd4a84f37c1cb1fcdefbf to your computer and use it in GitHub Desktop.
Save aspose-com-gists/557d7f5a6fabd4a84f37c1cb1fcdefbf to your computer and use it in GitHub Desktop.
Convert USDZ to FBX Programmatically in Java
// Load the input USDZ file
Scene scene = new Scene();
scene.open("Test.usdz");
// Initialize FbxSaveOptions class object
FbxSaveOptions saveOptions = new FbxSaveOptions(FileFormat.FBX7400ASCII);
// Save the output FBX file
scene.save("Sample.fbx", saveOptions);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment