Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Last active March 16, 2022 08:17
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/861692bf6663c254b8434717a240844b to your computer and use it in GitHub Desktop.
Save aspose-com-gists/861692bf6663c254b8434717a240844b to your computer and use it in GitHub Desktop.
Convert USDZ to OBJ in Java
// Load the input USDZ file
Scene scene = new Scene();
scene.open("Test.usdz");
// Initialize ObjSaveOptions class object
ObjSaveOptions saveOptions = new ObjSaveOptions();
// Save the output OBJ file
scene.save("Sample.obj", saveOptions);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment