Changed bias parameter to scale

This commit is contained in:
Robert Osfield 2008-04-12 10:02:28 +00:00
parent decc3bda02
commit f85ced09a6

View File

@ -205,7 +205,7 @@ class OSG_EXPORT CullSettings
osg::Node::NodeMask getCullMaskRight() const { return _cullMaskRight; }
/** Set the LOD bias for the CullVisitor to use.*/
void setLODScale(float bias) { _LODScale = bias; applyMaskAction(LOD_SCALE); }
void setLODScale(float scale) { _LODScale = scale; applyMaskAction(LOD_SCALE); }
/** Get the LOD bias.*/
float getLODScale() const { return _LODScale; }