ShowMouseCursor: Difference between revisions
From Onset Developer Wiki
Created page with "{{Info|Function|Client|1.0}} {{FuncDescription|__EDIT_ME__}} {{FuncSyntax|ShowMouseCursor(bShow)}} {{FuncParameters}} {{FuncParam|bShow|__EDIT_ME__}} {{FuncReturnValue|__E..." |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
{{Info|Function|Client|1.0}} | {{Info|Function|Client|1.0}} | ||
{{FuncDescription| | {{FuncDescription|Toggle the mouse cursor for the client.}} | ||
{{FuncSyntax|ShowMouseCursor(bShow)}} | {{FuncSyntax|ShowMouseCursor(bShow)}} | ||
{{FuncParameters}} | {{FuncParameters}} | ||
{{FuncParam|bShow| | {{FuncParam|bShow|The boolean status}} | ||
{{FuncReturnValue|__EDIT_ME__}} | {{FuncReturnValue|__EDIT_ME__}} | ||
== Example == | == Example == | ||
<syntaxhighlight lang="Lua"> | |||
ShowMouseCursor(true) | |||
</syntaxhighlight> | |||
{{RelatedFunctions}} | {{RelatedFunctions}} | ||
{{Template:ClientMouseFunctions}} |
Latest revision as of 13:57, 27 February 2020
Description
Toggle the mouse cursor for the client.
Syntax
ShowMouseCursor(bShow)
Parameters
- bShow
The boolean status
Return Value
- __EDIT_ME__
Example
ShowMouseCursor(true)