17 lines
483 B
Markdown
17 lines
483 B
Markdown
# Industrial Techno Template
|
|
|
|
```javascript
|
|
setcps(132/60/4)
|
|
|
|
// Drums: Raw & Distorted
|
|
$: s("bd*4").bank("tr909").distort(2).gain(0.9)
|
|
$: s("hh*16").bank("tr606").crush(4).gain(0.6).pan(sine.range(0.2, 0.8).fast(2))
|
|
$: s("cp").at(3).room(1).rev().gain(0.7)
|
|
|
|
// Bass: Gritty & Dark
|
|
$: note("c1*8").s("supersaw").lpf(sawtooth.range(100, 800).slow(4)).distort(1.5).gain(0.8)
|
|
|
|
// Textures: Noise & Chaos
|
|
$: s("white").density(16).lpf(2000).gain(sine.range(0, 0.3).slow(8)).jux(rev)
|
|
```
|