17 lines
212 B
C#
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()
|
|
{
|
|
}
|
|
}
|
|
}
|