コード例 #1
0
ファイル: SoundEngine.cs プロジェクト: huangxuelun/X2MP
 private void SetEqualizerBand(FMOD.DSP eqDsp, float gain)
 {
     FMOD.RESULT result;
     //set the gain for the specified eq band
     result = eqDsp.setParameterFloat((int)FMOD.DSP_PARAMEQ.GAIN, gain);
 }