27 lines
659 B
C#
27 lines
659 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_移除Modifier : SkillOptionBase
|
|||
|
{
|
|||
|
public override SkillOptionType optionType => SkillOptionType.移除Modifier;
|
|||
|
|
|||
|
[BoxGroup("$optionType", CenterLabel = true)]
|
|||
|
[LabelText("目标选择")]
|
|||
|
public SelectTargetBase selectTarget = new SelectSingleTarget();
|
|||
|
|
|||
|
[BoxGroup("$optionType", CenterLabel = true)]
|
|||
|
[LabelText("Modifier的Id")]
|
|||
|
#if UNITY
|
|||
|
[SerializeField]
|
|||
|
#endif
|
|||
|
public ModifierId modifierId;
|
|||
|
}
|
|||
|
}
|