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
Arnold will render linear segment instead of a nurb curve.
If you import this USD in Maya (cmds.mayaUSDImport(file="my_file.usd")), you get a nurbsCurve (see first screenshot).
If I try to render this same curve with arnold (using hydra render delagate), I get the second screenshot.
The text was updated successfully, but these errors were encountered:
The maya-usd export and import of NurbsCurves works correctly.
Arnold does not support native nurbs curves.
Hydra is converting the NurbsCurves to linear patches and there is no code yet to get the nurbs parameters in a render delegate from hydra. So it needs to be implemented, at first glance using the scene index system would be the way to go.
MTOA usd export does convert the NurbsCurves to a visually correct approximation of the nurbs compatible with Arnold and Hydra.
Describe the bug
When we render the following NurbsCurve example exported from maya
Arnold will render linear segment instead of a nurb curve.
If you import this USD in Maya (cmds.mayaUSDImport(file="my_file.usd")), you get a nurbsCurve (see first screenshot).
If I try to render this same curve with arnold (using hydra render delagate), I get the second screenshot.
The text was updated successfully, but these errors were encountered: