Fixed compilation error in src/osgDB/FileUtils.cpp.

Added support for nested NodeCallbacks, allowing them to be chained together
so that multiple operations can be applied.
This commit is contained in:
Robert Osfield
2001-11-11 22:32:59 +00:00
parent 879a753ee2
commit 5ceefdcc12
9 changed files with 67 additions and 11 deletions

View File

@@ -57,7 +57,7 @@ class TransformCallback : public osg::NodeCallback{
}
// must continue subgraph traversal.
nv->traverse(*node);
traverse(node,nv);
}

View File

@@ -84,8 +84,7 @@ class TransformCallback : public osg::NodeCallback{
}
// must continue subgraph traversal.
nv->traverse(*node);
traverse(node,nv);
}