View Single Post
  #1  
Old 08-29-2014, 06:54 AM
yomomano yomomano is offline
Member
 
Join Date: Aug 2014
Posts: 2
How to get VizChild from an osg::Node

I made an extension to find a osg::Node in the osg sceneGraph using a name path (as in a/b/c) in order to speed up the lookup in a huge scene.

I want to return the found osg::Node as a VizChild. How can I do this in the extension? I don't have/need a custom node.

The only way I managed to do this is by returning the osg::Node name, and in python script calling 'parent.getChild(name)'. But when the parent is not a known VizChild, this fails.

Ex in py script I want to do this:

#sceneRoot is a VizGroup
node = myextension.findNode(sceneRoot, 'a/b/c')

#node should be a VizChild made from the underlying osg::Node with name 'c'

Thanks!
Reply With Quote