View Single Post
  #2  
Old 09-07-2010, 02:49 PM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
As you guessed, collision shapes work between objects and not the viewpoint. You can turn on viewpoint collision and disable it for certain models. The following example disables viewpoint collision with the court but not the box:
Code:
import viz
viz.go()

viz.collision(viz.ON)

court = viz.add('court.ive')
court.disable(viz.INTERSECTION)

box = viz.add('box.wrl',pos = [0,1.5,5])
Reply With Quote