vox/src/config.rs

9 lines
202 B
Rust

//! A few constants to make standardizing sizes easier.
pub const CHUNK_SIZE: usize = 32;
pub const PLAYER_HEIGHT: f64 = 1.7;
pub const PARTICLE_SCALE: f32 = 0.004;
pub const VOXEL_SCALE: f32 = 0.5;