Jump to content

How to find all the built-in operators that are written in VEX?


magneto

Recommended Posts

Is there some sort of trick I can find them easily without having to create an instance and go to Type Properties > Code tab to see if it's indeed VEX?

I know Mountain SOP is one but I found it using the above method. I find glimpsing their code very useful.

Thanks.

Link to comment
Share on other sites

You can do such a thing with Python. Sometime like the following:

categories = hou.nodeTypeCategories()
for category in categories.itervalues():
    for node_type in category.nodeTypes().itervalues():
        if node_type.source() == hou.nodeTypeSource.VexCode:
            print category.name(), node_type.name()

  • Like 2
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...