上海虹口龙之梦项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

69 lines
1.7 KiB

using UnityEngine;
using UnityEngine.UI;
[DisallowMultipleComponent]
public class DeviceLumos : MonoBehaviour
{
public Color NormalColor = Color.white;
public Color TargetColor = Color.red;
private float time;
private bool LumosReady;
private float Interval = 0.5f;
private void Awake()
{
if (GetComponent<Renderer>())
{
NormalColor = GetComponent<Renderer>().material.color;
TargetColor = Color.red;
}
else if (GetComponent<Image>())
{
NormalColor = GetComponent<Image>().color;
TargetColor = Color.blue;
}
}
private void LateUpdate()
{
time += Time.deltaTime;
if (time > Interval)
{
time = 0.0f;
LumosReady = !LumosReady;
}
if (GetComponent<Renderer>())
{
if (LumosReady)
{
GetComponent<Renderer>().material.SetColor("_Color", NormalColor);
}
else
{
GetComponent<Renderer>().material.SetColor("_Color", TargetColor);
}
}
else if (GetComponent<Image>())
{
if (LumosReady)
{
GetComponent<Image>().color = NormalColor;
}
else
{
GetComponent<Image>().color = TargetColor;
}
}
}
private void OnDestroy()
{
if (GetComponent<Renderer>())
{
GetComponent<Renderer>().material.SetColor("_Color", NormalColor);
}
else if (GetComponent<Image>())
{
GetComponent<Image>().color = NormalColor;
}
}
}