From ef9e20b7d5dcba7a31a406694fbbf52b3184be28 Mon Sep 17 00:00:00 2001 From: Schmarni Date: Wed, 8 Nov 2023 02:47:10 +0100 Subject: [PATCH] minimal clean up --- src/lib.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 69dce84..de4e383 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -5,7 +5,6 @@ pub mod resources; pub mod xr_input; use std::sync::{Arc, Mutex}; -use std::time::Duration; use crate::xr_input::oculus_touch::ActionSets; use bevy::app::PluginGroupBuilder; @@ -81,7 +80,6 @@ impl Plugin for OpenXrPlugin { views, frame_state, ) = graphics::initialize_xr_graphics(primary_window).unwrap(); - // std::thread::sleep(Duration::from_secs(5)); debug!("Configured wgpu adapter Limits: {:#?}", device.limits()); debug!("Configured wgpu adapter Features: {:#?}", device.features()); let mut future_xr_resources_inner = future_xr_resources_wrapper.lock().unwrap();