UnityLua运行时GM
Posted 那个妹子留步
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UnityLua运行时GM相关的知识,希望对你有一定的参考价值。
local params = string.split(str,"@")
if params[1] == "clientGlobal" then
_G[tostring(params[2])](params[3],params[4],params[5])
elseif params[1] == "clientLocal" then
_G[tostring(params[2])][params[3]](_G[tostring(params[2])],params[4],params[5],params[6])
elseif params[1] == "PanelMgr" then
PanelMgr:SendMsg(params[2],params[3],params[4],params[5])
end
clientGlobal@方法名@参数
clientLocal@脚本名@方法名@参数
PanelMgr@脚本名@方法名@参数--[[
--[[
if params[1] == "_G" then
local finFun = string.split(string.sub(str,4),"&")
local script = _G
local funLua
local beforeFun = string.split(finFun[1],"@")
local AfterFun = string.split(finFun[2],"@")
for i, v in ipairs(beforeFun) do
if i == #beforeFun then
funLua = script[v]
else
script = script[v]
end
end
if script == _G then
funLua(AfterFun[1],AfterFun[2],AfterFun[3])
else
funLua(script,AfterFun[1],AfterFun[2],AfterFun[3])
end
end
clientGlobal@方法名@参数
clientLocal@脚本名@方法名@参数
PanelMgr@脚本名@方法名@参数
_G@...@方法名&参数...
案例
clientGlobal@print@参数
clientLocal@GalaxyMgr@PrintAAAA@参数
PanelMgr@TechTreePanel@SetGroupIdTxtState@true
_G@GalaxyMgr@PrintAAAA&参数
]]
]]
以上是关于UnityLua运行时GM的主要内容,如果未能解决你的问题,请参考以下文章
如何在 iOS 6 GM 中的标签栏应用程序中使旋转正常工作?
Legend of Mir(传奇)官方源码学习2运行试玩及GM命令
Xcode 10 GM:XCUIScreen.main.screenshot() 因“dyld:惰性符号绑定失败”而崩溃