View Single Post
  #2  
Old 12-30-2012, 10:10 PM
goro goro is offline
Member
 
Join Date: May 2012
Posts: 33
You have to load the complete 3D Scene in Vizard & you have to remove your unwanted nodes in following two ways:

1) By Culling them:
<node3d>.cullFace(viz.GL_FRONT_AND_BACK, node = ' ')
This will cull all the objects from node3d associated with node. GPU Memory will be still occupied with those objects associated with node.

2) By disabling them in rendering processes:
<node3d>.disable(viz.RENDERING, node = ' ')
This will disable the rendering of all the objects from node3d associated with node. GPU Memory will be released for those objects associated with this node.
Reply With Quote