You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When any generatedSchema.usda is located in a symlink, _GetGeneratedSchema (in schemaRegistry.cpp) fails, which later causes errors when setting attributes.
This can be fixed by changing TfIsFile(fname) to TfIsFile(fname, true) in _GetGeneratedSchema. It appears that the lack of symlink support is unintentional due to the omission of the default parameter.
The text was updated successfully, but these errors were encountered:
When any generatedSchema.usda is located in a symlink,
_GetGeneratedSchema
(in schemaRegistry.cpp) fails, which later causes errors when setting attributes.This can be fixed by changing
TfIsFile(fname)
toTfIsFile(fname, true)
in_GetGeneratedSchema
. It appears that the lack of symlink support is unintentional due to the omission of the default parameter.The text was updated successfully, but these errors were encountered: