diff options
author | aap <aap@papnet.eu> | 2020-12-02 10:38:27 +0100 |
---|---|---|
committer | aap <aap@papnet.eu> | 2020-12-02 10:38:27 +0100 |
commit | fba657ff0c77b343ac854a5aed16385a6c77492c (patch) | |
tree | c4a125ed77e2b44366bc693dfce2654cc80a795e /src/control | |
parent | 83bbb631d1105502fb3c5b3af90578226ba35583 (diff) |
better cam lod dist fix
Diffstat (limited to 'src/control')
-rw-r--r-- | src/control/PathFind.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/control/PathFind.cpp b/src/control/PathFind.cpp index ecd2d0cb..49e43c81 100644 --- a/src/control/PathFind.cpp +++ b/src/control/PathFind.cpp @@ -1649,10 +1649,18 @@ CPathFind::TestCoorsCloseness(CVector target, uint8 type, CVector start) DoPathSearch(type, start, -1, target, pNodeList, &DummyResult, 32, nil, &dist, 999999.88f, -1); else DoPathSearch(type, start, -1, target, nil, &DummyResult2, 0, nil, &dist, 50.0f, -1); +#ifdef FIX_BUGS + // dist has GenerationDistMultiplier as a factor, so our reference dist should have it too + if(type == PATH_CAR) + return dist < 160.0f*TheCamera.GenerationDistMultiplier; + else + return dist < 100.0f*TheCamera.GenerationDistMultiplier; +#else if(type == PATH_CAR) return dist < 160.0f; else return dist < 100.0f; +#endif } void |