Questions tagged [usdz]

Universal Scene Description (USD) is a standard to promote interop and exchange of 3D scene descriptions between artists, developers and film studios. USDZ is a WYSIWYG editor developed by Apple and Pixar.

USDZ was introduced by Apple in WWDC 2018 as a WYSIWYG editor developed with Pixar, that allows developers to bring objects from Photoshop and Dimension into an AR environment.

Its features according to Pixar includes:

  • Robust schemas for interchange of geometry, shading, and skeletal deformation
  • High performance data retrieval and rendering, including powerful instancing features
  • The ability to package user-selectable content variations, natively
  • A sound architecture that is flexible enough to adapt to future needs
149 questions
25
votes
8 answers

How to create a USDZ file?

I tried to look at the main documentation at http://graphics.pixar.com/usd/docs/index.html and http://graphics.pixar.com/usd/docs/Usdz-File-Format-Specification.html but could not find the details to create a usdz file. I can get some sample USD…
Suren Konathala
  • 3,497
  • 5
  • 43
  • 73
16
votes
3 answers

How to create a .usdz animation?

You can now convert 3D models to .usdz files (uncompressed zip archive) using Apple's command line tool bundled with Xcode 10 beta. Example code to convert an .obj file to .usdz: xcrun usdz_converter magnifying_glass.obj -g frame…
Clay
  • 1,721
  • 2
  • 10
  • 18
11
votes
6 answers

How can I convert .obj or .stl to .usdz without Vectary?

Apple AR Quick Look apparently only supports .usdz files. Is there a way to convert an .obj or .stl to .usdz? I googled this first but the most popular result was to use a free tool called Vectary, but when I actually tried to use it, it wasn’t…
yogurtsyum
  • 348
  • 1
  • 2
  • 17
11
votes
4 answers

How to create a SCNNode from a .usdz?

I have downloaded the .usdz models provided by Apple: https://developer.apple.com/arkit/gallery/ But now, I want to create a SCNNode with one of these models, so I am doing this to obtain the node: guard let urlPath = Bundle.main.url(forResource:…
Sergio
  • 1,610
  • 14
  • 28
8
votes
1 answer

How to Convert .USDz formats to .OBJ or .ABC files?

I have been trying to build a solution to converting from .USDZ to other [3D formats]. Using online options you may convert [3D formats] to .USDz…
Declan Clarke
  • 81
  • 1
  • 1
  • 3
6
votes
1 answer

How can you edit a USDZ mesh that has been included in AR project?

How can you edit a usdz file and maintain the rigs that have been set inside of it? For example, I am trying to edit the robot.usdz mesh included in this example project -…
soCohesive
  • 593
  • 5
  • 10
6
votes
2 answers

Conversion from USDZ file to glTF file

I am currently trying to work with AR in android but I have been given models in .usdz format. So far I have been looking for a way to convert this file into one that works with android (.fbx .obj .gltf), preferably being .gltf. Can someone tell me…
Sergio Pardo
  • 774
  • 6
  • 17
6
votes
3 answers

Can I convert a USDZ to solid mesh such as stl

I used an ios app to create a usdz file using arkit but now I want to convert the scan to a solid 3d model such as an stl or obj. is there an ios or mac application that allows for this conversion. I cannot find any app that can open them other than…
Samson T
  • 67
  • 1
  • 5
6
votes
3 answers

How to convert OBJ with MTL file to USDZ format

So I have an OBJ 3D model with its associated MTL file. The MTL file contains all the textures. However, when I convert the file to the USDZ format, the textures are not attributed to the file. This is the code I use. xcrun usdz_converter…
HeySaiK
  • 480
  • 1
  • 6
  • 17
6
votes
1 answer

SceneKit – Playing DAE and USDZ animation using Objective-C

I want to create walking man animation in SceneKit. I'm exporting animated .dae files from 3DSMax + OpenCollada , I also use ConvertToXcodeCollada to combine all animations in one. How i get animation: SCNScene *humanScene = [SCNScene…
5
votes
1 answer

RealityKit – Load ModelEntity from web URL resource

I was wondering if someone know is it possible to load an AR object (.usdz for example from web url and place it in the AR view). I tried with this: let fileUrl = NSURL(string:…
Martin Kostadinov
  • 179
  • 1
  • 1
  • 8
5
votes
1 answer

Convert .scn scene to usdz (Swift)

I have lost a lot of sleep over this (in the past 3 years). I was hooping that Apple would at least be able to export its own .scn Scenes to USDZ without too much problems. Has anyone been successful in exporting a .scn scene to USDZ from within an…
gm_
  • 101
  • 7
4
votes
1 answer

Can't play USDZ animation with RealityKit

I've followed the answer in this SO question regarding playing the animation of a USDZ file with the following code: @IBOutlet var arView: ARView! override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading…
narner
  • 2,908
  • 3
  • 26
  • 63
4
votes
1 answer

Is there a to export RealityKit scene to USDZ?

I have a RealityKit scene I would Like to export to and file format (preferably to USDZ) I haven’t found any solution for it. I know it is possible to do with SceneKit but not RealityKit.
Viktor Maric
  • 443
  • 1
  • 4
  • 10
4
votes
1 answer

USDZ export from SceneKit results in dull models

I am trying to use the new iOS13 ability to export a usdz file from a SCNScene using the func write(to url: URL, options: [String : Any]? = nil, delegate: SCNSceneExportDelegate?, progressHandler: SCNSceneExportProgressHandler? = nil) -> Bool…
geraldk
  • 43
  • 4
1
2 3
9 10