nice-plug-egui 0.1.3

An adapter to use egui GUIs with nice-plug
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Custom egui widgets for displaying parameter values.
//!
//! # Note
//!
//! None of these widgets are finalized, and their sizes or looks can change at any point. Feel free
//! to copy the widgets and modify them to your personal taste.

pub mod generic_ui;
mod param_slider;
pub mod util;

pub use param_slider::ParamSlider;