zxl
/
CTT
forked from Cal/CTT
1
0
Fork 0
CTT/Unity/Assets/XNodeDemo/NewSkill/RunTime/SkillOption_改变公共CD.cs

28 lines
622 B
C#

using ET;
using Sirenix.OdinInspector;
using UnityEngine;
#if UNITY_EDITOR
#endif
namespace Cal
{
[GUIColor(0.6f, 0.8f, 0f)]
[System.Serializable]
public class SkillOption_CD : SkillOptionBase
{
public override SkillOptionType optionType => SkillOptionType.CD;
[BoxGroup("$optionType", CenterLabel = true)]
[LabelText("目标选择")]
public SelectTargetBase selectTarget;
[BoxGroup("$optionType", CenterLabel = true)]
[LabelText("改变量")]
#if UNITY
[SerializeField]
#endif
public SkillParam param;
}
}