24 lines
315 B
C#
24 lines
315 B
C#
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class HelpDev : MonoBehaviour
|
|
{
|
|
public GameObject helpPanel;
|
|
|
|
public Text devText;
|
|
|
|
private Image bgImage;
|
|
|
|
private Color normalColor;
|
|
|
|
private void Start()
|
|
{
|
|
bgImage = GetComponent<Image>();
|
|
normalColor = bgImage.color;
|
|
}
|
|
|
|
private void Update()
|
|
{
|
|
}
|
|
}
|