RBXScriptConnection

แสดงที่เลิกใช้งานแล้ว

*เนื้อหานี้จะพร้อมใช้งานในภาษาที่คุณเลือกในเร็วๆ นี้

The RBXScriptConnection data type is a special object returned by the Connect() method of an event (RBXScriptSignal). This is used primarily to disconnect a listener from an RBXScriptSignal.


local part : BasePart = script.Parent
-- Store reference to the RBXScriptConnection so it can be disconnected later
local connection : RBXScriptConnection = part.Touched:Connect(function(otherPart)
print("Hello world!")
end)
-- Wait 15 seconds, then disconnect
task.wait(15)
connection:Disconnect()

สรุป

คุณสมบัติ

วิธีการ

  • Disconnect():void

    Disconnects the connection from the event.

คุณสมบัติ

Connected

Describes whether or not the connection is still alive. This becomes false if Disconnect() is called.

วิธีการ

Disconnect

void

Disconnects the connection from the event.

ส่งค่ากลับ

void