雙子

*此內容是使用 AI(Beta 測試版)翻譯,可能含有錯誤。若要以英文檢視此頁面,請按一下這裡

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 -- builderman
local thumbType = Enum.ThumbnailType.HeadShot
local thumbSize = Enum.ThumbnailSize.Size420x420
local content, isReady = Players:GetUserThumbnailAsync(userId, thumbType, thumbSize)
print(content, isReady) -- rbxthumb://type=AvatarHeadShot&id=156&w=420&h=420 true