23 lines
509 B
C#
23 lines
509 B
C#
|
using ET;
|
|||
|
using Sirenix.OdinInspector;
|
|||
|
using UnityEngine;
|
|||
|
#if UNITY_EDITOR
|
|||
|
#endif
|
|||
|
|
|||
|
namespace Cal
|
|||
|
{
|
|||
|
[GUIColor(0.95f, 0.08f, 0f)]
|
|||
|
[System.Serializable]
|
|||
|
public class SkillOption_根据人数改变伤害 : SkillOptionBase
|
|||
|
{
|
|||
|
public override SkillOptionType optionType => SkillOptionType.根据人数改变伤害;
|
|||
|
|
|||
|
[BoxGroup("$optionType", CenterLabel = true)]
|
|||
|
[LabelText("倍数系数")]
|
|||
|
#if UNITY
|
|||
|
[SerializeField]
|
|||
|
#endif
|
|||
|
public SkillParam param;
|
|||
|
}
|
|||
|
}
|