View Single Post
  #3  
Old 10-21-2010, 11:13 AM
masaki masaki is offline
Member
 
Join Date: Jan 2008
Posts: 63
You can also try re-parenting the child to viz.WORLD, apply a collision shape to it, and then detect collisions.

e.g.
model = viz.add( 'myModel.ive')
child = model.getChild( 'subnode-GEODE' )
child.parent( viz.WORLD )
child.collideBox()

Masaki
Reply With Quote