Jump to content

Referencing an OTL on creation


junaid

Recommended Posts

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
Link to comment
Share on other sites

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 !
Link to comment
Share on other sites

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.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...