事件窗口重绘
This commit is contained in:
@@ -4,8 +4,9 @@ namespace WulaFallenEmpire
|
||||
{
|
||||
public class CompProperties_FlyOverType : CompProperties
|
||||
{
|
||||
public string flyOverType = "default"; // FlyOver 类型标识符
|
||||
public bool isRequiredForDrop = true; // 是否是需要用于空投的类型
|
||||
public int laneLevel = 0; // 航道等级
|
||||
public string flyOverType = "default"; // FlyOver 类型标识符
|
||||
public bool isRequiredForDrop = true; // 是否是需要用于空投的类型
|
||||
|
||||
public CompProperties_FlyOverType()
|
||||
{
|
||||
@@ -17,6 +18,7 @@ namespace WulaFallenEmpire
|
||||
{
|
||||
private CompProperties_FlyOverType Props => (CompProperties_FlyOverType)props;
|
||||
|
||||
public int LaneLevel => Props.laneLevel;
|
||||
public string FlyOverType => Props.flyOverType;
|
||||
public bool IsRequiredForDrop => Props.isRequiredForDrop;
|
||||
|
||||
@@ -27,7 +29,7 @@ namespace WulaFallenEmpire
|
||||
|
||||
public override string CompInspectStringExtra()
|
||||
{
|
||||
return $"FlyOver Type: {FlyOverType}";
|
||||
return $"FlyOver Type: {FlyOverType}, Lane Level: {LaneLevel}";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -47,6 +47,11 @@ namespace WulaFallenEmpire
|
||||
public bool showSectorPreview = true; // 是否显示扇形预览
|
||||
public Color sectorPreviewColor = new Color(0.3f, 0.7f, 1f, 0.3f);
|
||||
|
||||
// 航道等级系统配置
|
||||
public bool useLaneLevelSystem = false; // 是否使用航道等级系统
|
||||
public int laneLevel = 0; // 该技能的航道等级
|
||||
public string flyOverTypeName = "default"; // FlyOver类型名称
|
||||
|
||||
public CompProperties_AbilitySpawnFlyOver()
|
||||
{
|
||||
this.compClass = typeof(CompAbilityEffect_SpawnFlyOver);
|
||||
|
||||
Reference in New Issue
Block a user