self:is_streamed

Client

Checks whether the instance is currently within the streaming range of the local camera


Syntax

local result = self:is_streamed()

Parameters

No parameters are accepted by this function

Returns

TypeNameDescription
boolresulttrue if the instance is currently streamed, false otherwise

Examples

Check whether a model instance is streamed
local entity = model.create("character")

engine.print("info", entity:is_streamed())

On this page