fix(bevy_mod_openxr/android): fix fb_passthrough and rename feature

Signed-off-by: Schmarni <marnistromer@gmail.com>
This commit is contained in:
Schmarni
2025-10-19 16:52:44 +02:00
parent 977fe029ad
commit 258bd0448d
5 changed files with 22 additions and 12 deletions

View File

@@ -7,17 +7,20 @@ publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bevy_mod_openxr.workspace = true
bevy_mod_openxr = { workspace = true, features = [
"window_support",
"fb_passthrough",
] }
bevy_xr_utils.workspace = true
bevy_mod_xr.workspace = true
# bevy = { workspace = true, default-features = false, features = [
# # Bevy 0.15 made GameActivity the default which breaks Quest builds
# # To use NativeActivity instead of GameActivity all of the features have to be listed manually
# "android-native-activity",
# "bevy_window",
# "multi_threaded",
# "tonemapping_luts",
# ] }
bevy = { workspace = true, features = [
# Bevy 0.15 made GameActivity the default which breaks Quest builds
# To use NativeActivity instead of GameActivity all of the features have to be listed manually
"android-native-activity",
"bevy_window",
"multi_threaded",
"tonemapping_luts",
] }
[build-dependencies]
reqwest = { version = "0.12", features = ["blocking"] }