Reduce the texture size to 129 square

This commit is contained in:
Eryn Wells 2018-11-14 08:09:41 -08:00
parent 8e9f88faad
commit 58f59baaf5

View file

@ -334,7 +334,7 @@ public class DiamondSquareGenerator: TerrainGenerator {
class var textureSize: MTLSize {
// Needs to 2n + 1 on each side.
return MTLSize(width: 513, height: 513, depth: 1)
return MTLSize(width: 129, height: 129, depth: 1)
}
var roughness: Float = 1.0 {