AlphaTab.Audio.Generator.MidiFileGenerator.GenerateVibrato C# (CSharp) Метод

GenerateVibrato() приватный Метод

private GenerateVibrato ( Note note, int noteStart, int noteDuration, int noteKey, DynamicValue dynamicValue ) : void
note AlphaTab.Model.Note
noteStart int
noteDuration int
noteKey int
dynamicValue DynamicValue
Результат void
        private void GenerateVibrato(Note note, int noteStart, int noteDuration, int noteKey, DynamicValue dynamicValue)
        {
            const int phaseLength = 480; // ticks
            const int bendAmplitude = 2;
            var track = note.Beat.Voice.Bar.Staff.Track;

            GenerateVibratorWithParams(track, noteStart, noteDuration, phaseLength, bendAmplitude);
        }