Some checks failed
		
		
	
	studiorailgun/Renderer/pipeline/head There was a failure building this commit
				
			
		
			
				
	
	
		
			31 lines
		
	
	
		
			588 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			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;
 | |
| 
 | |
| }
 |