Remove "withRandom"

This commit is contained in:
DBotThePony 2024-04-18 17:55:10 +07:00
parent 8f407465f5
commit 3b642ffe40
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -16,21 +16,9 @@ data class TerrainSelectorParameters(
) {
fun withSeed(seed: Long) = copy(seed = seed)
fun withCommonality(commonality: Double) = copy(commonality = commonality)
private var random: RandomGenerator? = null
fun random(): RandomGenerator {
return random ?: ru.dbotthepony.kstarbound.util.random.random(seed)
}
fun withRandom(): TerrainSelectorParameters {
if (random == null)
return withRandom(ru.dbotthepony.kstarbound.util.random.random(seed))
return this
}
fun withRandom(randomGenerator: RandomGenerator): TerrainSelectorParameters {
return copy().also { it.random = randomGenerator }
return ru.dbotthepony.kstarbound.util.random.random(seed)
}
fun noiseAngle(x: Int): Pair<Double, Double> {