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()
属性
方法
Disconnect
void
从事件中断开连接。
返回
void