18 lines
472 B
Markdown
18 lines
472 B
Markdown
# Deep House Template
|
|
|
|
```javascript
|
|
setcps(124/60/4)
|
|
|
|
// Drums: Warmth & Groove
|
|
$: s("bd*4").bank("tr909").gain(1.1)
|
|
$: s("- [cp|sd] - [cp|sd]").bank("tr909").gain(0.9)
|
|
$: s("hh*8, - oh").bank("tr909").gain(0.7).room(0.1)
|
|
|
|
// Bass: Funky & Round
|
|
$: note("c2*2").s("saw").lpf(sine.range(100, 300).slow(4)).gain(0.8).adsr("0.05:0.2:0.5:0.2")
|
|
|
|
// Harmony: Lush chords
|
|
$: chord("<Cm7 F9 Bbmaj7 G7alt>").voicing().s("gm_epiano1")
|
|
.room(.6).delay(.4).slow(2).gain(0.7)
|
|
```
|