You can find more details at: Convert OBJ to USDZ File Programmatically in C#
Last active
March 16, 2022 08:19
Convert OBJ to USDZ File Programmatically in C# .NET
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 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