Reduce LargeWorlds::ChunkSize to 8192

#1854
This commit is contained in:
Wojtek Figat
2023-11-04 19:18:21 +01:00
parent fe3f64f06a
commit 8c34fe7933

View File

@@ -19,7 +19,7 @@ API_CLASS(Static) class FLAXENGINE_API LargeWorlds
/// <summary>
/// Defines the size of a single chunk. Large world (64-bit) gets divided into smaller chunks so all the math operations (32-bit) can be performed relative to the chunk origin without precision loss.
/// </summary>
API_FIELD() static constexpr Real ChunkSize = 262144;
API_FIELD() static constexpr Real ChunkSize = 8192;
/// <summary>
/// Updates the large world origin to match the input position. The origin is snapped to the best matching chunk location.