Mention order of effects
This commit is contained in:
parent
34e8a57472
commit
e490774294
1 changed files with 4 additions and 3 deletions
|
|
@ -24,9 +24,9 @@ The signal chain in Strudel is as follows:
|
||||||
- Muted sounds (one whose `s` value is `-`, `~`, or `_`) are skipped
|
- Muted sounds (one whose `s` value is `-`, `~`, or `_`) are skipped
|
||||||
- A sound is produced (through, say, a sample or an oscillator)
|
- A sound is produced (through, say, a sample or an oscillator)
|
||||||
- This is where detune-based effects (like `detune`, `penv`, etc. occur)
|
- This is where detune-based effects (like `detune`, `penv`, etc. occur)
|
||||||
- The following will only occur if their respective parameters are turned on. Note that all of these are
|
- The following will occur _in order_ and only if they've been called in the pattern. Note that all of these are
|
||||||
_single use_ effects, meaning that multiple occurrences of them in a pattern will simply override the values
|
single use effects, meaning that multiple occurrences of them in a pattern will simply override the values
|
||||||
(i.e. you can't (currently) do `s("bd").lpf(100).distort(2).lpf(800)` to lowpass, distort, and then lowpass
|
(e.g. you can't do `s("bd").lpf(100).distort(2).lpf(800)` to lowpass, distort, and then lowpass
|
||||||
again)
|
again)
|
||||||
- Phase vocoder (`stretch`)
|
- Phase vocoder (`stretch`)
|
||||||
- Gain is applied (`gain`)
|
- Gain is applied (`gain`)
|
||||||
|
|
@ -127,6 +127,7 @@ Some parameters _do_ induce continuous variations in time, though:
|
||||||
- The filter envelopes (`lpenv`, `hpenv`, `bpenv`)
|
- The filter envelopes (`lpenv`, `hpenv`, `bpenv`)
|
||||||
- Tremolo
|
- Tremolo
|
||||||
- Phaser
|
- Phaser
|
||||||
|
- Ducking (`duckorbit`)
|
||||||
|
|
||||||
# Filters
|
# Filters
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue