imgui-ext¹
A crate to quickly build imgui UIs using annotations and a derive
macro.
¹ The name
imgui-ext
follows the convention of adding an-Ext
suffix to something that enhances an existing type. In this case, the imgui crate.
use UiExt;
ui.window
.size
.build;
Examples
# codegen example (see examples/codegen.rs to see the code generated by the macro)
# several UI examples
# integration with nalgebra types
Limitations
#[derive(imgui_ext::Gui)]
is only supported forstruct
s with named fields.