Temporarily commented out the flat staic transforms visitor since it

was causing problems with the new DOFTransform class.
This commit is contained in:
Robert Osfield 2002-08-11 10:32:20 +00:00
parent 5d61488476
commit 19eaf17632

View File

@ -31,9 +31,9 @@ void Optimizer::optimize(osg::Node* node, unsigned int options)
if (options & FLATTEN_STATIC_TRANSFORMS)
{
FlattenStaticTransformsVisitor fstv;
node->accept(fstv);
fstv.removeTransforms();
// FlattenStaticTransformsVisitor fstv;
// node->accept(fstv);
// fstv.removeTransforms();
// the following RemoveLowestStaticTransformVisitor doesn't yet work
// properly, will need further work.... Robert Osfield, June 2002.