优化ui,谱面替换,以及科研模糊

This commit is contained in:
2026-02-25 03:44:41 +08:00
parent 332307d18c
commit 0b75e93f71
114 changed files with 160279 additions and 290 deletions
@@ -65,6 +65,7 @@ public class BeatmapManager : MonoBehaviour
public Text gameplay_songname;
public TextMeshProUGUI gameplay_difficultyID;
public TextMeshProUGUI gameplay_difficultyName;
public Text modeText;
public Image bgMainImage; // 场景主背景图 (UI Image)
public Image startCanvas_image;
@@ -477,6 +478,11 @@ public class BeatmapManager : MonoBehaviour
}
gameplay_difficultyName.text = diffText;
}
if (modeText != null)
{
modeText.text = GameConfig.autoPlayEnabled ? "AUTOPLAYING" : string.Empty;
}
}
// Documentation text normalized.
@@ -304,7 +304,7 @@ public class settlementController : MonoBehaviour
{
int pm = sm != null ? sm.allSum_pmScore : 0;
int idol = sm != null ? sm.allSum_idolScore : 0;
thisSong_so.ApplySettlementResult(diff, pm, idol, maxScore_sum);
thisSong_so.ApplySettlementResult(diff, pm, idol, _1000000);
}
}