GetObjectLocation: Difference between revisions

From Onset Developer Wiki
No edit summary
No edit summary
Line 1: Line 1:
{{Info|Function|Server & Client|1.0}}
{{Info|Function|Server & Client|1.0}}


{{FuncDescription|__EDIT_ME__}}
{{FuncDescription|Returns the object's XYZ location.}}


{{FuncSyntax|GetObjectLocation(object)}}
{{FuncSyntax|GetObjectLocation(object)}}


{{FuncParameters}}
{{FuncParameters}}
{{FuncParam|object|__EDIT_ME__}}
{{FuncParam|object|The object identifier.}}


{{FuncReturnValue|__EDIT_ME__}}
{{FuncReturnValue|The XYZ vector of the object.}}


== Example ==
== Example ==
__EDIT_ME__
<syntaxhighlight lang="Lua>
local x, y, z = GetPlayerLocation(objectid)
</syntaxhighlight>


{{RelatedFunctions}}
{{RelatedFunctions}}

Revision as of 16:01, 19 November 2019

GetObjectLocation

Type: Function
Context: Server & Client
Introduced: v1.0

Description

Returns the object's XYZ location.

Syntax

GetObjectLocation(object)

Parameters

  • object
    The object identifier.

Return Value

  • The XYZ vector of the object.

Example

local x, y, z = GetPlayerLocation(objectid)

See also