您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

25 行
621 B

using NaughtyAttributes;
using UnityEngine.Events;
namespace GameplayIngredients.Events
{
[AdvancedHierarchyIcon("Packages/net.peeweek.gameplay-ingredients/Icons/Events/ic-event-enable-disable.png")]
public class OnEnableDisableEvent : EventBase
{
[ReorderableList]
public Callable[] OnEnableEvent;
[ReorderableList]
public Callable[] OnDisableEvent;
private void OnEnable()
{
Callable.Call(OnEnableEvent, gameObject);
}
private void OnDisable()
{
Callable.Call(OnDisableEvent, gameObject);
}
}
}