previous method
void
previous()
Returns to the previous frame, if any. Snaps (non-consecutive version).
Implementation
void previous() {
if (state > 0) state = state - 1;
}
Returns to the previous frame, if any. Snaps (non-consecutive version).
void previous() {
if (state > 0) state = state - 1;
}