Fixing axios log flag detection

Adding dispose methods to AxiosFile objects
Adding extended log to AxiosLog
Fixing issue in CommandConsole where the first line would not be displayed
Adding commands to commandconsole
This commit is contained in:
Nathan Adams
2015-01-02 20:14:38 -06:00
parent b6e6744a88
commit 01748bc5f8
14 changed files with 157 additions and 17 deletions

View File

@@ -247,6 +247,8 @@ namespace GameStateManagement
/// </summary>
public virtual void Unload() { }
public virtual void ReActivate() { }
/// <summary>
/// Allows the screen to run logic, such as updating the transition position.

View File

@@ -225,6 +225,8 @@ namespace GameStateManagement
// give it a chance to handle input.
if (!otherScreenHasFocus)
{
// The default implementation of screens aren't aware that it's
// being woke up
input.ShowCursor = screen.HasCursor;
input.EnableVirtualStick = screen.HasVirtualStick;
screen.HandleInput(gameTime, input);