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
The material tag detection code added in #3073 had some forward looking code for OpenPBR that requires an update, even though we have not yet integrated MaterialX 1.39.
When I first wrote the code, the geometry_opacity parameter was a GfVec3. In the final specification, it is now a float. That is a one line change to do in _GetOpenPBRSurfaceMaterialTag() when integrating MaterialX 1.39, replacing GfVec3f(1.0f, 1.0f, 1.0f) with 1.0f.
Steps to Reproduce
None yet. Requires MaterialX 1.39 to get an OpenPBR surface node
System Information (OS, Hardware)
Package Versions
Build Flags
The text was updated successfully, but these errors were encountered:
Description of Issue
The material tag detection code added in #3073 had some forward looking code for OpenPBR that requires an update, even though we have not yet integrated MaterialX 1.39.
When I first wrote the code, the
geometry_opacity
parameter was aGfVec3
. In the final specification, it is now afloat
. That is a one line change to do in _GetOpenPBRSurfaceMaterialTag() when integrating MaterialX 1.39, replacingGfVec3f(1.0f, 1.0f, 1.0f)
with1.0f
.Steps to Reproduce
System Information (OS, Hardware)
Package Versions
Build Flags
The text was updated successfully, but these errors were encountered: