📜  如何统一禁用按钮 - C++ 代码示例

📅  最后修改于: 2022-03-11 14:44:47.026000             🧑  作者: Mango

代码示例1
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