Made the osgGA::GUIEventHandler sublassed from osg::Object as a virtual

inheritence to allow handler to also be used as node callbacks.

Fix to UpdateVisitor to make the visitation of Drawable more consistent
with the way that nodes are traversed.
This commit is contained in:
Robert Osfield
2003-03-24 08:42:35 +00:00
parent 91d22f7d23
commit 6dbc770347
4 changed files with 14 additions and 6 deletions

View File

@@ -15,7 +15,7 @@
using namespace osg;
using namespace osgUtil;
UpdateVisitor::UpdateVisitor():NodeVisitor(UPDATE_VISITOR,TRAVERSE_ACTIVE_CHILDREN)
UpdateVisitor::UpdateVisitor():NodeVisitor(UPDATE_VISITOR,TRAVERSE_ALL_CHILDREN)
{
}