unity Destroy的使用

        GameObject obj=    GameObject.CreatePrimitive(PrimitiveType.Cube);

        Destroy(obj);  //物体

        Destroy(this);  //脚本

        Destroy(transform.GetComponent());   //删除组件也可以

        Destroy(obj, 2);       //删除物体,时间

        DestroyImmediate(obj);  //立马删除

        DontDestroyOnLoad(obj);  ///跳转场景时不删除某物体

你可能感兴趣的:(unity Destroy的使用)