From bf33efb1a01ec2b115689a290af17ceff450ee1c Mon Sep 17 00:00:00 2001 From: Schmarni Date: Sun, 29 Sep 2024 20:37:21 +0200 Subject: [PATCH] make velocity module public and remove the xr feature from default-features Signed-off-by: Schmarni --- Cargo.toml | 1 - src/lib.rs | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 112a7f5..ad12346 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,6 @@ too_many_arguments = "allow" type_complexity = "allow" [features] -default = ["xr"] xr = ["dep:bevy_mod_openxr", "dep:bevy_mod_xr", "dep:bevy_xr_utils"] [dependencies] diff --git a/src/lib.rs b/src/lib.rs index cfa78a4..8c5bdd5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -13,7 +13,7 @@ pub mod input; mod look; pub mod movement; pub mod player; -mod velocity; +pub mod velocity; pub struct VrControllerPlugin;