FMOD.Sound.FMOD_Sound_Set3DCustomRolloff C# (CSharp) Метод

FMOD_Sound_Set3DCustomRolloff() приватный Метод

private FMOD_Sound_Set3DCustomRolloff ( IntPtr sound, VECTOR &points, int numpoints ) : RESULT
sound System.IntPtr
points VECTOR
numpoints int
Результат RESULT
        private static extern RESULT FMOD_Sound_Set3DCustomRolloff      (IntPtr sound, ref VECTOR points, int numpoints);
        [DllImport(VERSION.dll)]

Usage Example

Пример #1
0
 public RESULT set3DCustomRolloff(ref VECTOR points, int numpoints)
 {
     return(Sound.FMOD_Sound_Set3DCustomRolloff(soundraw, ref points, numpoints));
 }
Sound