PauseThisScreen
Introduction
Code Example
if(InputManager.Keyboard.KeyPushed(Microsoft.Xna.Framework.Input.Keys.Space))
{
if(this.IsPaused)
{
UnpauseThisScreen();
}
else
{
PauseThisScreen();
}
}PauseThisScreen pauses Entities
PauseThisScreen and Screen CustomActivity
Last updated
Was this helpful?