We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d7829f commit 391f20bCopy full SHA for 391f20b
1 file changed
Runtime/DevConsoleMono.cs
@@ -1897,7 +1897,7 @@ private string[] GetInput(string rawInput)
1897
1898
List<string> parameters = new List<string>()
1899
{
1900
- split[0]
+ split[0] // command name (e.g. "print")
1901
};
1902
bool buildingParameter = false;
1903
string parameter = "";
@@ -2039,6 +2039,7 @@ private void RefreshCommandSuggestions()
2039
return;
2040
}
2041
2042
+ // Get a collection of command suggestions and show the first result
2043
_commandSuggestions = GetCommandSuggestions(InputText);
2044
_commandSuggestionIndex = 0;
2045
_suggestionText.text = _commandSuggestions.FirstOrDefault() ?? string.Empty;
0 commit comments