Files
JJBB/Assets/Project/Script/LuaScripts/NetWork/Lua/Handle/LuaHandleRetDailyCopyInfo.txt
2024-08-23 15:49:34 +08:00

21 lines
542 B
Plaintext

LuaHandleRetDailyCopyInfo = {}
function LuaHandleRetDailyCopyInfo.HandlePacket(mem)
require "LuaDistributesRetDailyCopyInfo"
packet = LuaDistributesRetDailyCopyInfo.ExtraPacket(mem)
--print(packet)
if CS.DailyCopySceneRootCtr.Instance ~= nil then
local _Script = CS.DailyCopySceneRootCtr.Instance.gameObject:GetComponentInChildren(typeof(CS.LuaUIBehaviour), true)
if _Script == nil then
print("_Script is nil")
return
end
print("OnPacket")
_Script:CallScriptFuncAtPath("DailyCopySweepBtn.OnPacket", packet)
end
end