Terrain chunk size is 2^n-1, also mentioned in documentation.
public void Setup(int lodCount = 6, int chunkSize = 127)
chunkSize
The size of the chunk (amount of quads per edge for the highest LOD). Must be power of two minus one (eg. 63 or 127).
But in editor there is 254 beside of 255.
It is not even ‘2^n’, it is ‘2^n-2’. Why this strange number exists in options?