LuxEngine.Scene.UnPause C# (CSharp) 메소드

UnPause() 공개 메소드

unpause the game, then fire the Unpaused event.
public UnPause ( Scene sender, EventArgs e ) : void
sender Scene
e System.EventArgs
리턴 void
        public void UnPause(Scene sender, EventArgs e)
        {
            paused = false;
            if (UnPaused != null)
                UnPaused(sender, e);
            foreach (Scene subScene in subScenes)
                subScene.UnPause(this, e);
        }