From bab6eff9da1927a4fc1e22d97e56199c1b677670 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Fri, 14 Aug 2009 11:37:10 +0000 Subject: model API cleanup, render WORLDSCALE --- src/core/range.h | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'src/core') diff --git a/src/core/range.h b/src/core/range.h index 5921e70..aa194bb 100644 --- a/src/core/range.h +++ b/src/core/range.h @@ -10,16 +10,20 @@ namespace core { namespace range { - /// maximal range + /// maximal visiblae range (world distance) /** This is the distance of the frustum far plane, * the maximal distance at which non-controlable entities can be drawn. * the maximal radar range for controlable entities, * and the maximal range to send entity updates */ - const float max = 1024.0f; + const float maxdistance = 1024.0f; - /// maximal visible range for controlable entities - const float visible = 512.0f; + /// maximal visible range for controlable entities (world distance) + const float maxvisible = 512.0f; + + + /// detail/fx distance (world distance) + const float fxdistance = 256.0f; } } -- cgit v1.2.3