Fade multiple GuiTextures in ONE Javascript

Hi folks,

Is it possible to fade multiple GuiTextures in and out in only one Js?

If yes, can someone show me how? Because I’ve no idea how. I’m talking about 3 GuiTextures.

Thanks in advance.

var _Alpha : float = 1; // Change this value to change the alpha of the GUI
var _Texture : Texture2D;
function OnGUI(){
GUI.color.a = _Alpha;
GUI.DrawTexture(Rect(0,0,100,100), _Texture, ScaleMode.StretchToFill, true);
GUI.DrawTexture(Rect(100,0,100,100), _Texture, ScaleMode.StretchToFill, true);
GUI.DrawTexture(Rect(200,0,200,200), _Texture, ScaleMode.StretchToFill, true);
}

Is this what you’re looking for?

Hope this helps =)