Fusion.Engine.Audio.SoundWorld.Pause C# (CSharp) Method

Pause() public method

Pauses sound world.
public Pause ( ) : void
return void
		public void Pause ()
		{
			IsPaused	=	true;

			foreach ( var e in emitters ) {
				e.Pause();
			}
		}