FMOD.Studio.EventInstance.FMOD_Studio_EventInstance_Stop C# (CSharp) Method

FMOD_Studio_EventInstance_Stop() private method

private FMOD_Studio_EventInstance_Stop ( IntPtr _event, STOP_MODE mode ) : RESULT
_event System.IntPtr
mode STOP_MODE
return RESULT
        private static extern RESULT FMOD_Studio_EventInstance_Stop                 (IntPtr _event, STOP_MODE mode);
        [DllImport(STUDIO_VERSION.dll)]

Usage Example

Beispiel #1
0
 public RESULT stop(STOP_MODE mode)
 {
     return(EventInstance.FMOD_Studio_EventInstance_Stop(this.rawPtr, mode));
 }
EventInstance