21 lines
521 B
Plaintext
21 lines
521 B
Plaintext
|
|
require("Util")
|
|
require("LuaUtil")
|
|
|
|
-- 活动入口界面开启时间显示BUG修复补丁
|
|
|
|
ActivityItemLuaPatch = {}
|
|
|
|
function ActivityItemLuaPatch.Awake()
|
|
TimeDesc = TimeDesc:GetComponent("Text")
|
|
end
|
|
|
|
local splitStr = ":"
|
|
function ActivityItemLuaPatch.Update()
|
|
if string.match(TimeDesc.text,splitStr) ~= nil then
|
|
local strs = Util.Split(TimeDesc.text,':')
|
|
if #strs[2] == 1 then
|
|
TimeDesc.text = StrDic.GetClientDictionaryString("#{2124}",strs[1],"0"..strs[2])
|
|
end
|
|
end
|
|
end |