#ui #graphics #gamedev

yakui-macroquad

A library integrating yakui with macroquad

7 releases

new 0.3.1 May 13, 2024
0.3.0 Apr 29, 2024
0.2.2 Nov 28, 2023
0.1.1 Nov 7, 2023

#358 in GUI

Download history 1/week @ 2024-02-20 6/week @ 2024-02-27 1/week @ 2024-03-05 4/week @ 2024-03-12 18/week @ 2024-04-02 69/week @ 2024-04-23 198/week @ 2024-04-30

267 downloads per month

MIT license

7MB
273 lines

yakui-macroquad

CI Docs Crates.io version

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

~23MB
~312K SLoC