GetChatLocation: Difference between revisions
From Onset Developer Wiki
Created page with "{{Info|Function|Client|1.0}} {{FuncDescription|__EDIT_ME__}} {{FuncSyntax|GetChatLocation()}} {{FuncParameters}} {{FuncNoParam}} {{FuncReturnValue|__EDIT_ME__}} == Exampl..." |
No edit summary |
||
Line 1: | Line 1: | ||
{{Info|Function|Client|1.0}} | {{Info|Function|Client|1.0}} | ||
{{FuncDescription| | {{FuncDescription|Get the player's chat screen location.}} | ||
{{FuncSyntax|GetChatLocation()}} | {{FuncSyntax|GetChatLocation()}} | ||
Line 8: | Line 8: | ||
{{FuncNoParam}} | {{FuncNoParam}} | ||
{{FuncReturnValue| | {{FuncReturnValue|This function returns the X and Y axis vectors.}} | ||
== Example == | == Example == | ||
<syntaxhighlight lang="Lua"> | |||
local x, y = GetChatLocation() | |||
</syntaxhighlight> | |||
{{RelatedFunctions}} | {{RelatedFunctions}} | ||
{{ChatFunctions}} |
Revision as of 19:40, 31 December 2019
Description
Get the player's chat screen location.
Syntax
GetChatLocation()
Parameters
- This function has no parameters.
Return Value
- This function returns the X and Y axis vectors.
Example
local x, y = GetChatLocation()