Zeplin.Sound.Pause C# (CSharp) Method

Pause() public method

Pauses the sound.
public Pause ( ) : void
return void
        public void Pause()
        {
            if(instance != null)
                instance.Pause();
        }