示例#1
0
        /// <summary>
        ///     Helper method that generates all animation frames.
        /// </summary>
        /// <returns></returns>
        private static ColorScheme[] GenerateAnimationFrames()
        {
            // Init with sine wave
            var myReturn = new ColorScheme[40];

            for (var i = 0; i < myReturn.Length; i++)
            {
                myReturn[i] = AnimationUtils.CircularSineWave(new Color(0f, 0f, .2f), new Color(.3f, .3f, 1f), i);
            }

            return(myReturn);
        }
示例#2
0
        /// <summary>
        ///     Static constructor adds lightning bolts in different colors to both frames
        /// </summary>
        static SplashdownAnimation()
        {
            var newFrames = new List <ColorScheme>();

            var uninterpolated = GenerateAnimationFrames();

            for (var i = 0; i < uninterpolated.Length - 1; i++)
            {
                newFrames.AddRange(AnimationUtils.InterpolateFrames(uninterpolated[i], uninterpolated[i + 1], 5));
            }

            newFrames.AddRange(
                AnimationUtils.InterpolateFrames(
                    uninterpolated[uninterpolated.Length - 1],
                    new ColorScheme(new Color(0f, 0f, .2f)),
                    10
                    )
                );

            frames = newFrames.ToArray();
        }
示例#3
0
 /// <summary>Static constructor interpolates from blue to logo.</summary>
 static LogoAnimation()
 {
     frames = AnimationUtils.InterpolateFrames(new ColorScheme(Color.blue), new LogoScheme(), 20);
 }