IsCmdPressed: Difference between revisions

From Onset Developer Wiki
(Created page with "{{Info|Function|Client|1.0}} {{FuncDescription|__EDIT_ME__}} {{FuncSyntax|IsCmdPressed()}} {{FuncParameters}} {{FuncNoParam}} {{FuncReturnValue|__EDIT_ME__}} == Example =...")
 
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|__EDIT_ME__}}
{{FuncDescription|Check if the client has pressed the Ctrl key}}


{{FuncSyntax|IsCmdPressed()}}
{{FuncSyntax|IsCmdPressed()}}
Line 8: Line 8:
{{FuncNoParam}}
{{FuncNoParam}}


{{FuncReturnValue|__EDIT_ME__}}
{{FuncReturnValue|Returns '''true''' if pressed, otherwise '''false'''}}


== Example ==
== Example ==
__EDIT_ME__
<syntaxhighlight lang="Lua>
AddEvent("OnKeyPress", function(key)
if IsCmdPressed() and key == 'R' then
AddPlayerChat("You have pressed Cmd + R")
end
end)
</syntaxhighlight>


{{RelatedFunctions}}
{{RelatedFunctions}}
__EDIT_ME__
{{Template:KeyFunctions}}

Latest revision as of 16:11, 19 November 2019

IsCmdPressed

Type: Function
Context: Client
Introduced: v1.0

Description

Check if the client has pressed the Ctrl key

Syntax

IsCmdPressed()

Parameters

  • This function has no parameters.

Return Value

  • Returns true if pressed, otherwise false

Example

AddEvent("OnKeyPress", function(key)
	if IsCmdPressed() and key == 'R' then
		AddPlayerChat("You have pressed Cmd + R")
	end
end)

See also