1pub const MAX_PICKUP_RANGE: f32 = 5.0;
3pub const MAX_MOUNT_RANGE: f32 = 5.0;
4pub const MAX_SPRITE_MOUNT_RANGE: f32 = 2.0;
5pub const MAX_TRADE_RANGE: f32 = 20.0;
6pub const MAX_NPCINTERACT_RANGE: f32 = 30.0;
7pub const MAX_INTERACT_RANGE: f32 = 5.0;
8
9pub const GRAVITY: f32 = 25.0;
10pub const FRIC_GROUND: f32 = 0.15;
11
12pub const AIR_DENSITY: f32 = 1.225;
19pub const WATER_DENSITY: f32 = 999.1026;
20pub const LAVA_DENSITY: f32 = 3000.0;
23pub const IRON_DENSITY: f32 = 7870.0;
24pub const HUMAN_DENSITY: f32 = 990.0; pub const MIN_RECOMMENDED_RAYON_THREADS: usize = 2;
30pub const MIN_RECOMMENDED_TOKIO_THREADS: usize = 2;
31
32pub const SOUND_TRAVEL_DIST_PER_VOLUME: f32 = 3.0;
33
34pub const TELEPORTER_RADIUS: f32 = 3.;
35
36pub const DAY_LENGTH_DEFAULT: f64 = 30.0;