您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
32 行
598 B
32 行
598 B
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.Events;
|
|
|
|
public class UICredits : MonoBehaviour
|
|
{
|
|
private UISettingFieldsFiller _settingFieldsFiller = default;
|
|
|
|
public UnityAction closeCreditsAction;
|
|
[SerializeField]
|
|
private InputReader _inputReader = default;
|
|
|
|
private void OnEnable()
|
|
{
|
|
_inputReader.menuCloseEvent += CloseCreditsScreen;
|
|
|
|
}
|
|
private void OnDisable()
|
|
{
|
|
_inputReader.menuCloseEvent -= CloseCreditsScreen;
|
|
}
|
|
public void SetCreditsScreen()
|
|
{
|
|
|
|
|
|
}
|
|
public void CloseCreditsScreen()
|
|
{
|
|
closeCreditsAction.Invoke();
|
|
}
|
|
}
|