2020-10-29 06:11:10 +00:00
|
|
|
// The limit on distance between the entity and a collectible (squared)
|
|
|
|
pub const MAX_PICKUP_RANGE: f32 = 8.0;
|
|
|
|
pub const MAX_MOUNT_RANGE: f32 = 14.0;
|
2020-12-01 00:28:00 +00:00
|
|
|
|
2021-03-23 09:51:53 +00:00
|
|
|
pub const GRAVITY: f32 = 25.0;
|
2020-12-01 00:28:00 +00:00
|
|
|
pub const FRIC_GROUND: f32 = 0.15;
|
2021-03-23 09:51:53 +00:00
|
|
|
|
|
|
|
// Values for air taken from http://www-mdp.eng.cam.ac.uk/web/library/enginfo/aerothermal_dvd_only/aero/atmos/atmos.html
|
|
|
|
// Values below are for dry air at 15°C, sea level, 1 standard atmosphere
|
|
|
|
|
|
|
|
// pub const ATMOSPHERE: f32 = 101325.0; // Pa
|
|
|
|
|
|
|
|
// kg/m³
|
|
|
|
pub const AIR_DENSITY: f32 = 1.225;
|
|
|
|
pub const WATER_DENSITY: f32 = 999.1026;
|
|
|
|
pub const IRON_DENSITY: f32 = 7870.0;
|
|
|
|
// pub const HUMAN_DENSITY: f32 = 1010.0; // real value
|
|
|
|
pub const HUMAN_DENSITY: f32 = 990.0; // value we use to make humanoids gently float
|
2021-05-04 19:41:08 +00:00
|
|
|
// 1 thread might be used for long-running cpu intensive tasks, like chunk
|
|
|
|
// generation. having at least 2 helps not blocking in the main tick here
|
2021-05-15 19:36:27 +00:00
|
|
|
|
2021-05-04 19:41:08 +00:00
|
|
|
pub const MIN_RECOMMENDED_RAYON_THREADS: usize = 2;
|
|
|
|
pub const MIN_RECOMMENDED_TOKIO_THREADS: usize = 2;
|
2021-05-15 19:36:27 +00:00
|
|
|
|
|
|
|
pub const SOUND_TRAVEL_DIST_PER_VOLUME: f32 = 3.0;
|