Skip to content

Commit efe608c

Browse files
author
connorwalsh
committed
finish effects section
1 parent 83a853e commit efe608c

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

3.tidal

+19-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,24 @@ d1 $ sound "808bd:3 ~ [can can, 808:4 ~ ~ 808:4] 808bd:3" # crush "4"
77
-- the # operator is used to chain effects onto the samples
88
-- # is actually shorthand for |=|
99

10-
hush
10+
-- we can actually make patterns of effects as well!! check it out!
11+
d1 $ sound "arpy:1 arpy:6 arpy:8" # vowel "a e y"
12+
13+
-- lets set the legato, the time we allow the sample to fill the space
14+
d1 $ sound "rave cat cat" # legato "0.2"
15+
-- possibly the most annoying samples in existence. you're welcome.
16+
17+
-- we can also set the lowpass cutoff frequency
18+
d1 $ sound "arpy:1 arpy:6 arpy:8" # cutoff "600"
19+
20+
-- throw some resonance on that
21+
d1 $ sound "arpy:1 arpy:6 arpy:8" # cutoff "6000 2000 1000 600 400" # resonance "0.5"
1122

23+
-- highpass
24+
d1 $ sound "arpy:1 arpy:6 arpy:8" # hcutoff "6000 2000 400"
1225

26+
-- some nice delay!
27+
d1 $ sound "arpy:1 arpy:6 <arpy:9 arpy:8 arpy:5 arpy:10>" # delay "0.4" # delayfeedback "0.4" # delaytime "0.4"
28+
29+
30+
hush

0 commit comments

Comments
 (0)