【新增】lua调试代码

This commit is contained in:
wxd-gaming
2024-11-27 14:24:13 +08:00
parent 2cf66d3ffb
commit 1f85994c4e
8 changed files with 314 additions and 76 deletions

View File

@@ -71,4 +71,16 @@ gameDebug.debug(function()
end)
print(CheckOpenEventListerTable:triggerResult("0"))
end)
end)
local tmpList = {}
for i = 1, 10 do
table.insert(tmpList, tostring(i))
end
gameDebug.print(tmpList)
table.remove(tmpList, 5)
gameDebug.print(tmpList)