DeveloperConsole.DeveloperConsole.NextInput C# (CSharp) 메소드

NextInput() 개인적인 메소드

Set the input line to the next item in input history If no next line in input history, clears input
private NextInput ( ) : void
리턴 void
        private void NextInput()
        {
            _inputOffset = 0;
            if (_historyCursor > 0) {
                _historyCursor--;
            }
            else {
                Input = "";
                return;
            }
            Input = _inputHistory[_historyCursor];
        }