From a4b44637956889e016e06bfea85941f39e19e06a Mon Sep 17 00:00:00 2001 From: Jon Gadsden Date: Sun, 13 Oct 2019 18:43:08 +0000 Subject: [PATCH] Add low whistle to plugin --- tin_whistle_tablature.qml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tin_whistle_tablature.qml b/tin_whistle_tablature.qml index ee0bfda..1ecd54f 100644 --- a/tin_whistle_tablature.qml +++ b/tin_whistle_tablature.qml @@ -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