25 lines
615 B
C#
25 lines
615 B
C#
using ET;
|
|
using Sirenix.OdinInspector;
|
|
using UnityEngine;
|
|
#if UNITY_EDITOR
|
|
#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;
|
|
|
|
[BoxGroup("$optionType", CenterLabel = true)]
|
|
[LabelText("Modifier的Id")]
|
|
[SerializeField]
|
|
public ModifierId modifierId;
|
|
}
|
|
}
|