OnActionKey

From Onset Developer Wiki
Revision as of 17:27, 23 February 2022 by BlueMountains (talk | contribs) (Created page with "{{Info|Event|Client|1.5.5}} {{FuncDescription|Called when the player pressed a specific key that is an "action". For example the space-bar for jumping.}} {{FuncSyntax|OnActionKey(EventType, ActionName, KeyName)}} {{FuncParameters}} {{FuncParam|EventType|The input event of type EInputEvent}} {{FuncParam|ActionName|The name of the action. For example "Jump".}} {{FuncParam|KeyName|The name of the key as a string.}} == Example == <syntaxhighlight lang="Lua"> function OnA...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
OnActionKey

Type: Event
Context: Client
Introduced: v1.5.5

Description

Called when the player pressed a specific key that is an "action". For example the space-bar for jumping.

Syntax

OnActionKey(EventType, ActionName, KeyName)

Parameters

  • EventType
    The input event of type EInputEvent
  • ActionName
    The name of the action. For example "Jump".
  • KeyName
    The name of the key as a string.

Example

function OnActionKey(EventType, ActionName, KeyName)
	AddPlayerChat(key)
	if ActionName == "Jump" then
		return false -- This will cancel the action. In this case the player is unable to jump.
	end
end
AddEvent("OnActionKey", OnActionKey)

See also