remove sleep call and remove runtime libs from git repo

This commit is contained in:
Schmarni
2023-10-27 23:06:13 +02:00
parent 9818c7a7bc
commit 88c6b601e5
3 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@@ -1,2 +1,3 @@
**/target
**/Cargo.lock
**/runtime_libs

View File

@@ -80,7 +80,7 @@ impl Plugin for OpenXrPlugin {
views,
frame_state,
) = graphics::initialize_xr_graphics(primary_window).unwrap();
std::thread::sleep(Duration::from_secs(5));
// 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();