Epigene.UI.UIVideo.Pause C# (CSharp) Method

Pause() public method

Pause the video
public Pause ( ) : void
return void
		public void Pause()
		{
#if UNITY_STANDALONE || UNITY_WEBPLAYER
			if(movie)
				movie.Pause();
#endif
		}//Pause()