werckme / werckmeister

An open source Sheet Music MIDI Compiler
http://werckme.github.io/
GNU General Public License v3.0
32 stars 4 forks source link

last meta event will be ignored in a template #426

Open SambaGodschynski opened 1 month ago

SambaGodschynski commented 1 month ago
[
instrument: guitar1;
template: guitar1.riff;
{
    V8 !VI VII8. V8. !VI8 VII r |
    <!VI III'>8 <VII !IV'>8    <I' V'>8. <!VI III'>8
    <VII !IV'>8 
    /beginTag: legato/
    <!VI III'>16  <VII !IV'>16 <I V>8.
    /endTag: legato/
}
]

/endTag: legato/ will not be executed, because with the last note event, no more events are processed

SambaGodschynski commented 1 month ago

as a workaround:

[
instrument: guitar1;
template: guitar1.riff;
{
    /endTag: legato/
    V8 !VI VII8. V8. !VI8 VII r |
    <!VI III'>8 <VII !IV'>8    <I' V'>8. <!VI III'>8
    <VII !IV'>8 
    /beginTag: legato/
    <!VI III'>16  <VII !IV'>16 <I V>8.   
}
]