コード例 #1
0
ファイル: frmMain.cs プロジェクト: nathanchere/nFMOD
 private void oscInput_VolumeChanged(object sender, OscillatorInput.ValueChangedEventArgs e)
 {
     if (channel != null) channel.Volume = e.Value;
 }
コード例 #2
0
ファイル: frmMain.cs プロジェクト: nathanchere/nFMOD
 private void oscInput_FrequencyChanged(object sender, OscillatorInput.ValueChangedEventArgs e)
 {
     if (oscillator != null) oscillator.Frequency = e.Value;
 }