Culture Clash: swap breakbeat ride cymbals to closed hi-hats

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-30 04:00:42 -04:00
parent 84fc918f2d
commit 14e67c3e81
+4
View File
@@ -39,6 +39,10 @@ MR = DrumSound.MARCH_SNARE
# ── DRUMS — breakbeat backbone ──────────────────────────────────
score.drums("breakbeat", repeats=64)
score.set_drum_effects(volume=0.45, humanize=0.1, ensemble=4)
# Swap ride cymbals to closed hats
for hit in score.parts["drums"]._drum_hits:
if hit.sound == DrumSound.RIDE:
hit.sound = DrumSound.CLOSED_HAT
# ── FOUR ON THE FLOOR — kick on every beat ──────────────────────
kick = score.part("kick", volume=0.4, humanize=0.05)