-
条件语句
if (statement==true) then
elseif (statement == true) then
else
end
-
return语句
do return end
-
table排序
table.sort(items,
function(item1,item2)
return item1.id > item2.id
end
)
- 随机数
math.random(0,1000)
条件语句
if (statement==true) then
elseif (statement == true) then
else
end
return语句
do return end
table排序
table.sort(items,
function(item1,item2)
return item1.id > item2.id
end
)
math.random(0,1000)
本文标题:Lua总结
本文链接:https://www.haomeiwen.com/subject/fmsexqtx.html
网友评论