add READMEs

Signed-off-by: Schmarni <marnistromer@gmail.com>
This commit is contained in:
Schmarni
2024-07-05 03:51:11 +02:00
parent 91b3a1eb10
commit bcfe78b880
8 changed files with 22 additions and 11 deletions

View File

@@ -1,11 +1,3 @@
[package]
name = "bevy_mod_xr_backends"
version.workspace = true
edition.workspace = true
description.workspace = true
repository.workspace = true
license.workspace = true
[workspace.package] [workspace.package]
version = "0.1.0-rc1" version = "0.1.0-rc1"
edition = "2021" edition = "2021"

View File

@@ -1,7 +1,11 @@
[package] [package]
name = "bevy_mod_openxr" name = "bevy_mod_openxr"
description = "Community crate for OpenXR in Bevy"
version.workspace = true version.workspace = true
edition.workspace = true edition.workspace = true
repository.workspace = true
license.workspace = true
keywords = ["gamedev", "bevy", "Xr", "Vr", "OpenXR"]
[features] [features]
default = ["vulkan", "d3d12", "passthrough"] default = ["vulkan", "d3d12", "passthrough"]
@@ -26,7 +30,7 @@ openxr = "0.18.0"
thiserror = "1.0.57" thiserror = "1.0.57"
wgpu = "0.20" wgpu = "0.20"
wgpu-hal = "0.21" wgpu-hal = "0.21"
bevy_mod_xr={path = "../bevy_xr",version = "0.1.0-rc1"} bevy_mod_xr = { path = "../bevy_xr", version = "0.1.0-rc1" }
ash = { version = "0.37.3", optional = true } ash = { version = "0.37.3", optional = true }

View File

@@ -0,0 +1,6 @@
# Bevy mod OpenXR
This is the OpenXR backend for bevy_mod_xr for more info see the [repo](https://github.com/awtterpip/bevy_oxr)
![](https://media.giphy.com/media/v1.Y2lkPTc5MGI3NjExY2FlOXJrOG1pbzFkYTVjZHIybndqamF1a2YwZHU3dXgyZGcwdmFzMiZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/CHbQyXOT5yZZ1VQRh7/giphy-downsized-large.gif)
![](https://media.giphy.com/media/v1.Y2lkPTc5MGI3NjExbHVmZXc2b3VhcGE2eHE2c2Y3NDR6cXNibHdjNjk5MmtyOHlkMXkwZyZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/Hsvp5el2o7tzgOf9GQ/giphy-downsized-large.gif)

View File

@@ -1,2 +1,3 @@
# Bevy WebXR # Bevy WebXR
currently not yet in a working state currently not yet in a working state

View File

@@ -1,7 +1,11 @@
[package] [package]
name = "bevy_mod_xr" name = "bevy_mod_xr"
description = "semi generic Xr Api for Community Driven XR in Bevy"
version.workspace = true version.workspace = true
edition.workspace = true edition.workspace = true
license.workspace = true
repository.workspace = true
keywords = ["gamedev", "bevy", "Xr", "Vr"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

3
crates/bevy_xr/README.md Normal file
View File

@@ -0,0 +1,3 @@
# Bevy Mod XR
the shared api crate for bevy_mod_xr for more info see the [repo](https://github.com/awtterpip/bevy_oxr)

View File

@@ -0,0 +1,3 @@
# Bevy XR Utils
some optinal utils built on bevy_mod_xr and it's openxr backend

View File

@@ -1,2 +0,0 @@
pub use bevy_mod_openxr;
pub use bevy_mod_xr;