예제 #1
0
파일: Sound.cs 프로젝트: punker76/FmodAudio
 public void Set3DCustomRolloff(RolloffPoint *points, int count)
 {
     library.Sound_Set3DCustomRolloff(Handle, points, count).CheckResult();
 }
예제 #2
0
파일: Sound.cs 프로젝트: punker76/FmodAudio
 public void Get3DCustomRolloff(out RolloffPoint *points, out int count)
 {
     library.Sound_Get3DCustomRolloff(Handle, out points, out count).CheckResult();
 }