Added report of LOD scale

This commit is contained in:
Robert Osfield
2004-01-22 12:28:55 +00:00
parent c49be54142
commit ea77b1b031

View File

@@ -835,6 +835,7 @@ bool ViewerEventHandler::handle(const osgGA::GUIEventAdapter& ea,osgGA::GUIActio
{
if (ea.getKey()=='*') _cg->setLODScale( _cg->getLODScale() * 1.1f);
else _cg->setLODScale( _cg->getLODScale() / 1.1f);
std::cout<<"New LOD Scale = "<<_cg->getLODScale()<<std::endl;
return true;
}