iTween.FadeFrom C# (CSharp) Method

FadeFrom() public static method

Changes a GameObject's alpha value instantly then returns it to the provided alpha 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 ColorFrom and using the "a" parameter.
public static FadeFrom ( GameObject target, Hashtable args ) : void
target GameObject
args Hashtable
return void
    public static void FadeFrom(GameObject target, Hashtable args)
    {
        ColorFrom(target,args);
    }

Same methods

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