mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
22 lines
450 B
Rust
22 lines
450 B
Rust
pub struct Config {
|
|
pub sea_level: f32,
|
|
pub mountain_scale: f32,
|
|
pub snow_temp: f32,
|
|
pub tropical_temp: f32,
|
|
pub desert_temp: f32,
|
|
pub desert_hum: f32,
|
|
pub forest_hum: f32,
|
|
pub jungle_hum: f32,
|
|
}
|
|
|
|
pub const CONFIG: Config = Config {
|
|
sea_level: 140.0,
|
|
mountain_scale: 1000.0,
|
|
snow_temp: -0.6,
|
|
tropical_temp: 0.2,
|
|
desert_temp: 0.6,
|
|
desert_hum: 0.15,
|
|
forest_hum: 0.5,
|
|
jungle_hum: 0.85,
|
|
};
|