Made gilrs crate public within bevy so we can reference the plugin outside of DefaultPlugins. (#1195)

This commit is contained in:
Adam Bates 2021-01-03 14:36:42 -05:00 committed by GitHub
parent 804c068cc9
commit b7e35ef744
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 0 deletions

View File

@ -82,6 +82,11 @@ pub mod audio {
pub use bevy_audio::*;
}
#[cfg(feature = "bevy_gilrs")]
pub mod gilrs {
pub use bevy_gilrs::*;
}
#[cfg(feature = "bevy_gltf")]
pub mod gltf {
//! Support for GLTF file loading.

View File

@ -26,3 +26,6 @@ pub use crate::ui::prelude::*;
#[cfg(feature = "bevy_dynamic_plugin")]
pub use crate::dynamic_plugin::*;
#[cfg(feature = "bevy_gilrs")]
pub use crate::gilrs::*;