Files
JJBB/Assets/Project/Script/LuaScripts/NetWork/Lua/Handle/LuaHandleValGDisRet.txt

21 lines
530 B
Plaintext
Raw Normal View History

2024-08-23 15:49:34 +08:00
LuaHandleValGDisRet = {}
function LuaHandleValGDisRet.HandlePacket(mem)
require "LuaDistributesValGDisRet"
local packet = LuaDistributesValGDisRet.ExtraPacket(mem)
print(packet)
Util.PrintTable(packet)
-- 回调界面显示
local uiObj = CS.LuaUIManager.Instance:GetUIInstance(ValhallaMainDataMgr.GeneralPrefab)
if uiObj == nil then
print("uiObj is nil")
return -- 没打开界面不处理
end
uiObj:GetComponent("LuaUIBehaviour"):CallScriptFuncAtPath("ValhallaGeneralPanel.OnGodEquipResolveRet", packet)
end