document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. this.lottie.AnimatorUpdate += this.OnAnimatorUpdate;
  2.  
  3. private void OnAnimatorUpdate(object sender, ValueAnimator.ValueAnimatorUpdateEventArgs e)
  4.         {
  5.             if (e.Animation.IsRunning)
  6.             {
  7.                 this.lottie.Speed = this.lottie.Progress > 0.5 ? 3.5F : 1F;
  8.             }
  9.         }
');