Update method names for Game, add documentation for renderers, remove position argument from DrawSdfText and DrawDebugText in Renderer.

This commit is contained in:
2023-06-17 23:09:21 +02:00
parent 52a3b2f87d
commit d5f5fb5614
7 changed files with 148 additions and 246 deletions

View File

@@ -11,7 +11,7 @@ namespace DaggerFramework.SceneGraph
public override void OnDraw(Renderer renderer)
{
renderer.DrawDebugText(Position, _contents, _fontSize, _fontColor);
renderer.DrawDebugText(_contents, _fontSize, _fontColor);
}
private string _contents = string.Empty;