7 releases
0.3.1 | May 13, 2024 |
---|---|
0.3.0 | Apr 29, 2024 |
0.2.2 | Nov 28, 2023 |
0.1.1 | Nov 7, 2023 |
#465 in GUI
537 downloads per month
7MB
273 lines
yakui-macroquad
This is a little macroquad integration for yakui, built ontop of yakui-miniquad.
Version
This version is for macroquad 0.4.5 and yakui 0.2.0.
Example
use macroquad::prelude::*;
use yakui_macroquad::*;
#[macroquad::main("yakui-macroquad-example")]
async fn main() {
loop {
clear_background(WHITE);
yakui_macroquad::start();
yakui::center(|| {
let mut text_box = yakui::widgets::Text::new(32.0, "hello, world!");
text_box.style.color = yakui::Color::BLACK;
text_box.show();
});
yakui_macroquad::finish();
yakui_macroquad::draw();
next_frame().await;
}
}
You can also run the example with cargo run --example hello-world
.
License
See LICENSE
Dependencies
~15MB
~347K SLoC