So I have my animation working and I tried making a counter but it is still way to fast how do I slow it way down. Its supposed to look like a kick so it really needs to be slow.
int counter = 0;
public void act() {
counter++;
if (counter % 3 == 0) {
//This code will be executed only once in three acts;
//If you use other valuse instead of 3 it takes longer or not so long if you use values smaler than 3;
}
}