From 49a4009d5cc06410b77707e56f5b43d11dfdf63a Mon Sep 17 00:00:00 2001 From: Alex <3957610+CptPotato@users.noreply.github.com> Date: Wed, 15 Dec 2021 22:04:39 +0000 Subject: [PATCH] re-export ClearPassNode (#3336) Currently the `ClearPassNode` is not exported, due to an additional `use ...;` in the core pipeline's `lib.rs`. This seems unintentional, as there already is a public glob import in the file. This just removes the explicit use. If it actually was intentional to keep the node internal, let me know. --- crates/bevy_core_pipeline/src/lib.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/crates/bevy_core_pipeline/src/lib.rs b/crates/bevy_core_pipeline/src/lib.rs index 24d50dd4c0..f55c7d2ef6 100644 --- a/crates/bevy_core_pipeline/src/lib.rs +++ b/crates/bevy_core_pipeline/src/lib.rs @@ -33,8 +33,6 @@ use bevy_render::{ RenderApp, RenderStage, RenderWorld, }; -use crate::clear_pass::ClearPassNode; - /// Resource that configures the clear color #[derive(Clone, Debug)] pub struct ClearColor(pub Color);