using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; public class Showing : MonoBehaviour { public GameObject openPanel; public GameObject raw; // Start is called before the first frame update public void Click() { openPanel.SetActive(true); } public void Click_2() { raw.SetActive(true); } // Update is called once per frame }