bevy/crates/bevy_ui/src/widget/mod.rs
ickshonpe 396aff906e
Remove bevy_ui's "bevy_text" feature (#15951)
# 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.
2024-10-16 16:43:57 +00:00

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::*;