您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
22 行
542 B
22 行
542 B
using UnityEngine;
|
|
using UnityEngine.Events;
|
|
|
|
namespace GameplayIngredients.Actions
|
|
{
|
|
[AddComponentMenu(ComponentMenu.actionsPath + "Unity Event Action")]
|
|
[Callable("Game", "Actions/ic-action-event.png")]
|
|
public class UnityEventAction : ActionBase
|
|
{
|
|
public UnityEvent OnExecute;
|
|
|
|
public override void Execute(GameObject instigator = null)
|
|
{
|
|
OnExecute.Invoke();
|
|
}
|
|
|
|
public override string GetDefaultName()
|
|
{
|
|
return $"Call UnityEvent(s)";
|
|
}
|
|
}
|
|
}
|