A lot of work, beginning client UI, adding lesson and page handling, etc
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user