magneto Posted January 24, 2012 Share Posted January 24, 2012 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. Quote Link to comment Share on other sites More sharing options...
graham Posted January 24, 2012 Share Posted January 24, 2012 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() 2 Quote Link to comment Share on other sites More sharing options...
magneto Posted January 24, 2012 Author Share Posted January 24, 2012 Graham, that's awesome. Python magic Btw I watched one of your Python masterclasses, it was very good IMO. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
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.