示例 是一个列表的值。许多 方法 和 回调 在 1> Roblox Engine API1> 中接受和返回多个值,但 API 参考中说明 “0>tuple0>” 而不是这些值。
参数
如果 方法 或 回调 接受一个矩阵作为参数,它将接受多个值。 例如, API 参考显示 API BindableFunction:Invoke() 方法接受一个 “矩阵”作为参数,因此它接受多个参数。
BindableFunction:Invoke(1, true, "string", Vector3.new(0, 0, 0))
返回
如果 方法 或 回调 返回一个元组,它将返回多个值。例如, API 引用显示 API 参考 返回一个 “树型”,因此它将返回多个值。第一个返回值是内容 URL,第二是一个 Players:GetUserThumbnailAsync() 。
local Players = game:GetService("Players")local userId = 156 -- 构建人员local 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