您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
17 行
445 B
17 行
445 B
using UnityEngine.Events;
|
|
using UnityEngine;
|
|
|
|
/// <summary>
|
|
/// This class is used for Events that have one int argument.
|
|
/// Example: An Achievement unlock event, where the int is the Achievement ID.
|
|
/// </summary>
|
|
|
|
[CreateAssetMenu(menuName = "Events/Int Event Channel")]
|
|
public class IntEventChannelSO : EventChannelBaseSO
|
|
{
|
|
public UnityAction<int> OnEventRaised;
|
|
public void RaiseEvent(int value)
|
|
{
|
|
OnEventRaised.Invoke(value);
|
|
}
|
|
}
|