Moved inputs inside update section of game loop.

This commit is contained in:
2020-07-03 18:16:16 -05:00
parent ad77fec3a2
commit 3ecd32520c
3 changed files with 58 additions and 57 deletions

View File

@@ -88,7 +88,7 @@ namespace SlatedGameToolkit.Tools.Utilities.Playground
renderer.Draw(logo);
renderer.Draw(textureTester);
renderer.Draw(untextured);
font.Draw(renderer, 0.25f, -0.35f, "ABCDEFHIJKLMNOPQRSTUVWXYZ1234567890", Color.White);
font.Draw(renderer, 0.25f, -0.35f, "Hello World.", Color.White);
renderer.Draw(new RectangleMesh(new RectangleF(-1, -1, 0.5f, 0.5f), new RectangleF(0, 1, 1, -1), font.GetTextureBacking(0), Color.White));
renderer.End();
}