One way you can show/hide elements is by using the SetActive method on the element
[SerializeField] GameObject element; HideElement() { element.SetActive(false); } ShowElement() { element.SetActive(true); }
Back Links