![]() |
#2
|
|||
|
|||
Your example code is adding the render node to scene 2. Instead, you should add the render node to the main scene and have it render scene 2. The following change should do this:
Code:
renderNode=viz.addRenderNode() renderNode.setScene(2) |
|
|