Question
LoopOut stop at certain time
I have a working loopOut and i'm trying to stop it at a certain time.
i tried:
timeToStop = 10;
if (time > timeToStop) {
value;
} else {
loopOut();
}
and also
if(time < 10){
loopOut()
}
else {
value
}
but both doesnt do the stopping trick, wel it stops right after one sequence...
What do I need to do to make this work? thanks!!
