diff --git a/hui-examples/examples/ui_test_2_loading.rs b/hui-examples/examples/ui_test_2_loading.rs index ce90ca0..73e484e 100644 --- a/hui-examples/examples/ui_test_2_loading.rs +++ b/hui-examples/examples/ui_test_2_loading.rs @@ -10,8 +10,8 @@ use hui::{ }, layout::Alignment, rect::Corners, - text::FontHandle }; +use hui_painter::text::FontHandle; #[path = "../boilerplate.rs"] #[macro_use] @@ -53,7 +53,7 @@ ui_main!( Text::default() .with_text("Loading...") .with_color((1., 1., 1., flash)) - .with_text_size(24) + .with_text_size(24.) .add_child(ui); }) .add_child(ui); @@ -76,11 +76,11 @@ ui_main!( .with_children(|ui| { Text::default() .with_text("Did you know?") - .with_text_size(18) + .with_text_size(18.) .add_child(ui); Text::default() .with_text("You can die by jumping into the spike pit! :D\nCheck out the tutorial section for more tips.") - .with_text_size(24) + .with_text_size(24.) .with_font(FontHandle::default()) .add_child(ui); }) @@ -117,11 +117,11 @@ ui_main!( .with_children(|ui| { Text::default() .with_text("Level 5") - .with_text_size(24) + .with_text_size(24.) .add_child(ui); Text::default() .with_text("XP: 1234 / 5000") - .with_text_size(18) + .with_text_size(18.) .with_font(FontHandle::default()) .add_child(ui); })