コード例 #1
0
ファイル: FmodSystem.cs プロジェクト: nathanchere/nFMOD
 public Channel PlayDsp(Dsp dsp, bool paused = false)
 {
     throw new NotImplementedException("Use DSP.Play() instead");
 }
コード例 #2
0
ファイル: FmodSystem.cs プロジェクト: nathanchere/nFMOD
 public void PlayDsp(Dsp dsp, bool paused, Channel chn)
 {
     throw new NotImplementedException("Use DSP.Play() instead");
 }
コード例 #3
0
ファイル: FmodSystem.cs プロジェクト: nathanchere/nFMOD
 // TODO: seems wrong; investigate
 public DspConnection AddDsp(Dsp dsp)
 {
     IntPtr result = IntPtr.Zero;
     Errors.ThrowIfError(AddDSP(DangerousGetHandle(), dsp.DangerousGetHandle(), ref result));
     return new DspConnection(result);
 }