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

FMOD_Studio_EventInstance_SetPaused() private method

private FMOD_Studio_EventInstance_SetPaused ( IntPtr _event, bool paused ) : RESULT
_event System.IntPtr
paused bool
return RESULT
        private static extern RESULT FMOD_Studio_EventInstance_SetPaused            (IntPtr _event, bool paused);
        [DllImport(STUDIO_VERSION.dll)]

Usage Example

Beispiel #1
0
 public RESULT setPaused(bool paused)
 {
     return(EventInstance.FMOD_Studio_EventInstance_SetPaused(this.rawPtr, paused));
 }
EventInstance