Very noob question here from a pipeline developer.
I'm trying to get the hang of PDG for broader pipeline purposes and working through the tutorials.
I have noticed that we can middle click a file path parameter to see the evaluated result, is it not possible to do the same with other parameters such as 3d transform values?
For example I have Rotate set to
["@rxwedge","@rywedge","@rzwedge"],
and I can click through different work items to change these values and to change what I see in the viewport. AND I do realise I can view the work items to see the attribute values that way.
Is there another way to evaluate or view what the attribute is set to, on the parameter itself? (How about Pythonically?)
You can LMB on the numeric parm label (instead of MMB) to see the evaluated value. Also you can always drag and drop a parm to a Python Shell window to get a python object you can eval:
chrisgreb You can LMB on the numeric parm label (instead of MMB) to see the evaluated value. Also you can always drag and drop a parm to a Python Shell window to get a python object you can eval:
hou.parmTuple('/obj/box1/t').eval()
Hey, thanks Chris, much appreciated! That answers my question perfectly.