We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Restarting Racer causes car to allways go left or right after crashing once fixed by adding:
public void resetButtons() { up = false; down = false; left = false; right = false; }
method to gamearena.java and calling in Racer in the start function
The text was updated successfully, but these errors were encountered:
cool. Doing this patch in here should let this happen transparently: https://github.com/finneyj/Racer/blob/master/GameArena.java#L203
Can you confirm if this works, and if so, send me a Pull Request?
Sorry, something went wrong.
It has worked however I do not know how to send you a pull request
No branches or pull requests
Restarting Racer causes car to allways go left or right after crashing once
fixed by adding:
public void resetButtons()
{
up = false;
down = false;
left = false;
right = false;
}
method to gamearena.java and calling in Racer in the start function
The text was updated successfully, but these errors were encountered: