View Single Post
  #2  
Old 10-18-2010, 08:54 AM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
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)
Reply With Quote