
# Objective Remove `bevy-ui`'s non-functional "bevy_text" feature. Fixes #15900 ## Solution Remove all the "bevy_text" cfg gates. I tried to fix it at first but couldn't figure it out. I'll happily withdraw this in favour of another PR that gets the feature gate working.
14 lines
184 B
Rust
14 lines
184 B
Rust
//! This module contains the basic building blocks of Bevy's UI
|
|
|
|
mod button;
|
|
mod image;
|
|
mod label;
|
|
|
|
mod text;
|
|
|
|
pub use button::*;
|
|
pub use image::*;
|
|
pub use label::*;
|
|
|
|
pub use text::*;
|