📜  如何禁用gameObject unity c# 代码示例

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

代码示例1
public GameObject gameObj;//the gameobject you want to disable in the scene

        gameObj.SetActive(true); //set the object to active
        gameObj.SetActive(false);//set the object to disable

        gameObject.SetActive(true);//change the state of the current gameobject to active
        gameObject.SetActive(false);//change the state of the current gameobject to disable