Skip to content

Commit

Permalink
Merge pull request #1625 from kcoley/dev_usd_compliancechecker_and_us…
Browse files Browse the repository at this point in the history
…dtransform2d

complianceChecker.py returns false error for not recognizing the UsdTransform2d node

(Internal change: 2189454)
  • Loading branch information
pixar-oss committed Sep 23, 2021
2 parents 237f3d7 + 73cd8cd commit 8690742
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pxr/usd/usdUtils/complianceChecker.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ def CheckPrim(self, prim):

shaderId = shader.GetShaderId()
if not shaderId or \
not (shaderId in ['UsdPreviewSurface', 'UsdUVTexture'] or
not (shaderId in ['UsdPreviewSurface', 'UsdUVTexture', 'UsdTransform2d'] or
shaderId.startswith('UsdPrimvarReader')) :
self._AddFailedCheck("Shader <%s> has unsupported info:id '%s'."
% (prim.GetPath(), shaderId))
Expand Down

0 comments on commit 8690742

Please sign in to comment.