bevy/crates/bevy_ui/src/widget/mod.rs
Troels Jessen 32f7997c56 Partially document bevy_ui (#3526)
# Objective

Updated the docs for bevy_ui as requested by #3492 

## Solution

I have documented the parts I understand. anchors.rs is not in use and should be removed, thus I haven't documented that, and some of the more renderer-heavy code is beyond me and needs input from either cart or someone familiar with bevy rendering

Co-authored-by: Troels Jessen <kairyuka@gmail.com>
2022-01-07 22:20:34 +00:00

9 lines
153 B
Rust

//! This module contains the basic building blocks of Bevy's UI
mod button;
mod image;
mod text;
pub use button::*;
pub use image::*;
pub use text::*;