mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-04-14 19:56:19 +00:00
remove GenerationSettings
This commit is contained in:
@@ -1,44 +0,0 @@
|
||||
/*
|
||||
* Copyright (c) 2020-2021 Polyhedral Development
|
||||
*
|
||||
* The Terra API is licensed under the terms of the MIT License. For more details,
|
||||
* reference the LICENSE file in the common/api directory.
|
||||
*/
|
||||
|
||||
package com.dfsek.terra.api.world.biome;
|
||||
|
||||
import com.dfsek.terra.api.noise.NoiseSampler;
|
||||
|
||||
|
||||
public interface GenerationSettings {
|
||||
/**
|
||||
* Gets the noise sampler instance to use for base terrain.
|
||||
*
|
||||
* @return NoiseSampler for terrain
|
||||
*/
|
||||
NoiseSampler getBaseSampler();
|
||||
|
||||
/**
|
||||
* Gets the noise sampler to use for elevation
|
||||
*
|
||||
* @return NoiseSampler for elevation.
|
||||
*/
|
||||
NoiseSampler getElevationSampler();
|
||||
|
||||
/**
|
||||
* Gets the noise sampler to use for carving.
|
||||
*
|
||||
* @return NoiseSampler for carving.
|
||||
*/
|
||||
NoiseSampler getCarver();
|
||||
|
||||
int getBlendDistance();
|
||||
|
||||
double getWeight();
|
||||
|
||||
NoiseSampler getBiomeNoise();
|
||||
|
||||
double getElevationWeight();
|
||||
|
||||
int getBlendStep();
|
||||
}
|
||||
Reference in New Issue
Block a user