View Single Post
  #12  
Old 09-11-2006, 07:59 PM
Gladsomebeast Gladsomebeast is offline
Member
 
Join Date: Mar 2005
Location: Isla Vizta, CA
Posts: 397
You can replace the collidewith function with viz.phys.intersectNode()

For your previous for loop collidewith code replace with:

Code:
if x in viz.phys.intersectNode( obj ):
	print 'intersected'
else:
	print 'not intersected'
__________________
Paul Elliott
WorldViz LLC
Reply With Quote