bool onAnimate(const SkAnimTimer& timer) override {
     if (timer.isStopped()) {
         this->resetBounce();
     } else if (timer.isRunning()) {
         this->bounceMe();
     }
     return true;
 }