Initial tests are looking good, cursor seems to be the only thing that doesn't work.

Tested with Axios Tennis and the new menu looks pretty slick.

--HG--
branch : axios-newgsm
This commit is contained in:
nathan@daedalus
2012-04-17 23:34:46 -05:00
parent 7cc7e9130c
commit bf3950b0c5
16 changed files with 107 additions and 48 deletions

View File

@@ -336,7 +336,7 @@ namespace Axios.Engine
public override void HandleInput(GameTime gameTime, InputState input)
{
base.HandleInput(input, gameTime);
base.HandleInput(gameTime, input);
foreach (AxiosGameObject g in _gameObjects.ToList())
g.HandleInput(this, input, gameTime);
@@ -347,7 +347,7 @@ namespace Axios.Engine
public override void Deactivate()
{
base.UnloadContent();
base.Deactivate();
//AxiosLog.Instance.AddLine("Memory usage before cleanup: " + GC.GetTotalMemory(true).ToString(), LoggingFlag.DEBUG);
foreach (AxiosGameObject g in _gameObjects)
g.UnloadContent(this);