chore: fix examples and bump version
Signed-off-by: Schmarni <marnistromer@gmail.com>
This commit is contained in:
8
Cargo.lock
generated
8
Cargo.lock
generated
@@ -1041,7 +1041,7 @@ checksum = "7ef8e4b7e61dfe7719bb03c884dc270cd46a82efb40f93e9933b990c5c190c59"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "bevy_mod_openxr"
|
name = "bevy_mod_openxr"
|
||||||
version = "0.4.0"
|
version = "0.5.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"android_system_properties",
|
"android_system_properties",
|
||||||
"ash",
|
"ash",
|
||||||
@@ -1080,7 +1080,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "bevy_mod_xr"
|
name = "bevy_mod_xr"
|
||||||
version = "0.4.0"
|
version = "0.5.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bevy_app",
|
"bevy_app",
|
||||||
"bevy_camera",
|
"bevy_camera",
|
||||||
@@ -1097,7 +1097,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "bevy_openxr_android"
|
name = "bevy_openxr_android"
|
||||||
version = "0.4.0"
|
version = "0.5.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bevy",
|
"bevy",
|
||||||
"bevy_mod_openxr",
|
"bevy_mod_openxr",
|
||||||
@@ -1661,7 +1661,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "bevy_xr_utils"
|
name = "bevy_xr_utils"
|
||||||
version = "0.4.0"
|
version = "0.5.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bevy",
|
"bevy",
|
||||||
"bevy_app",
|
"bevy_app",
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
[workspace.package]
|
[workspace.package]
|
||||||
version = "0.4.0"
|
version = "0.5.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
description = "Community crate for XR in Bevy"
|
description = "Community crate for XR in Bevy"
|
||||||
repository = "https://github.com/awtterpip/bevy_oxr"
|
repository = "https://github.com/awtterpip/bevy_oxr"
|
||||||
@@ -29,9 +29,9 @@ bevy_derive = { version = "0.18", default-features = false }
|
|||||||
bevy_platform = { version = "0.18", default-features = false }
|
bevy_platform = { version = "0.18", default-features = false }
|
||||||
|
|
||||||
|
|
||||||
bevy_mod_xr = { path = "crates/bevy_xr", version = "0.4.0" }
|
bevy_mod_xr = { path = "crates/bevy_xr", version = "0.5.0" }
|
||||||
bevy_mod_openxr = { path = "crates/bevy_openxr", version = "0.4.0" }
|
bevy_mod_openxr = { path = "crates/bevy_openxr", version = "0.5.0" }
|
||||||
bevy_xr_utils = { path = "crates/bevy_xr_utils", version = "0.4.0" }
|
bevy_xr_utils = { path = "crates/bevy_xr_utils", version = "0.5.0" }
|
||||||
openxr = "0.21.1"
|
openxr = "0.21.1"
|
||||||
thiserror = "2.0.3"
|
thiserror = "2.0.3"
|
||||||
wgpu = "27"
|
wgpu = "27"
|
||||||
|
|||||||
@@ -119,7 +119,7 @@ fn spawn_hands(
|
|||||||
actions
|
actions
|
||||||
.left
|
.left
|
||||||
.create_space(
|
.create_space(
|
||||||
session.deref().deref().clone(),
|
session.deref().deref(),
|
||||||
openxr::Path::NULL,
|
openxr::Path::NULL,
|
||||||
Posef::IDENTITY,
|
Posef::IDENTITY,
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ fn main() -> AppExit {
|
|||||||
exts: {
|
exts: {
|
||||||
let mut exts = OxrExtensions::default();
|
let mut exts = OxrExtensions::default();
|
||||||
exts.enable_hand_tracking();
|
exts.enable_hand_tracking();
|
||||||
exts.other.push("XR_MNDX_xdev_space".to_string());
|
exts.other.push(c"XR_MNDX_xdev_space".to_bytes_with_nul().to_vec());
|
||||||
exts
|
exts
|
||||||
},
|
},
|
||||||
..Default::default()
|
..Default::default()
|
||||||
|
|||||||
Reference in New Issue
Block a user