I noticed that in starting, a function processInput() was created which was being called inside Update() function. That function included the call to Thrust() and Rotate(). But in this lecture i could see that the function was not present in code.
Earlier the code was,
void Update () {
processInput();
}
private void processInput()
{
Thrust();
Rotate();
}
But now it is,
void Update () {
Thrust();
Rotate();
}
So, Is it removed for good or will again be reintroduced later?