From c3485b787aaa5f6a9a94d873ec613321f3dbdc91 Mon Sep 17 00:00:00 2001 From: Phillip Smith <35803538+TimeTravelPenguin@users.noreply.github.com> Date: Sun, 7 Dec 2025 20:45:37 +1100 Subject: [PATCH] fix: corrected import in example --- examples/side_panel.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/side_panel.rs b/examples/side_panel.rs index 547fdd69..56f069b5 100644 --- a/examples/side_panel.rs +++ b/examples/side_panel.rs @@ -1,5 +1,5 @@ use bevy::{ - camera::{Viewport, visibility::RenderLayers}, + camera::{CameraOutputMode, Viewport, visibility::RenderLayers}, prelude::*, window::PrimaryWindow, }; @@ -163,7 +163,7 @@ fn setup_system( RenderLayers::none(), Camera { order: 1, - output_mode: bevy_camera::CameraOutputMode::Write { + output_mode: CameraOutputMode::Write { blend_state: Some(BlendState::ALPHA_BLENDING), clear_color: ClearColorConfig::None, },