Skip to content

Commit

Permalink
Merge pull request #694 from lwlsn/master
Browse files Browse the repository at this point in the history
change coarse to type pattern double
  • Loading branch information
yaxu committed Jul 9, 2020
2 parents 03b3438 + 7593321 commit ead8fc5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Sound/Tidal/Params.hs
Expand Up @@ -121,8 +121,8 @@ d1 $ (chop 8 $ sounds "breaks125") # unit "c" # coarse "1 2 4 8 16 32 64 128"
which performs a similar effect, but due to differences in implementation sounds different.
-}
begin, legato, clhatdecay, crush :: Pattern Double -> ControlPattern
channel, coarse :: Pattern Int -> ControlPattern
begin, legato, clhatdecay, crush, coarse :: Pattern Double -> ControlPattern
channel :: Pattern Int -> ControlPattern
begin = pF "begin"
-- | choose the physical channel the pattern is sent to, this is super dirt specific
channel = pI "channel"
Expand All @@ -132,7 +132,7 @@ legato = pF "legato"

clhatdecay = pF "clhatdecay"
-- | fake-resampling, a pattern of numbers for lowering the sample rate, i.e. 1 for original 2 for half, 3 for a third and so on.
coarse = pI "coarse"
coarse = pF "coarse"
-- | bit crushing, a pattern of numbers from 1 (for drastic reduction in bit-depth) to 16 (for barely no reduction).
crush = pF "crush"
{- |
Expand Down

0 comments on commit ead8fc5

Please sign in to comment.