allowRenderNodes = False
If True, the node is still allowed be rendered to render nodes, even if it is excluded from the window.
This command will prevent the node from being rendered in the specified windows.
import viz
viz.go()
UpperLeftWindow = viz.addWindow(pos=(0,1.0))
UpperRightWindow = viz.addWindow()
LowerLeftWindow = viz.addWindow(pos=(0,0.2))
LowerRightWindow = viz.addWindow(pos=(0.8,0.2))
court = viz.addChild('court.ive')
ball = viz.addChild('ball.wrl',pos=[0,1.8,3])
ball.renderToAllWindowsExcept([viz.MainWindow])