iTween.FadeTo C# (CSharp) Method

FadeTo() public static method

Changes a GameObject's alpha value over time with FULL customization options. If a GUIText or GUITexture component is attached, it will become the target of the animation. Identical to using ColorTo and using the "a" parameter.
public static FadeTo ( GameObject target, Hashtable args ) : void
target GameObject
args Hashtable
return void
    public static void FadeTo(GameObject target, Hashtable args)
    {
        ColorTo(target,args);
    }

Same methods

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