Ejemplo n.º 1
0
        public static CommandDelegate TintFrom(GUIText text, Color startColour, double duration, CommandEase ease = null)
        {
            CheckArgumentNonNull(text, "text");

            return(TintFrom(text.ToColorRef(), startColour, duration, ease));
        }
Ejemplo n.º 2
0
        public static CommandDelegate TintBy(GUIText text, Color offset, double duration, CommandEase ease = null)
        {
            CheckArgumentNonNull(text, "text");

            return(TintBy(text.ToColorRef(), offset, duration, ease));
        }