This commit is contained in:
2020-07-04 14:41:25 +08:00
parent 70c346d2c1
commit a8f02e4da5
3748 changed files with 587372 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
-- 页面档板
do
local csSelf = nil;
local transform = nil;
local gameObject = nil;
local lastClickTime = 0; -- 上一次点击时间
local CLLPBackplate = {}
function CLLPBackplate.init(go)
csSelf = go;
transform = csSelf.transform;
gameObject = csSelf.gameObject;
end
function CLLPBackplate.setData(pars)
end
function CLLPBackplate.show()
end
function CLLPBackplate.hide()
end
function CLLPBackplate.refresh()
end
function CLLPBackplate.procNetwork(cmd, succ, msg, pars)
end
function CLLPBackplate.OnClickBackplate(button)
--[[
local currTime = DateEx.nowMS;
if ((currTime - lastClickTime) / 1000 < 0.3) then -- 保证在短时间内只能点击一次
return;
end
lastClickTime = currTime;
CLPanelManager.hideTopPanel();
--]]
end
return CLLPBackplate;
end