Update - 1.11.0.113

EN: 1.11.0.113
CN: 1.11.0.114
JP: 1.11.0.118
KR: 1.11.0.118
This commit is contained in:
SL1900
2026-06-02 16:00:00 +09:00
parent 343b24c91b
commit dcc2c4a2a9
621 changed files with 518699 additions and 4157 deletions
@@ -111,7 +111,7 @@ function PenguinCardResultCtrl:RefreshState()
if not self.bWin then
local nMax = self._panel.mapLevel.tbStarScore[1]
local nNeed = nMax - self._panel.mapLevel.nScore
nNeed = math.floor(nNeed + 0.5 + 1.0E-9)
nNeed = math.floor(nNeed)
NovaAPI.SetTMPText(self._mapNode.txtNeedCount, orderedFormat(ConfigTable.GetUIText("PenguinCard_Result_NeedScore"), self:ThousandsNumber(nNeed)))
end
end
@@ -120,7 +120,7 @@ function PenguinCardResultCtrl:RefreshTitle()
self._mapNode.imgStarOff[i]:SetActive(i > self._panel.mapLevel.nStar)
self._mapNode.imgStarOn[i]:SetActive(i <= self._panel.mapLevel.nStar)
end
local nScore = math.floor(self._panel.mapLevel.nScore + 0.5 + 1.0E-9)
local nScore = math.floor(self._panel.mapLevel.nScore)
NovaAPI.SetTMPText(self._mapNode.txtScore, self:ThousandsNumber(nScore))
end
function PenguinCardResultCtrl:RefreshCard()
@@ -139,8 +139,8 @@ end
function PenguinCardResultCtrl:RefreshStatistics()
NovaAPI.SetTMPText(self._mapNode.txtTotalTurn, self._panel.mapLevel.nCurTurn)
NovaAPI.SetTMPText(self._mapNode.txtTotalRound, self._panel.mapLevel.nTotalRound)
local nBestTurnScore = math.floor(self._panel.mapLevel.nBestTurnScore + 0.5 + 1.0E-9)
local nBestRoundScore = math.floor(self._panel.mapLevel.nBestRoundScore + 0.5 + 1.0E-9)
local nBestTurnScore = math.floor(self._panel.mapLevel.nBestTurnScore)
local nBestRoundScore = math.floor(self._panel.mapLevel.nBestRoundScore)
NovaAPI.SetTMPText(self._mapNode.txtBestTurn, self:ThousandsNumber(nBestTurnScore))
NovaAPI.SetTMPText(self._mapNode.txtBestRound, self:ThousandsNumber(nBestRoundScore))
local nHandRankId, nHandRankCount = self._panel.mapLevel:GetMostHandRank()