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
While these expressions will be made absolute when used in an Path Expression Attribute, path expressions provided as strings (through API or in usda) should accept all of these examples.
Reproduced with OpenUSD 24.05 and 24.08.
The text was updated successfully, but these errors were encountered:
Constructing an
Sdf.PathExpression
with the following Expression Reference strings fails with parser errors:"%child:collection"
"%./child:collection"
Starting the path with the parent path element '..' works around this bug, but requires the base Prim name:
"%../base/child:collection"
The use of "./" in a PathPattern (i.e. outside of an Expression Reference) also causes a parser error:
"./child"
Note that the expected result of
Sdf.PathExpression("%child:collection")
can be constructed as follows:%child:collection
While these expressions will be made absolute when used in an Path Expression Attribute, path expressions provided as strings (through API or in usda) should accept all of these examples.
Reproduced with OpenUSD 24.05 and 24.08.
The text was updated successfully, but these errors were encountered: