using System.Collections; using System.Collections.Generic; using UnityEngine; public class CloseCooler : MonoBehaviour { public GameObject Cooler; public GameObject Cooler_mask; // Start is called before the first frame update void Start() { } public void HideUnityPanel() { Cooler.SetActive(false); Cooler_mask.SetActive(false); } // Update is called once per frame void Update() { } }