Advertisement
robertvari

Get rop nodes

Mar 5th, 2021
697
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.23 KB | None | 0 0
  1. import hou
  2. outNodes = hou.node('/out/').allSubChildren()
  3. outRSnodes =[]
  4. for i in outNodes:
  5.  
  6.  
  7.  
  8.     nodePath = i.path()
  9.     if hou.Node.type(i).name() == 'Redshift_ROP':
  10.         outRSnodes.append(i)
  11.  
  12.  
  13.  
  14. print outRSnodes
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement