Lua总结
2018-12-25 本文已影响4人
一剑卿心
-
条件语句
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)