setLoop method
Sets the loop mode
and the number of repetitions
. This method can be chained.
Implementation
AnimationAction setLoop(int mode, num repetitions) {
loop = mode;
this.repetitions = repetitions;
return this;
}
Sets the loop mode
and the number of repetitions
. This method can be chained.
AnimationAction setLoop(int mode, num repetitions) {
loop = mode;
this.repetitions = repetitions;
return this;
}