| 49 | } |
| 50 | |
| 51 | void AltoSynth::trigger( float freqMidi, float decaySeconds ) |
| 52 | { |
| 53 | const float initialMaxVol = 0.6f; |
| 54 | |
| 55 | setInUse(); |
| 56 | |
| 57 | mGen->setFreq( audio::midiToFreq( freqMidi ) ); |
| 58 | mGainRamp = mGain->getParam()->applyRamp( initialMaxVol, 0, decaySeconds ); |
| 59 | |
| 60 | mGain->enable(); |
| 61 | mGen->enable(); |
| 62 | } |
| 63 | |
| 64 | BassSynth::BassSynth( AudioController *parent ) |
| 65 | : Synth( parent ) |
no test coverage detected