iTween.ColorUpdate C# (CSharp) Method

ColorUpdate() public static method

Similar to ColorTo but incredibly less expensive for usage inside the Update function or similar looping situations involving a "live" set of changing values with MINIMUM customization options. Does not utilize an EaseType.
public static ColorUpdate ( 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 ColorUpdate(GameObject target, Color color, float time)
    {
        ColorUpdate(target,Hash("color",color,"time",time));
    }

Same methods

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