mestela Posted June 26, 2015 Share Posted June 26, 2015 Some helpful person pointed out you can get node errors in python with hou.node('/path/to/node').errors() Is there a way to get to the regular middle-mouse text? .warnings() and .messages() looked like possible candidates, but no. -matt Quote Link to comment Share on other sites More sharing options...
lukeiamyourfather Posted June 26, 2015 Share Posted June 26, 2015 Things like the number of points, groups, and attributes can be queried individually to get the same information you'd get from the middle mouse popup window. Quote Link to comment Share on other sites More sharing options...
pezetko Posted June 26, 2015 Share Posted June 26, 2015 Maybe this? node = hou.node('/obj/torus_object1/torus1') print("{}").format(hou.hscript("opinfo " + str(node.path()))[0]) 1 Quote Link to comment Share on other sites More sharing options...
mestela Posted June 27, 2015 Author Share Posted June 27, 2015 Perfect! Thanks! 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.