摘要:
rt 阅读全文
摘要:
a = 5b = {}if type(a) == "number" then print("aa") --aaendif type(b) == "table" then print("bb") --bbend 阅读全文
摘要:
rt 阅读全文
摘要:
.gameObject:SetActive 阅读全文
摘要:
.gameObject.activeSelf 阅读全文
摘要:
例子: tab = {[2] = "aaa",[10] = "bbb"}for k,v in pairs(tab) do print(type(k)) print(k..","..v)end --[[ number2,aaanumber10,bbb --]] 阅读全文
摘要:
rt 阅读全文