FMOD.Sound.FMOD_Sound_SetLoopCount C# (CSharp) Method

FMOD_Sound_SetLoopCount() private method

private FMOD_Sound_SetLoopCount ( IntPtr sound, int loopcount ) : RESULT
sound System.IntPtr
loopcount int
return RESULT
        private static extern RESULT FMOD_Sound_SetLoopCount            (IntPtr sound, int loopcount);
        [DllImport(VERSION.dll)]

Usage Example

示例#1
0
 public RESULT setLoopCount(int loopcount)
 {
     return(Sound.FMOD_Sound_SetLoopCount(soundraw, loopcount));
 }
Sound