2022-02-09 11:07:57 +11:00
|
|
|
//! 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.
|
|
|
|
|
|
|
|
mod param_slider;
|
2022-02-09 21:31:59 +11:00
|
|
|
pub mod util;
|
2022-02-09 11:07:57 +11:00
|
|
|
|
|
|
|
pub use param_slider::ParamSlider;
|
|
|
|
|
|
|
|
// TODO: At some opint add some generic UI widget that shows an entire Params struct (in order)
|
|
|
|
// along with the parameter's names as sliders
|