28 lines
622 B
C#
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;
|
|||
|
|
|||
|
}
|
|||
|
}
|