Hi everyone. I found out about wick at processing day NYC and am now trying to play around with it. Ultimately I want to build a game that loops an animation a number of times based on user input. Assuming there is not already a tutorial for doing that, the first step is going to be just building animation and having it loop n number of times. Is the best way to do that just a for loop? I have added a for loop to the default code for the clip:
for (i = 0; i < 5; i++) {
//
}
but I don’t know what should go in the loop to make it run 5 times and then stop.
thanks!