Progress on tutorial

This commit is contained in:
Regalis
2015-08-11 20:23:48 +03:00
parent f248ef528b
commit 5771bc7e02
34 changed files with 528 additions and 192 deletions
+3 -3
View File
@@ -161,7 +161,7 @@ namespace Subsurface
}
private float loadState = 0.0f;
private IEnumerable<Status> Load()
private IEnumerable<object> Load()
{
GUI.Font = ToolBox.TryLoadFont("SpriteFont1", Content);
GUI.SmallFont = ToolBox.TryLoadFont("SmallFont", Content);
@@ -199,7 +199,7 @@ namespace Subsurface
loadState = 70.0f;
yield return Status.Running;
GameMode.Init();
GameModePreset.Init();
Submarine.Preload("Content/SavedMaps");
loadState = 80.0f;
@@ -277,7 +277,7 @@ namespace Subsurface
}
}
CoroutineManager.Update();
CoroutineManager.Update((float)deltaTime);
}