mirror of
https://github.com/griffi-gh/hUI.git
synced 2025-04-04 06:56:29 -05:00
fix example 2
This commit is contained in:
parent
6fd0402a28
commit
537d138651
|
@ -10,8 +10,8 @@ use hui::{
|
||||||
},
|
},
|
||||||
layout::Alignment,
|
layout::Alignment,
|
||||||
rect::Corners,
|
rect::Corners,
|
||||||
text::FontHandle
|
|
||||||
};
|
};
|
||||||
|
use hui_painter::text::FontHandle;
|
||||||
|
|
||||||
#[path = "../boilerplate.rs"]
|
#[path = "../boilerplate.rs"]
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
|
@ -53,7 +53,7 @@ ui_main!(
|
||||||
Text::default()
|
Text::default()
|
||||||
.with_text("Loading...")
|
.with_text("Loading...")
|
||||||
.with_color((1., 1., 1., flash))
|
.with_color((1., 1., 1., flash))
|
||||||
.with_text_size(24)
|
.with_text_size(24.)
|
||||||
.add_child(ui);
|
.add_child(ui);
|
||||||
})
|
})
|
||||||
.add_child(ui);
|
.add_child(ui);
|
||||||
|
@ -76,11 +76,11 @@ ui_main!(
|
||||||
.with_children(|ui| {
|
.with_children(|ui| {
|
||||||
Text::default()
|
Text::default()
|
||||||
.with_text("Did you know?")
|
.with_text("Did you know?")
|
||||||
.with_text_size(18)
|
.with_text_size(18.)
|
||||||
.add_child(ui);
|
.add_child(ui);
|
||||||
Text::default()
|
Text::default()
|
||||||
.with_text("You can die by jumping into the spike pit! :D\nCheck out the tutorial section for more tips.")
|
.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())
|
.with_font(FontHandle::default())
|
||||||
.add_child(ui);
|
.add_child(ui);
|
||||||
})
|
})
|
||||||
|
@ -117,11 +117,11 @@ ui_main!(
|
||||||
.with_children(|ui| {
|
.with_children(|ui| {
|
||||||
Text::default()
|
Text::default()
|
||||||
.with_text("Level 5")
|
.with_text("Level 5")
|
||||||
.with_text_size(24)
|
.with_text_size(24.)
|
||||||
.add_child(ui);
|
.add_child(ui);
|
||||||
Text::default()
|
Text::default()
|
||||||
.with_text("XP: 1234 / 5000")
|
.with_text("XP: 1234 / 5000")
|
||||||
.with_text_size(18)
|
.with_text_size(18.)
|
||||||
.with_font(FontHandle::default())
|
.with_font(FontHandle::default())
|
||||||
.add_child(ui);
|
.add_child(ui);
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue