bevy_ui_bits 0.14.0

A tiny and opinionated collection of UI components for Bevy
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! A tiny and opinionated collection of UI components for Bevy

#![deny(missing_docs)]
#![deny(clippy::all)]
#![deny(clippy::cargo_common_metadata)]
#![deny(clippy::negative_feature_names)]
#![deny(clippy::redundant_feature_names)]
#![deny(clippy::wildcard_dependencies)]

mod button;
mod layout;
mod text;

pub use button::*;
pub use layout::*;
pub use text::*;