move to single crate for webxr and openxr

This commit is contained in:
awtterpip
2024-04-15 18:13:17 -05:00
parent 3296a0a4ba
commit 5e769ef52b
25 changed files with 576 additions and 747 deletions

View File

@@ -1,2 +1,7 @@
pub use bevy_openxr;
pub use bevy_xr;
#[cfg(not(target_family = "wasm"))]
pub mod oxr;
#[cfg(target_family = "wasm")]
pub mod webxr;
#[cfg(not(target_family = "wasm"))]
pub use oxr::add_xr_plugins;