您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
29 行
577 B
29 行
577 B
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class GameplayUI : MonoBehaviour
|
|
{
|
|
[SerializeField]
|
|
private Button m_ExitButton;
|
|
|
|
[SerializeField]
|
|
private Image m_KeyIndicator;
|
|
|
|
[SerializeField]
|
|
private GameManagerSO m_GameManager;
|
|
|
|
private void OnEnable()
|
|
{
|
|
m_ExitButton.onClick.AddListener(m_GameManager.ExitGameplay);
|
|
}
|
|
|
|
private void OnDisable()
|
|
{
|
|
m_ExitButton.onClick.RemoveListener(m_GameManager.ExitGameplay);
|
|
}
|
|
|
|
public void KeyCollected()
|
|
{
|
|
m_KeyIndicator.color = Color.white;
|
|
}
|
|
}
|