-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Effect "dj-filter" should be inactive when value is 0.5 #293
Comments
Agreed, 0.5 should be 100% dry signal. |
This solves it on the tidal side: import qualified Data.Map.Strict as Map
let djf :: Pattern Double -> ControlPattern
djf pat = sew ((== 0.5) <$> pat) (pure Map.empty) (pF "djf" pat) |
Great, I had tried it on Tidal side, but ran into issues where Pattern Doubles can't use ==, but you've got it there, so probably better than a SuperDirt fix! Thanks |
I wonder if tweaking the ranges on the SC side would be a better fix, e.g.:
(probably only one of these ranges needs to be tweaked) |
If so we could have an 'djfisland' parameter that is added/subtracted from the ranges to make a bigger 'clean' area |
Are there other use cases for this pattern? E.g. isn't it the same when setting reverb to 0 that it's still audible? Maybe this is a general feature for SD fx? |
Yes, I think that would be the best. |
Currently
# djf 0.5
is audible, ideally it would not beSuperDirt/library/default-effects-extra.scd
Lines 400 to 415 in de8753c
This could be achieved using perhaps some kind of control structure (incorrect code below)
An alternative might be
# djf "-1"
The text was updated successfully, but these errors were encountered: