OnObjectStreamOut

From Onset Developer Wiki
Revision as of 18:05, 16 January 2020 by 28days (talk | contribs)
OnObjectStreamOut

Type: Event
Context: Client
Introduced: v1.0

Description

Called when an object is streamed out from the server.

Syntax

OnObjectStreamOut(object)

Parameters

  • object
    The object identifier which streamed out.

Example

AddEvent("OnObjectStreamOut", function (object)
    AddPlayerChat("You streamed out the object ID "..object..".")
end)

See also