Files
2026-03-04 10:03:45 +08:00

17 lines
212 B
C#

using UnityEngine;
namespace Artngame.GIPROXY
{
public class Control_Jove_light : MonoBehaviour
{
private void Start()
{
GetComponent<Light>().enabled = false;
}
private void Update()
{
}
}
}