RBXScriptConnection

显示已弃用

*此内容使用人工智能(Beta)翻译,可能包含错误。若要查看英文页面,请点按 此处

RBXScriptConnection 数据类型是一个特殊对象,由 Connect() 方法的事件 ( RBXScriptSignal ) 返回。 此用于主要从听器中分离一个听器。


local part : BasePart = script.Parent
-- 将商店引用到 RBXScriptConnection 以便可以稍后断开
local connection : RBXScriptConnection = part.Touched:Connect(function(otherPart)
print("Hello world!")
end)
-- 等待 15 秒,然后断开
task.wait(15)
connection:Disconnect()

概要

属性

方法

属性

Connected

描述是否还有连接活着。如果 false 被调用,这将变成 Disconnect()

方法

Disconnect

void

从事件中断开连接。

返回

void