Update - 1.4.0.73

EN: 1.4.0.73
CN: 1.4.0.74
JP: 1.4.0.77
KR: 1.4.0.80
This commit is contained in:
SL1900
2025-12-25 19:00:00 +09:00
parent 5f417fbe9d
commit 35c8d87e86
1183 changed files with 893278 additions and 92778 deletions
@@ -355,6 +355,24 @@ function ReceiveSpecialRewardCtrl:ShowSSRAnimEnd(_, voice)
NovaAPI.SetTMPText(self._mapNode.TMP_Word1, sContent)
end
end
elseif self.bChar then
if CacheTable.Get("_CharGetLinesBySkinId") == nil or next(CacheTable.Get("_CharGetLinesBySkinId")) == nil then
local func_Parse_CharGetLines = function(mapData)
if mapData.SkinId ~= 0 then
CacheTable.SetData("_CharGetLinesBySkinId", mapData.SkinId, mapData)
end
end
ForEachTableLine(DataTable.CharGetLines, func_Parse_CharGetLines)
end
local mapCfg = CacheTable.GetData("_CharGetLinesBySkinId", self.nId)
if mapCfg ~= nil then
self._mapNode.TMP_Word.gameObject:SetActive(true)
local sContent = mapCfg.Lines
sContent = string.gsub(sContent, "==RT==", "\n")
sContent = string.gsub(sContent, "==PLAYER_NAME==", PlayerData.Base:GetPlayerNickName())
NovaAPI.SetTMPText(self._mapNode.TMP_Word, sContent)
NovaAPI.SetTMPText(self._mapNode.TMP_Word1, sContent)
end
end
self._mapNode.goInfoContent:SetActive(true)
self._mapNode.animInfoContent:Play("Info_rtTitle_in")