Skip to content

Commit 139316a

Browse files
committed
Even if there aren't any Ops, we still want to author data when resetXformStack is true.
1 parent 434dfd5 commit 139316a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pxr/usdImaging/usdImaging/dataSourcePrim.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,8 @@ UsdImagingDataSourcePrim::Get(const TfToken &name)
657657
}
658658

659659
UsdGeomXformable::XformQuery xformQuery(xformable);
660-
if (xformQuery.HasNonEmptyXformOpOrder()) {
660+
if (xformQuery.HasNonEmptyXformOpOrder() ||
661+
xformQuery.GetResetXformStack()) {
661662
return UsdImagingDataSourceXform::New(
662663
xformQuery, _sceneIndexPath, _GetStageGlobals());
663664
} else {

0 commit comments

Comments
 (0)