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

19 lines
482 B
Plaintext

LuaHandleRetPropsReset = {}
function LuaHandleRetPropsReset.HandlePacket(mem)
require "LuaDistributesRetPropsReset"
local packet = LuaDistributesRetPropsReset.ExtraPacket(mem)
--print(packet)
print("LuaHandleRetPropsReset.HandlePacket(mem)")
local uiObj = CS.LuaUIManager.Instance:GetUIInstance("MysticalBoxRoot")
if uiObj == nil then
print("uiObj is nil")
end
uiObj:GetComponent("LuaUIBehaviour"):CallScriptFuncAtPath("MysticalBoxUI.OnRetPropsReset", packet)
end