-
Notifications
You must be signed in to change notification settings - Fork 41
Open
Description
There is an issue in
| { { "varname", getSTPrimvarAttrToken(uvIndex) } }, |
varname is being passed along as a token, but should be a string (this is noted elsewhere - USD-Fileformat-plugins/utils/src/layerReadMaterial.cpp
Lines 233 to 235 in d00097d
| // Supports both string and token type values for the varname | |
| // string is the correct type, but token was added to support slightly | |
| // incorrect assets. |
Quick fix proposal:
- { { "varname", getSTPrimvarAttrToken(uvIndex) } },
+ { { "varname", getSTPrimvarAttrToken(uvIndex).GetString() } },
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels