Skip to content

Commit

Permalink
Merge pull request #28 from ErinaceusLinnaeus/patch-1
Browse files Browse the repository at this point in the history
correcting the midi notes
  • Loading branch information
momentarylapse authored Nov 29, 2024
2 parents b46ce00 + 2558e0d commit 4a72c6c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions plugins/independent/live-performance/Mandala.kaba
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,11 @@ use hui
let NSURFACES = 4
let NRIMS = 9

let SURFACE_PITCHES = [36, 38, 40, 41] # C2,D2,E2,F2
let RIM_PITCHES = [48, 50, 52, 53, 55, 57, 59, 60, 72] # C3,D3,...,C4, C5

let SURFACE_PITCHES = [48, 50, 52, 53] # C3,D3,E3,F3
# warning: Mandala calls these C2,D2,E2,F2
let RIM_PITCHES = [60, 62, 64, 65, 67, 69, 71, 72, 84] # C4,D4,...,C5, C6
# warning: Mandala calls these C3,D3,...,C4, C5

func sample_name(sample: shared[SampleRef]) -> string
for s in sample
Expand Down

0 comments on commit 4a72c6c

Please sign in to comment.