Renderer/src/main/java/electrosphere/game/data/biome/BiomeFoliageDescription.java
austin 70f7a78626
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit
biome data definitions, notes on how to distribute
2024-10-23 15:30:27 -04:00

31 lines
588 B
Java

package electrosphere.game.data.biome;
import java.util.List;
/**
* Describes behavior for spawning a specific type of foliage in the biome
*/
public class BiomeFoliageDescription {
/**
* The liust of entity IDs of this foliage type in particular
*/
List<String> entityIDs;
/**
* The frequency of this element in particular
*/
Double frequency;
/**
* The scale of the noise used to generate this element
*/
Double dispersion;
/**
* The priority of this floor element in particular
*/
Double priority;
}