您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
30 行
667 B
30 行
667 B
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.Localization.Components;
|
|
using UnityEngine.UI;
|
|
|
|
public class UIButtonSetter : MonoBehaviour
|
|
{
|
|
[SerializeField] private LocalizeStringEvent _buttonText = default;
|
|
[SerializeField] private MultiInputButton _button = default;
|
|
private VoidEventChannelSO _buttonClickedEvent = default;
|
|
|
|
public void SetButton(VoidEventChannelSO buttonEvent, bool select)
|
|
{
|
|
_buttonClickedEvent = buttonEvent;
|
|
if (select)
|
|
_button.UpdateSelected();
|
|
}
|
|
public void SelectButton()
|
|
{
|
|
_button.UpdateSelected();
|
|
}
|
|
|
|
public void Click()
|
|
{
|
|
_buttonClickedEvent.RaiseEvent();
|
|
|
|
}
|
|
|
|
}
|