tuple 是一個值清單。在 Roblox 引擎 API 中,許多 方法 和 1>回歸式1> 在接受和返回多個值,但 API 參考說 "Tree" 而不是這些值。
參數
如果 方法 或 回潮式呼叫方式 接受套裝作為參數,則它接受多個值。例如 API 參考顯示 Class.BindableFunction:Execute() 方法接受 "Tree" 作為參數,因此它接受多個參數。
BindableFunction:Invoke(1, true, "string", Vector3.new(0, 0, 0))
返回
如果 方法 或 回歸式調用法 返回範圍,則會返回多元組值。例如 API 參考顯示 Class.Players:GetUserThumbnailAsync() 方法返回 "Tree",因此它會返回多個值。第一個返回值是內容 URL,第二是 Players:GetUserThumbnailAsync()。
local Players = game:GetService("Players")local userId = 156 -- buildermanlocal thumbType = Enum.ThumbnailType.HeadShotlocal thumbSize = Enum.ThumbnailSize.Size420x420local content, isReady = Players:GetUserThumbnailAsync(userId, thumbType, thumbSize)print(content, isReady) -- rbxthumb://type=AvatarHeadShot&id=156&w=420&h=420 true