Files
Main/Assets/GameAssets/Resources/Lua/Logic/ScreenCDSystem/ScreenCDSystem.lua

18 lines
463 B
Lua
Raw Normal View History

2025-01-25 04:38:09 +08:00
------------------------------------------------
--作者: 杨全福
--日期: 2019-07-24
--文件: ScreenCDSystem.lua
--模块: ScreenCDSystem
--描述: 屏幕CD效果系统
------------------------------------------------
local ScreenCDSystem = {
};
--实现C#端函数展示CD效果
function ScreenCDSystem:ShowCDEffect(time, timeText)
GameCenter.PushFixEvent(UIEventDefine.UICountDownForm_OPEN, {time, timeText})
end
return ScreenCDSystem