コード例 #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();
 }