priority method

double priority()

Implementation

double priority() {
  if (_noteGain < SoundFontMath.nonAudible) {
    return 0.0;
  } else {
    return _volEnv.priority();
  }
}