A lot of work, beginning client UI, adding lesson and page handling, etc

This commit is contained in:
2025-02-16 00:57:45 -06:00
parent 119609f38c
commit 4d0e64ed87
22 changed files with 444 additions and 35 deletions

View File

@@ -102,6 +102,11 @@ public partial class GodotCogwheelConsole : Control, ICogwheelConsole
_output.Text += $"> {command}\n";
_commandsManager.RunCommand(command);
}
if (Input.IsActionJustPressed("debug"))
{
ToggleConsole();
}
}
private Godot.Collections.Dictionary BuildKeywords()
@@ -115,4 +120,9 @@ public partial class GodotCogwheelConsole : Control, ICogwheelConsole
return keywords;
}
private void ToggleConsole()
{
Visible = !Visible;
}
}