View Single Post
  #3  
Old 03-16-2014, 10:27 PM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
You can turn off viewpoint collision for a single object using the <node3d>.disable command with the viz.INTERSECTION flag:
Code:
import viz
viz.go()

viz.collision(viz.ON)

dojo = viz.add('dojo.osgb')

ball = viz.add('beachball.osgb',pos=[0,1.8,3])
ball.disable(viz.INTERSECTION)
Reply With Quote