PDA

View Full Version : Problems with node.getChild and node.collideBox


dtidrow
09-08-2009, 09:12 AM
I'm having an issue with node.collideBix() preventing the rendering of a node returned from node.getChild("name"). The relevant parts of the script look like this:

option1 = chassis.add('part1.ive')
display = option1.getChild("display")
display.collideBox()


'display' is a valid node, as I can toggle it on and off using node.visible(). As soon as I call 'display.collideBox()', the node disappears from view. Any ideas why this might be happening?

Don