24 lines
571 B
C#
24 lines
571 B
C#
using ET;
|
|
using Sirenix.OdinInspector;
|
|
#if UNITY_EDITOR
|
|
using UnityEngine;
|
|
#endif
|
|
|
|
namespace Cal
|
|
{
|
|
[GUIColor(0.8f, 0.9f, 0.2f)]
|
|
[System.Serializable]
|
|
public class SkillOption_移除技能 : SkillOptionBase
|
|
{
|
|
public override SkillOptionType optionType => SkillOptionType.移除技能;
|
|
|
|
[BoxGroup("$optionType", CenterLabel = true)]
|
|
[LabelText("目标选择")]
|
|
public SelectTargetBase selectTarget;
|
|
|
|
[BoxGroup("$optionType", CenterLabel = true)]
|
|
[LabelText("skill Id")]
|
|
public int skillId;
|
|
}
|
|
}
|