1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
//!
//! Contain a [CameraControl] struct that can be easily customized as well as a set of default camera controls.
//!
mod camera_control;
#[doc(inline)]
pub use camera_control::*;
mod orbit_control;
#[doc(inline)]
pub use orbit_control::*;
mod first_person_control;
#[doc(inline)]
pub use first_person_control::*;
mod fly_control;
#[doc(inline)]
pub use fly_control::*;