OnObjectStreamIn

From Onset Developer Wiki
Revision as of 14:33, 18 July 2021 by BlueMountains (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
OnObjectStreamIn

Type: Event
Context: Client & Server
Introduced: v1.0/1.5.0

Description

Called when an object is streamed in from the server.

Note: On the server you must enable this event with EnableObjectStreamEvents first.

Syntax

OnObjectStreamIn(object)

Parameters

  • object
    The object identifier which streamed in.

Example

Client

AddEvent("OnObjectStreamIn", function (object)
    AddPlayerChat("You streamed in the object ID "..object..".")
end)

See also