I want to show my timer counting down 3 seconds but it goes too quickly how do I solve this?
here's the code:
public void waitFor(Actor sbob) {
for(int i = 3; i >= 1; i--) {
showText("Wait for: " + i, 400, 300);
sbob.sleepFor(200);
}