Help resetting variables inside classes, arrays

Hello @moffmix,

This will restart from setup():

void keyPressed()
  {
  if (key == 'r' || key == 'R')
    {
    music.stop();
    purr.stop();
    frameCount = -1;  //next frame is setup() which is frameCount = 0
    }
  }

References:

:)