GetStreamedDoors: Difference between revisions
From Onset Developer Wiki
Created page with "{{Info|Function|Client|1.0}} {{FuncDescription|__EDIT_ME__}} {{FuncSyntax|GetStreamedDoors()}} {{FuncParameters}} {{FuncNoParam}} {{FuncReturnValue|__EDIT_ME__}} == Examp..." |
No edit summary |
||
Line 1: | Line 1: | ||
{{Info|Function|Client|1.0}} | {{Info|Function|Client|1.0}} | ||
{{FuncDescription| | {{FuncDescription|Get the streamed in doors IDs in a table.}} | ||
{{FuncSyntax|GetStreamedDoors()}} | {{FuncSyntax|GetStreamedDoors()}} | ||
Line 8: | Line 8: | ||
{{FuncNoParam}} | {{FuncNoParam}} | ||
{{FuncReturnValue| | {{FuncReturnValue|This function returns a table.}} | ||
== Example == | == Example == | ||
<syntaxhighlight lang="Lua"> | |||
local doors = GetStreamedDoors() | |||
if #doors == 0 then | |||
-- no streamed in doors | |||
end | |||
</syntaxhighlight> | |||
{{RelatedFunctions}} | {{RelatedFunctions}} | ||
{{DoorFunctions}} |
Latest revision as of 19:49, 31 December 2019
Description
Get the streamed in doors IDs in a table.
Syntax
GetStreamedDoors()
Parameters
- This function has no parameters.
Return Value
- This function returns a table.
Example
local doors = GetStreamedDoors()
if #doors == 0 then
-- no streamed in doors
end