zxl
/
CTT
forked from Cal/CTT
1
0
Fork 0
CTT/Unity/Assets/XNodeDemo/NewSkill/RunTime/SkillOption_改变释放次数.cs

29 lines
701 B
C#
Raw Normal View History

2021-04-08 20:09:59 +08:00
using ET;
using MongoDB.Bson.Serialization.Attributes;
using UnityEngine;
using Sirenix.OdinInspector;
#if UNITY_EDITOR
#endif
namespace Cal
{
[GUIColor(0.6f, 0.8f, 0f)]
[System.Serializable]
[BsonIgnoreExtraElements]
public class SkillOption_ : SkillOptionBase
{
public override SkillOptionType optionType => SkillOptionType.;
[BoxGroup("$optionType", CenterLabel = true)]
[LabelText("目标选择")]
public SelectTargetBase selectTarget;
[BoxGroup("$optionType", CenterLabel = true)]
[LabelText("次数")]
#if UNITY
[SerializeField]
#endif
public SkillParam param;
}
}