public void EnableHighlight(Color color) { Image highlight = UiRect.GetChild(0).GetComponent <Image>(); highlight.color = color; highlight.enabled = true; }
public void DisableHighlight() { Image highlight = UiRect.GetChild(0).GetComponent <Image>(); highlight.enabled = false; }