Esempio n. 1
0
 internal static void SetSpeedUpMultiplier(AnimatedIcon animatedIcon, float multiplier)
 {
     if (animatedIcon != null)
     {
         animatedIcon.SetSpeedUpMultiplier(multiplier);
     }
 }
Esempio n. 2
0
 internal static void SetQueueLength(AnimatedIcon animatedIcon, int length)
 {
     if (animatedIcon != null)
     {
         animatedIcon.SetQueueLength(length);
     }
 }
Esempio n. 3
0
 internal static void SetAnimationQueueBehavior(AnimatedIcon animatedIcon, AnimatedIconAnimationQueueBehavior behavior)
 {
     if (animatedIcon != null)
     {
         animatedIcon.SetAnimationQueueBehavior(behavior);
     }
 }
Esempio n. 4
0
 internal static string GetLastAnimationSegmentEnd(AnimatedIcon animatedIcon)
 {
     if (animatedIcon != null)
     {
         return(animatedIcon.GetLastAnimationSegmentEnd());
     }
     return("");
 }
Esempio n. 5
0
 internal static void NotifyLastAnimationSegmentChanged(AnimatedIcon sender)
 {
     LastAnimationSegmentChanged?.Invoke(sender, null);
 }