Mesh (OBJ/GLB) to USDZ

Universal Scene Description (USD) is an open and extensible ecosystem for describing, composing, simulating, and collaborating within 3D worlds. Originally invented by Pixar Animation Studios, USD is poised to be the open standard that enables 3D evolution of digital twins. the standard for virtual worlds.

While USD includes a file format, it is much more than that. USD is a powerful scene representation with an API that allows complex property inheritance, instancing, layering, lazy loading, and a wide variety of other key features. Omniverse uses USD for interchange through the Nucleus DB service.

OBJ/GLB to USDZ conversion

Manually trigger the processing pipeline defined in the input parameter.
mutation TriggerProcessingV2 {
triggerProcessingV2(
  params: {
      groupedAssetId: "[groupedAssetId]"
      outputFormat: USDZ
      processingPipelineName: LUCIAD_USD_CONVERTER
    })
    {
      ... on TriggerProcessingOutput {
      success
   }
 }
}
 

groupedAssetId :The ID of the GroupedAsset.
outputFormat :USDZ
processingPipelineName :LUCIAD_USD_CONVERTER

USDZ Export

Retrieves the specified asset, provided the user has access to it.
query Asset {
  asset(groupedAssetId: "[groupedAssetId]") {
    ... on GroupedAssetOutput {
    id
    name
    asset {
      groupedAssetId
      storageRegion
      artifactsV2 {
        parentId
        contents {
          id
          addressesV2 {
               contents {
                  ... on AddressDownloadOutput {
                      id
                      endpoint
                      }
                  }
              }
          }
      }
    }
  }
}
}