#immediate #portable #imgui #gamedev

egui-macroquad-fork

Bindings between egui and macroquad

1 unstable release

0.1.0 Mar 18, 2023

#23 in #immediate


Used in tarsila

MIT license

7KB
93 lines

A fork of https://github.com/optozorax/egui-macroquad


lib.rs:

egui bindings for macroquad

This is the easiest way to use egui. Just two functions!

Web demo.

Usage

You need to call [ui] when you need to get information from ui. Then, only after that function you must call draw function when you need to draw egui contents. All this functions should be called each frame and once per frame.

Here is the small example on how to use this library:

use macroquad::prelude::*;

#[macroquad::main("egui with macroquad")]
async fn main() {
    loop {
        clear_background(WHITE);

        // Process keys, mouse etc.

        egui_macroquad_fork::ui(|egui_ctx| {
            egui::Window::new("egui ❤ macroquad")
                .show(egui_ctx, |ui| {
                    ui.label("Test");
                });
        });

        // Draw things before egui

        egui_macroquad_fork::draw();

        // Draw things after egui

        next_frame().await;
    }
}

Building

Building for native and for web works just as in macroquad. You can read about it here. Or you could look at building example at egui-miniquad.

But for wasm you will need to include two more .js files, which is plugins for quads, instruction is written here.

Dependencies

~20–29MB
~308K SLoC