Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation since 01/13/2026 in Posts

  1. General way is to use Python as Menu script: from itertools import chain node = hou.pwd() geo = node.geometry() attribs = [a.name() for a in geo.pointAttribs()] return list(chain(*zip(attribs, attribs))) attributes_menu.hipnc It is possible to avoid it in many cases. When you promote parameter it will usually pick the menu script (if it exist) from the node. It is not necessary to have such menu on the target node, as you may promote parameter from a different node (example).
    1 point
  2. Did some more searching and i found an older topic here that had what i needed - Setting the list to Multiple Selection Menu instead of Single i could make a list of the attributes i didnt want with the following vex-code: s[]@pointattribs = detailintrinsic(0,"pointattributes"); string attriblist = chs("../attribtrans"); //Multiple Selection Menu string alist[] = split(attriblist); foreach(string name; alist){ removevalue(@pointattribs,name); }
    1 point
×
×
  • Create New...