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.
|
|
|
|
|
2022-03-06 05:16:20 +11:00
|
|
|
pub mod generic_ui;
|
2022-02-09 11:07:57 +11:00
|
|
|
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;
|