Disable phantom drum track and hi-hats in arranger

This commit is contained in:
b1rdmania
2026-01-20 19:45:37 +00:00
parent 7aa1d6f660
commit 03738dd68c
+2 -2
View File
@@ -46,12 +46,12 @@ export interface ArrangerConfig {
const DEFAULT_CONFIG: ArrangerConfig = {
enhanceBass: true,
enhanceDrums: true,
enhanceDrums: false, // Disabled - no phantom drums/hi-hats
doubleMelody: true,
fillGaps: true,
minGapToFill: 0.5,
targetUtilization: 0.7,
hihatRate: 1, // Quarter notes (less busy than 8th notes)
hihatRate: 1,
bpm: 120,
};