rust
.with_pass(amethyst_imgui::DrawUi::default())
handle_event
:
rust
amethyst_imgui::handle_imgui_events(data.world, &event);
update
:
rust
let ui = amethyst_imgui::open_frame(state.world);
if let Some(ui) = ui {
ui.show_demo_window(&mut true);
}
update
:
rust
if let Some(ui) = ui { amethyst_imgui::close_frame(ui) }