ChangDaoZhanGuan/ChangDaoPro/Assets/Scr/CloseLighting.cs

24 lines
417 B
C#

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