[Add] Master Category
This commit is contained in:
@@ -78,9 +78,12 @@ namespace YachtDice.UI
|
||||
|
||||
public void UpdateTotalDisplay(int totalScore, int upperSum, bool hasUpperBonus)
|
||||
{
|
||||
var threshold = _catalog != null ? _catalog.UpperBonusThreshold : 63;
|
||||
var bonusValue = _catalog != null ? _catalog.UpperBonusValue : 35;
|
||||
|
||||
totalScoreText.text = totalScore.ToString();
|
||||
upperSumText.text = $"{upperSum} / 63";
|
||||
upperBonusText.text = hasUpperBonus ? "+35" : "---";
|
||||
upperSumText.text = $"{upperSum} / {threshold}";
|
||||
upperBonusText.text = hasUpperBonus ? $"+{bonusValue}" : "---";
|
||||
}
|
||||
|
||||
public void ResetAll()
|
||||
|
||||
Reference in New Issue
Block a user