diff --git a/Cargo.lock b/Cargo.lock index 818da82..2639317 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -607,9 +607,9 @@ dependencies = [ [[package]] name = "bevy-equirect" -version = "0.1.0" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0a4903e9341281cc79e69f5e9706a1800bfeb1a41b01a4d1c8b50cd2fe21d97" +checksum = "e487dd34daffb090aa0b32581664d760bd907db60a426b195f63b5cfa9ef6bcf" dependencies = [ "bevy_app", "bevy_asset", diff --git a/Cargo.toml b/Cargo.toml index 7403cda..3b30045 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -128,6 +128,7 @@ bevy_mod_openxr = "0.3" bevy_sk = { git = "https://github.com/technobaboo/bevy_sk", branch = "stochastic" } # bevy-dmabuf = "0.2.0" bevy-dmabuf.git = "https://github.com/Schmarni-Dev/bevy-dmabuf" +bevy-equirect = "0.1.1" # bevy-mesh-text-3d.git = "https://github.com/terhechte/bevy-mesh-text-3d" # use my fork until my pr to use minimal bevy features was merged @@ -163,7 +164,6 @@ vulkano = { git = "https://github.com/Schmarni-Dev/vulkano", branch = "0_35_dmab wgpu-hal = { version = "24", optional = true, features = ["vulkan"] } ash = { version = "0.38.0", optional = true, default-features = false } rustix = { version = "1.0.8", features = ["time"] } -bevy-equirect = "0.1.0" [dependencies.stardust-xr] workspace = true diff --git a/src/main.rs b/src/main.rs index 2837a84..21b08d8 100644 --- a/src/main.rs +++ b/src/main.rs @@ -382,7 +382,7 @@ fn bevy_loop( app.add_plugins(bevy_sk::hand::HandPlugin); app.add_plugins(bevy_equirect::EquirectangularPlugin); // app.add_plugins(HandGizmosPlugin); - app.world_mut().resource_mut::().brightness = 1000.0; + // app.world_mut().resource_mut::().brightness = 1000.0; if let Some(priority) = args.overlay_priority { app.insert_resource(OxrOverlaySettings { session_layer_placement: priority, diff --git a/src/nodes/drawable/mod.rs b/src/nodes/drawable/mod.rs index 287feab..fd00853 100644 --- a/src/nodes/drawable/mod.rs +++ b/src/nodes/drawable/mod.rs @@ -14,7 +14,6 @@ use color_eyre::eyre::eyre; use model::ModelPart; use parking_lot::Mutex; use stardust_xr::values::ResourceID; -use tracing::info; use std::{ffi::OsStr, path::PathBuf, sync::Arc}; static QUEUED_SKYLIGHT: Mutex>> = Mutex::new(None); @@ -53,7 +52,6 @@ impl InterfaceAspect for Interface { calling_client: Arc, tex: Option, ) -> Result<()> { - info!("setting sky tex"); let resource_path = tex .map(|tex| { get_resource_file(&tex, &calling_client, &[OsStr::new("hdr")]) @@ -69,7 +67,6 @@ impl InterfaceAspect for Interface { calling_client: Arc, light: Option, ) -> Result<()> { - info!("setting sky light"); let resource_path = light .map(|light| { get_resource_file(&light, &calling_client, &[OsStr::new("hdr")])