junaid Posted June 4, 2014 Share Posted June 4, 2014 Hi There, I am in the middle of setting up a tool and kind of stuck with python's silliness. basically I am creating an OTL through another OTL in my scene on button press, its all working fine. But what I am also looking to have a parameter referenced to the OTL which its been originally created from.an striped down version is something like this in scripting tab of my OTL def createObject(thisnode): createNode = hou.node("/obj").createNode("renderObject", newNode) createNode.setParms({"myParm": thisnode}) its working fine if i type anything underqoutes instead of thisnode Thanks, Junaid Quote Link to comment Share on other sites More sharing options...
graham Posted June 4, 2014 Share Posted June 4, 2014 Assuming "myParm" is a string parameter you can set it to thisnode.path() Quote Link to comment Share on other sites More sharing options...
junaid Posted June 4, 2014 Author Share Posted June 4, 2014 ahh got it. def createObject(thisnode): nodePath = thisnode.path() createNode = hou.node("/obj").createNode("renderObject", newNode) createNode.setParms({"myParm": nodePath}) Cheer for the help Graham ! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.