您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
37 行
874 B
37 行
874 B
using NaughtyAttributes;
|
|
|
|
namespace GameplayIngredients.Events
|
|
{
|
|
public class OnMessageEvent : EventBase
|
|
{
|
|
public string MessageName = "Message";
|
|
|
|
[ReorderableList]
|
|
public Callable[] OnMessageRecieved;
|
|
|
|
void OnEnable()
|
|
{
|
|
Messager.RegisterMessage(MessageName, Execute);
|
|
}
|
|
|
|
void OnDisable()
|
|
{
|
|
Messager.RemoveMessage(MessageName, Execute);
|
|
}
|
|
|
|
void Execute()
|
|
{
|
|
try
|
|
{
|
|
Callable.Call(OnMessageRecieved, gameObject);
|
|
}
|
|
catch(System.Exception e)
|
|
{
|
|
UnityEngine.Debug.LogError(string.Format("Exception Caught while catching message '{0}' on Object '{1}'", MessageName, gameObject.name));
|
|
UnityEngine.Debug.LogException(e);
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|