iTween.ColorFrom C# (CSharp) Method

ColorFrom() public static method

Changes a GameObject's color values instantly then returns them to the provided properties over time with MINIMUM customization options. If a GUIText or GUITexture component is attached, it will become the target of the animation.
public static ColorFrom ( 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 ColorFrom(GameObject target, Color color, float time)
    {
        ColorFrom(target,Hash("color",color,"time",time));
    }

Same methods

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