Skip to content

Commit

Permalink
Merge pull request #25 from jgadsden/low-whistle-v2
Browse files Browse the repository at this point in the history
Add low whistle to version 2 plugin
  • Loading branch information
jgadsden authored Oct 13, 2019
2 parents 9c3caaf + a4b4463 commit 4dc7769
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tin_whistle_tablature.qml
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,15 @@ MuseScore {
} else if (instrument == "wind.flutes.whistle.tin.g") {
basePitch = 79 // G tuning
tabOffsetY = 10
} else if (instrument == "wind.flutes.whistle.low.d") {
basePitch = 62 // D tuning for low whistle
tabOffsetY = 13
} else if (instrument == "wind.flutes.whistle.low.f") {
basePitch = 65 // F tuning for low whistle
tabOffsetY = 12
} else if (instrument == "wind.flutes.whistle.low.g") {
basePitch = 67 // G tuning for low whistle
tabOffsetY = 11.5
} else {
console.log("Skipped staff " + staff + " for instrument: " + instrument)
continue
Expand Down

0 comments on commit 4dc7769

Please sign in to comment.