Skip to content

Instantly share code, notes, and snippets.

@aspose-com-gists
Last active March 16, 2022 08:19
Show Gist options
  • Save aspose-com-gists/eff847ce483d09a91d7985fa5d9e4b40 to your computer and use it in GitHub Desktop.
Save aspose-com-gists/eff847ce483d09a91d7985fa5d9e4b40 to your computer and use it in GitHub Desktop.
Convert OBJ to USDZ File Programmatically in C# .NET
// Load the inout OBJ file using the Scene class
Scene scene = new Scene("template.obj");
// Initialize UsdSaveOptions class object
UsdSaveOptions options = new UsdSaveOptions(FileFormat.USDZ);
// Save output USDZ file
scene.Save("test.usdz", options);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment