mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-30 09:45:36 +00:00
Reduce the minSize of quad tree nodes for better performance
This commit is contained in:
parent
a041546b54
commit
fb8ac06524
1 changed files with 1 additions and 1 deletions
|
@ -394,7 +394,7 @@ void QuadTreeWorld::ensureQuadTreeBuilt()
|
|||
if (mQuadTreeBuilt)
|
||||
return;
|
||||
|
||||
const float minSize = 1/4.f;
|
||||
const float minSize = 1/8.f;
|
||||
QuadTreeBuilder builder(mStorage, mViewDataMap.get(), minSize);
|
||||
builder.build();
|
||||
|
||||
|
|
Loading…
Reference in a new issue