This commit is contained in:
Tourswen
2026-02-25 23:54:44 +08:00
parent fff40b0edb
commit 991c746005
11 changed files with 92 additions and 32 deletions

View File

@@ -372,7 +372,7 @@ namespace WulaFallenEmpire
{
defaultLabel = "WULA_RefuelNow".Translate(),
defaultDesc = "WULA_RefuelNowDesc".Translate(),
icon = ContentFinder<Texture2D>.Get("WulaFallenEmpire/UI/Commands/WULA_Refuel_Mech"),
icon = ContentFinder<Texture2D>.Get("Wula/UI/Commands/WULA_Refuel_Mech"),
action = () => RefuelNow()
};

View File

@@ -16,8 +16,8 @@ namespace WulaFallenEmpire
public string pilotWorkTag = "MechPilot";
// 新增:驾驶员图标配置
public string summonPilotIcon = "WulaFallenEmpire/UI/Commands/WULA_Enter_Mech";
public string ejectPilotIcon = "WulaFallenEmpire/UI/Commands/WULA_Exit_Mech";
public string summonPilotIcon = "Wula/UI/Commands/WULA_Enter_Mech";
public string ejectPilotIcon = "Wula/UI/Commands/WULA_Exit_Mech";
public float ejectPilotHealthPercentThreshold = 0.1f; // 默认30%血量
public bool allowEntryBelowThreshold = false; // 血量低于阈值时是否允许进入

View File

@@ -86,7 +86,7 @@ namespace WulaFallenEmpire
{
defaultLabel = "WULA_ForceRepair".Translate(),
defaultDesc = "WULA_ForceRepairDesc".Translate(),
icon = ContentFinder<Texture2D>.Get("WulaFallenEmpire/UI/Commands/WULA_Repair_Mech"),
icon = ContentFinder<Texture2D>.Get("Wula/UI/Commands/WULA_Repair_Mech"),
action = () => ForceRepairNow()
};