We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using usdzip on a file that references USDZ files, they get duplicated within the resulting usdz file.
An example of the file is here. The attached zip has this plus the usdz files.
The resulting file should be ~29.5MB , but ends up being 59MB due to the duplicated contents.
usdzip combined.usdz -a ./combined.usda
#usda 1.0 ( metersPerUnit = 0.01 upAxis = "Y" ) over "guitar" ( prepend references = @./fender_stratocaster.usdz@ ) { } over "gramophone" ( prepend references = @./gramophone.usdz@ ) { }
usdzip --list combined.usdz
usdzip --list /Users/dhruvgovil/Downloads/combined.usdz combined.usda fender_stratocaster.usdz gramophone.usdz 0/fender_stratocaster.usdz 0/gramophone.usdz
macOS 13.1 / Intel+M1 macs (repro on both)
USD 22.8 and 22.11
Archive 2.zip
The text was updated successfully, but these errors were encountered:
This is quite odd, if you do this, you don’t get the duplicates
#usda 1.0 ( subLayers = [ @gramophone.usdz@, ] )
But if you do this you do get the file twice
#usda 1.0 ( subLayers = [ @./gramophone.usdz@, ] )
Sorry, something went wrong.
Filed as internal issue #USD-7833
f5d76d0
No branches or pull requests
Description of Issue
When using usdzip on a file that references USDZ files, they get duplicated within the resulting usdz file.
An example of the file is here. The attached zip has this plus the usdz files.
The resulting file should be ~29.5MB , but ends up being 59MB due to the duplicated contents.
Steps to Reproduce
usdzip combined.usdz -a ./combined.usda
usdzip --list combined.usdz
System Information (OS, Hardware)
macOS 13.1 / Intel+M1 macs (repro on both)
Package Versions
USD 22.8 and 22.11
Archive 2.zip
The text was updated successfully, but these errors were encountered: