Answers for "unity button click disable"

C++
6

how to disable buttons in unity

Button.interactable = false; // Uses Disabled Color And Cant Click It
Button.enabled = false; // Does Not Use Disabled Color And Cant Click It
Button.gameObject.SetActive(false); // Removes It From UI Entirely
Posted by: Guest on May-11-2021

Code answers related to "unity button click disable"

Browse Popular Code Answers by Language