Made gilrs crate public within bevy so we can reference the plugin outside of DefaultPlugins. (#1195)
This commit is contained in:
parent
804c068cc9
commit
b7e35ef744
@ -82,6 +82,11 @@ pub mod audio {
|
|||||||
pub use bevy_audio::*;
|
pub use bevy_audio::*;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(feature = "bevy_gilrs")]
|
||||||
|
pub mod gilrs {
|
||||||
|
pub use bevy_gilrs::*;
|
||||||
|
}
|
||||||
|
|
||||||
#[cfg(feature = "bevy_gltf")]
|
#[cfg(feature = "bevy_gltf")]
|
||||||
pub mod gltf {
|
pub mod gltf {
|
||||||
//! Support for GLTF file loading.
|
//! Support for GLTF file loading.
|
||||||
|
@ -26,3 +26,6 @@ pub use crate::ui::prelude::*;
|
|||||||
|
|
||||||
#[cfg(feature = "bevy_dynamic_plugin")]
|
#[cfg(feature = "bevy_dynamic_plugin")]
|
||||||
pub use crate::dynamic_plugin::*;
|
pub use crate::dynamic_plugin::*;
|
||||||
|
|
||||||
|
#[cfg(feature = "bevy_gilrs")]
|
||||||
|
pub use crate::gilrs::*;
|
||||||
|
Loading…
Reference in New Issue
Block a user