Example #1
0
        public EnlightedLabel(IMasterAnimator animator, Color baseColor, int phazes, Color bgColor) : base(animator)
        {
            if (phazes <= 3 || phazes > 100)
            {
                throw new ArgumentOutOfRangeException(nameof(phazes));
            }

            //_baseColors = this.CalculatePhazes(bgColor, baseColor, phazes);
        }
Example #2
0
 protected BaseAnimatedControl(IMasterAnimator animator)
 {
     _animator = animator;
 }