Add hotkey to quick focus debug console input

This commit is contained in:
Zode
2025-06-09 23:34:02 +03:00
committed by GitHub
parent eee4e55cf0
commit c1e782bb32
4 changed files with 15 additions and 0 deletions

View File

@@ -830,6 +830,15 @@ namespace FlaxEditor.Windows
OnOutputTextChanged();
}
/// <summary>
/// Focus the debug command line and ensure that the output log window is visible.
/// </summary>
public void FocusCommand()
{
FocusOrShow();
_commandLineBox.Focus();
}
/// <inheritdoc />
public override void Update(float deltaTime)
{