FMOD.Sound.FMOD_Sound_Get3DCustomRolloff C# (CSharp) 메소드

FMOD_Sound_Get3DCustomRolloff() 개인적인 메소드

private FMOD_Sound_Get3DCustomRolloff ( IntPtr sound, IntPtr &points, int &numpoints ) : RESULT
sound System.IntPtr
points System.IntPtr
numpoints int
리턴 RESULT
        private static extern RESULT FMOD_Sound_Get3DCustomRolloff      (IntPtr sound, out IntPtr points, out int numpoints);
        [DllImport(VERSION.dll)]

Usage Example

예제 #1
0
 public RESULT get3DCustomRolloff(ref IntPtr points, ref int numpoints)
 {
     return(Sound.FMOD_Sound_Get3DCustomRolloff(soundraw, ref points, ref numpoints));
 }
Sound