Skip to content

Commit

Permalink
Complete #44 still fixing filter env issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ardura committed Aug 28, 2024
1 parent d30ddbd commit 103e613
Show file tree
Hide file tree
Showing 6 changed files with 457 additions and 91 deletions.
71 changes: 43 additions & 28 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ hound = "3.5.0"
lazy_static = "1.4.0"

# Nih plug update
nih_plug = { git = "https://github.com/ardura/nih-plug.git", rev = "bd0da5e936a213747c29c00d60310578c0907006", features = ["assert_process_allocs"] }
nih_plug_egui = { git = "https://github.com/ardura/nih-plug.git", rev = "bd0da5e936a213747c29c00d60310578c0907006" }
nih_plug = { git = "https://github.com/ardura/nih-plug.git", rev = "de315f902d7b5a75f80bc9d4164e4485bf2b34a1", features = ["assert_process_allocs"] }
nih_plug_egui = { git = "https://github.com/ardura/nih-plug.git", rev = "de315f902d7b5a75f80bc9d4164e4485bf2b34a1" }

# egui_file fork for nih-plug/Actuate
egui_file = { git = "https://github.com/ardura/egui_file.git", rev = "62ea9f5199f847d9722c6493b8cf79c7583f4967" }
egui_file = { git = "https://github.com/ardura/egui_file.git", rev = "841087cdeb974ee9358e05765e41113846bc9f18" }

num-complex = "0.4.4"
num-traits = "0.2.17"
Expand Down
19 changes: 19 additions & 0 deletions src/actuate_enums.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,25 @@ use std::fmt;
use nih_plug::params::enums::Enum;
use serde::{Deserialize, Serialize};

#[derive(Debug, PartialEq, Enum, Clone, Copy)]
pub enum GeneratorType {
Off,
Sine,
Tri,
Saw,
RSaw,
WSaw,
SSaw,
RASaw,
Ramp,
Square,
RSquare,
Pulse,
Noise,
Sampler,
Granulizer,
Additive,
}

// Gui for which filter to display on bottom
#[derive(Debug, PartialEq, Clone, Serialize, Deserialize)]
Expand Down
Loading

0 comments on commit 103e613

Please sign in to comment.