bevy_ui_string_parser 0.1.2

Parser for various values used in bevy-ui.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod angle;
mod color;
mod rect;
mod val;

#[cfg(feature = "serde")]
pub use angle::angle_serde_parser;
#[cfg(feature = "serde")]
pub use color::color_serde_parser;
#[cfg(feature = "serde")]
pub use rect::rect_serde_parser;
#[cfg(feature = "serde")]
pub use val::val_serde_parser;
pub use angle::{angle_parser, angle_string_parser};
pub use color::CSS_COLOR_TABLE;
pub use color::{color_parser, color_string_parser};
pub use rect::{rect_parser, rect_string_parser};
pub use val::{val_parser, val_string_parser};