Reputation: 431
I am building a web-based 3D viewer. It is working perfectly for other file types (.fbx, .glb, .obj, ...)
It gets complicated when I want to load .usdz files. To do that I am using github.com/ponahoum/three-usdz-loader
I am doing that because I want to support the binary and the ASCII format. The ThreeJS original version does not work with .usdz files that contain binary files.
The current version:
This is pretty much identical to the demo linked in the README.md (https://www.usdz-viewer.net/). My code is also identical to the exmaple in the README.md.
I would leave it at that, but the README.md explicitly states, that animations are supported.
So here is the question: Does anyone know, how I can get the loader to work (with animations/ ideally even textures) or is there any alternative that works?
Upvotes: 1
Views: 1828