private void OnAnimation(object sender, EcoreAnimatorEventArgs e)
 {
     if (_started)
     {
         if (_animationCount == 0)
         {
             _animationStopWatch.Start();
         }
         _animationCount++;
     }
 }
示例#2
0
 private void OnEcoreAnimationCheck(object sender, EcoreAnimatorEventArgs e)
 {
     _ecoreCount++;
     Console.WriteLine($"OnEcoreAnimationCheck  _ecoreCount:{_ecoreCount}");
 }