diff --git a/1.6/1.6/Assemblies/ArachnaeSwarm.dll b/1.6/1.6/Assemblies/ArachnaeSwarm.dll index 6a15d87..f8324cb 100644 Binary files a/1.6/1.6/Assemblies/ArachnaeSwarm.dll and b/1.6/1.6/Assemblies/ArachnaeSwarm.dll differ diff --git a/Source/ArachnaeSwarm/Buildings/Building_EquipmentOotheca/Building_EquipmentOotheca.cs b/Source/ArachnaeSwarm/Buildings/Building_EquipmentOotheca/Building_EquipmentOotheca.cs index e75dab7..d49c5a0 100644 --- a/Source/ArachnaeSwarm/Buildings/Building_EquipmentOotheca/Building_EquipmentOotheca.cs +++ b/Source/ArachnaeSwarm/Buildings/Building_EquipmentOotheca/Building_EquipmentOotheca.cs @@ -404,12 +404,6 @@ namespace ArachnaeSwarm continue; } - // 强制将基础组件(如 Refuelable)甚至默认排序为 -100 的东西移到后面 - if (gizmo.Order >= -100f && gizmo.Order <= 0f) - { - gizmo.Order = -90f; - } - yield return gizmo; } diff --git a/Source/ArachnaeSwarm/Buildings/Building_EquipmentOotheca/Gizmo_EquipmentIncubationProgress.cs b/Source/ArachnaeSwarm/Buildings/Building_EquipmentOotheca/Gizmo_EquipmentIncubationProgress.cs index 0235d33..4f47dd2 100644 --- a/Source/ArachnaeSwarm/Buildings/Building_EquipmentOotheca/Gizmo_EquipmentIncubationProgress.cs +++ b/Source/ArachnaeSwarm/Buildings/Building_EquipmentOotheca/Gizmo_EquipmentIncubationProgress.cs @@ -27,7 +27,7 @@ namespace ArachnaeSwarm public Gizmo_EquipmentIncubationProgress(Building_EquipmentOotheca building) { this.building = building; - Order = -99f; // 在通量 Gizmo 之后显示 + Order = -140f; } public override float GetWidth(float maxWidth) @@ -116,9 +116,6 @@ namespace ArachnaeSwarm string statusText = (config != null && config.IsResearchComplete) ? "就绪 - 点击上方切换目标" : "需要研究"; Widgets.Label(new Rect(innerRect.x, curY, innerRect.width, 20f), statusText); curY += 20f; - - string stats = $"速度:{building.SpeedMultiplier.ToStringPercent()} 质量:{building.QualityMultiplier.ToStringPercent()}"; - Widgets.Label(new Rect(innerRect.x, curY, innerRect.width, 16f), stats); GUI.color = Color.white; } diff --git a/Source/ArachnaeSwarm/Buildings/Building_Ootheca/Gizmo_IncubationProgress.cs b/Source/ArachnaeSwarm/Buildings/Building_Ootheca/Gizmo_IncubationProgress.cs index 782d0a6..ab36ceb 100644 --- a/Source/ArachnaeSwarm/Buildings/Building_Ootheca/Gizmo_IncubationProgress.cs +++ b/Source/ArachnaeSwarm/Buildings/Building_Ootheca/Gizmo_IncubationProgress.cs @@ -116,9 +116,6 @@ namespace ArachnaeSwarm string statusText = (config != null && config.IsResearchComplete) ? "就绪 - 点击上方切换目标" : "需要研究"; Widgets.Label(new Rect(innerRect.x, curY, innerRect.width, 20f), statusText); curY += 20f; - - string stats = $"速度:{ootheca.SpeedMultiplier.ToStringPercent()} 质量:{ootheca.QualityMultiplier.ToStringPercent()}"; - Widgets.Label(new Rect(innerRect.x, curY, innerRect.width, 16f), stats); GUI.color = Color.white; } diff --git a/Source/ArachnaeSwarm/Buildings/Building_Ootheca/Gizmo_NeutronFlux.cs b/Source/ArachnaeSwarm/Buildings/Building_Ootheca/Gizmo_NeutronFlux.cs index 4e2475d..04bd1fe 100644 --- a/Source/ArachnaeSwarm/Buildings/Building_Ootheca/Gizmo_NeutronFlux.cs +++ b/Source/ArachnaeSwarm/Buildings/Building_Ootheca/Gizmo_NeutronFlux.cs @@ -62,8 +62,8 @@ namespace ArachnaeSwarm { case FluxMode.Manual: modeColor = new Color(0.5f, 0.5f, 0.5f, 0.9f); break; case FluxMode.Quality: modeColor = new Color(0.3f, 0.6f, 0.9f, 0.9f); break; - case FluxMode.Balance: modeColor = new Color(0.2f, 0.7f, 0.2f, 0.9f); break; - case FluxMode.Speed: modeColor = new Color(0.9f, 0.5f, 0.2f, 0.9f); break; + case FluxMode.Balance: modeColor = new Color(0.9f, 0.5f, 0.2f, 0.9f); break; + case FluxMode.Speed: modeColor = new Color(0.2f, 0.7f, 0.2f, 0.9f); break; default: modeColor = Color.gray; break; }