I am preparing the nodes with Python and use the settings on different nodes and then destroy it.
Is there a way you can do these stuff invisibly without seeing the nodes getting drawing on the Network view?
Can you work with nodes invisibly in Python?
462 2 1- jomaro
- Member
- 102 posts
- Joined: April 2017
- Offline
- Enivob
- Member
- 2627 posts
- Joined: June 2008
- Offline
- antc
- Member
- 336 posts
- Joined: Nov. 2013
- Online
hou.RedrawBlock() [www.sidefx.com] seems to work as advertised on the super simple test below:
with hou.RedrawBlock(): newNode = hou.node('/obj').createNode('geo', 'geo'); newNode.destroy()
-
- Quick Links