Revert "move to single crate for webxr and openxr"

This reverts commit 5e769ef52b.
This commit is contained in:
awtterpip
2024-04-18 16:30:18 -05:00
parent 5e769ef52b
commit d98b9a4455
25 changed files with 747 additions and 576 deletions

View File

@@ -1,11 +1,10 @@
//! A simple 3D scene with light shining over a cube sitting on a plane.
use bevy::prelude::*;
use bevy_xr::add_xr_plugins;
fn main() {
App::new()
.add_plugins(add_xr_plugins(DefaultPlugins))
.add_plugins(DefaultPlugins)
.add_systems(Startup, setup)
.run();
}
@@ -44,4 +43,4 @@ fn setup(
transform: Transform::from_xyz(-2.5, 4.5, 9.0).looking_at(Vec3::ZERO, Vec3::Y),
..default()
});
}
}