Skip to content

Commit

Permalink
Fix export tests
Browse files Browse the repository at this point in the history
  • Loading branch information
barbalt committed Oct 9, 2024
1 parent 82d3c90 commit 5ffceec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/lib/usd/translators/testUsdExportBlendshapes.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def testBlendShapesExport(self):
cmds.mayaUSDExport(f=temp_file, v=True, sl=True, ebs=True, skl="auto")

stage = Usd.Stage.Open(temp_file)
prim = stage.GetPrimAtPath("/root/base/blend")
prim = stage.GetPrimAtPath("/root/base/blendShape")
offsets = prim.GetAttribute("offsets").Get()

for i, coords in enumerate(offsets):
Expand All @@ -68,7 +68,7 @@ def testBlendShapesExport(self):
"""
Sample BlendShape prim:
def BlendShape "blend"
def BlendShape "blendShape"
{
uniform vector3f[] normalOffsets = [(0, 0, 0), (0, 0, 0), (0, 0, 0)]
uniform vector3f[] offsets = [(0, -0.25, 0), (0, -0.25, 0), (0, 0.25, 0)]
Expand Down

0 comments on commit 5ffceec

Please sign in to comment.