Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Merged by Bors] - move bevy_core_pipeline to its own plugin #2552

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix optional core_pipeline
  • Loading branch information
cart committed Jul 27, 2021
commit 9f24747dd0e92abfb0a3d4bc3b28829abcadc7ba
11 changes: 6 additions & 5 deletions crates/bevy_internal/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,6 @@ pub mod core {
pub use bevy_core::*;
}

pub mod core_pipeline {
//! Core render pipeline.
pub use bevy_core_pipeline::*;
}

pub mod diagnostic {
//! Useful diagnostic plugins and types for bevy apps.
pub use bevy_diagnostic::*;
Expand Down Expand Up @@ -87,6 +82,12 @@ pub mod audio {
pub use bevy_audio::*;
}

#[cfg(feature = "bevy_core_pipeline")]
pub mod core_pipeline {
//! Core render pipeline.
pub use bevy_core_pipeline::*;
}

#[cfg(feature = "bevy_gilrs")]
pub mod gilrs {
pub use bevy_gilrs::*;
Expand Down