iTween.ColorTo C# (CSharp) Method

ColorTo() public static method

Changes a GameObject's color values over time with MINIMUM customization options. If a GUIText or GUITexture component is attached, they will become the target of the animation.
public static ColorTo ( GameObject target, Color color, float time ) : void
target GameObject /// A to be the target of the animation. ///
color Color /// A to change the GameObject's color to. ///
time float /// A for the time in seconds the animation will take to complete. ///
return void
    public static void ColorTo(GameObject target, Color color, float time)
    {
        ColorTo(target,Hash("color",color,"time",time));
    }

Same methods

iTween::ColorTo ( GameObject target, Hashtable args ) : void
iTween