GetDoorDimension: Difference between revisions

From Onset Developer Wiki
No edit summary
 
(One intermediate revision by one other user not shown)
Line 11: Line 11:


== Example ==
== Example ==
__EDIT_ME__
<syntaxhighlight lang="Lua">
print("Door Dimension: " .. GetDoorDimension(door))
</syntaxhighlight>


{{RelatedFunctions}}
{{RelatedFunctions}}
* [[CreateDoor]]
{{Template:DoorFunctions}}
* [[DestroyDoor]]
* [[SetDoorOpen]]
* [[IsDoorOpen]]
* [[GetAllDoors]]
* [[GetDoorCount]]
* [[GetDoorModel]]
* [[SetDoorLocation]]
* [[GetDoorLocation]]
* [[SetDoorDimension]]
* [[GetDoorDimension]]

Latest revision as of 14:22, 26 June 2021

GetDoorDimension

Type: Function
Context: Server
Introduced: v1.0

Description

Gets the dimension of this door.

Syntax

GetDoorDimension(door)

Parameters

  • door
    The door identifier.

Return Value

  • Returns the dimension.

Example

print("Door Dimension: " .. GetDoorDimension(door))

See also