Search the Community
Showing results for tags 'rename'.
-
Hi there, I'm merging two FBX skeletons together and I'm wondering what the best way is to unify their vastly different "Name" and "Path" attributes so I can export to other packages painlessly. Thank you
-
Yo, I have perfectly working dynamic multiparm list. I get all the values and params ect. only thin I can`t find is how to rename the labels of the parameters!! I`m doing it in a python callback. Sounds so simple, but I`m new to Houdini(ex-softie) so simple things can be hard haha Thanks a bunch, - J
-
Hi; When I rename a "Cop2Plane" node, Houdini doesn't shows the picture, and I should close and re-open Houdini to show it again ! What is wrong? Is this a bug? Thanks.
-
i dont know why i cant rename my nodes with str variable , can anyone tell me what is the problem ? setName not working with getChildrenName variable , but you can change it with typing string directly , for example newNodeGroup.setName('Hello') here is the code myNodes = hou.selectedNodes() getChildren = myNodes.children()[0] getChildrenName = getChildren.name() newNodeGroup = myNodes.createNode('group') newNodeGroup.setName(getChildrenName) thanks