From eddff879c41c024fbfee3a0f8fe8fad4ea834479 Mon Sep 17 00:00:00 2001 From: awtterpip Date: Sun, 2 Jun 2024 16:01:29 -0500 Subject: [PATCH] disable pipelined rendering by default --- crates/bevy_openxr/src/openxr/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bevy_openxr/src/openxr/mod.rs b/crates/bevy_openxr/src/openxr/mod.rs index 11fe352..b4428e2 100644 --- a/crates/bevy_openxr/src/openxr/mod.rs +++ b/crates/bevy_openxr/src/openxr/mod.rs @@ -1,7 +1,7 @@ // use actions::XrActionPlugin; use bevy::{ app::{PluginGroup, PluginGroupBuilder}, - render::RenderPlugin, + render::{pipelined_rendering::PipelinedRenderingPlugin, RenderPlugin}, utils::default, window::{PresentMode, Window, WindowPlugin}, }; @@ -34,7 +34,7 @@ pub fn add_xr_plugins(plugins: G) -> PluginGroupBuilder { plugins .build() .disable::() - // .disable::() + .disable::() .add_before::(XrSessionPlugin) .add_before::(OxrInitPlugin::default()) .add(OxrReferenceSpacePlugin::default())