You can also alter the GUI.color (specifically GUI.color.a) right before the call to GUI.DrawTexture() to determine the transparency. Just make sure to return it to the previous color after it if you draw anything else.
You can even make the entire GUI fade away, buttons and all...
This works just fine:
using UnityEngine;
using System.Collections;
public class GUITest : MonoBehaviour
{
public Texture2D txForeground;
public float fAlpha;
void OnGUI()
{
// Unless you changed it, the default for GUI.color is Color.white, but better be safe than sorry.
// Just save the previous color and restore it after you draw whatever you want to be transparent.
Color colPreviousGUIColor = GUI.color;
GUI.color = new Color(colPreviousGUIColor.r, colPreviousGUIColor.g, colPreviousGUIColor.b, fAlpha);
GUI.DrawTexture(new Rect(0,0,Screen.width, Screen.height), txForeground);
GUI.color = colPreviousGUIColor;
}
}
↧