您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
20 行
403 B
20 行
403 B
using UnityEngine;
|
|
using UnityEngine.Events;
|
|
|
|
/// <summary>
|
|
/// This class is used for Events that have no arguments (Example: Exit game event)
|
|
/// </summary>
|
|
|
|
[CreateAssetMenu(menuName = "Events/Void Event Channel")]
|
|
public class VoidEventChannelSO : DescriptionBaseSO
|
|
{
|
|
public UnityAction OnEventRaised;
|
|
|
|
public void RaiseEvent()
|
|
{
|
|
if (OnEventRaised != null)
|
|
OnEventRaised.Invoke();
|
|
}
|
|
}
|
|
|
|
|