2022-02-09 01:07:57 +01: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-05 19:16:20 +01:00
|
|
|
pub mod generic_ui;
|
2022-02-09 01:07:57 +01:00
|
|
|
mod param_slider;
|
2022-02-09 11:31:59 +01:00
|
|
|
pub mod util;
|
2022-02-09 01:07:57 +01:00
|
|
|
|
|
|
|
pub use param_slider::ParamSlider;
|