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?
619 2 1-
- jomaro
- Member
- 102 posts
- Joined: 4月 2017
- Offline
-
- Enivob
- Member
- 2637 posts
- Joined: 6月 2008
- Offline
-
- antc
- Member
- 349 posts
- Joined: 11月 2013
- Offline
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