Jump to content

Move a parameter to a folder with python


APG

Recommended Posts

import hou

node = hou.node('/obj/geo1')
parm_name = 'someparm'
folder_name = 'Misc'

tgroup = node.parmTemplateGroup()
tgroup.remove(parm_name)
tgroup.appendToFolder(tgroup.findIndicesForFolder(folder_name),
                      node.parm(parm_name).parmTemplate())
node.setParmTemplateGroup(tgroup)

 

  • Like 1
Link to comment
Share on other sites

1 hour ago, f1480187 said:

import hou

node = hou.node('/obj/geo1')
parm_name = 'someparm'
folder_name = 'Misc'

tgroup = node.parmTemplateGroup()
tgroup.remove(parm_name)
tgroup.appendToFolder(tgroup.findIndicesForFolder(folder_name),
                      node.parm(parm_name).parmTemplate())
node.setParmTemplateGroup(tgroup)

 

thank you very much

Can only be deleted and then added

Unfortunately there is no move function.

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...