IEnumerator CoFadeOut(UIThing _thing) { yield return new WaitForSeconds(2f); _thing.gameObject.SetActive(false); }
public void MakeFadeOut(UIThing _thing) { StartCoroutine(CoFadeOut(_thing)); }