コード例 #1
0
 public Result ListenerAttributes(out int listenerCount, out Attributes3D attributes)
 {
     fixed(int *pListenerCount = &listenerCount)
     fixed(Attributes3D * pAttributes = &attributes)
     {
         return(ListenerAttributes(pListenerCount, pAttributes));
     }
 }
コード例 #2
0
ファイル: System.cs プロジェクト: minimalism/SupersonicSound
 public void SetListenerAttributes(int listener, Attributes3D value)
 {
     _system.setListenerAttributes(listener, value.ToFmod()).Check();
 }