Unofficial notes about the excellent egui library
What is egui?
egui is a simple, fast, and highly portable immediate mode GUI library for Rust. egui runs on the web, natively, and in your favorite game engine (or will soon). egui aims to be the easiest-to-use Rust GUI library, and the simplest way to make a web app in Rust. egui can be used anywhere you can draw textured triangles, which means you can easily integrate it into your game engine of choice.
Official egui git repository: https://github.com/emilk/egui
Official egui demo: https://www.egui.rs/#demo
Official egui docs on docs.rs: https://docs.rs/egui/latest/egui/
The purpose of this site is to help guide newcomers to Rust and egui to be able to quickly get up to speed.