iTween.FadeUpdate C# (CSharp) Method

FadeUpdate() public static method

Similar to FadeTo but incredibly less expensive for usage inside the Update function or similar looping situations involving a "live" set of changing values with FULL customization options. Does not utilize an EaseType.
public static FadeUpdate ( GameObject target, Hashtable args ) : void
target GameObject
args Hashtable
return void
    public static void FadeUpdate(GameObject target, Hashtable args)
    {
        args["a"]=args["alpha"];
        ColorUpdate(target,args);
    }

Same methods

iTween::FadeUpdate ( GameObject target, float alpha, float time ) : void
iTween