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

getPaused() public method

public getPaused ( bool &paused ) : RESULT
paused bool
return RESULT
        public RESULT getPaused(out bool paused)
        {
            return FMOD_Studio_EventInstance_GetPaused(rawPtr, out paused);
        }
        public RESULT setPaused(bool paused)

Usage Example

Beispiel #1
0
    public bool IsPaused()
    {
        bool isPaused;

        instance.getPaused(out isPaused);
        return(isPaused);
    }
All Usage Examples Of FMOD.Studio.EventInstance::getPaused
EventInstance