KeyBind

abstract class KeyBind

Constructors

Link copied to clipboard
fun KeyBind(description: String, keyCode: Int, category: String = "ChatTriggers")

Creates a new keybind, editable in the user's controls.

Link copied to clipboard
fun KeyBind(keyBinding: KeyBinding)

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
fun getCategory(): String

Gets the category of the key.

Link copied to clipboard
fun getDescription(): String

Gets the description of the key.

Link copied to clipboard
fun getKeyCode(): Int

Gets the key code of the key.

Link copied to clipboard
fun isKeyDown(): Boolean

Returns true if the key is pressed (used for continuous querying).

Link copied to clipboard
fun isPressed(): Boolean

Returns true on the initial key press. For continuous querying use isKeyDown.

Link copied to clipboard
fun registerKeyDown(method: Any): RegularTrigger?
Link copied to clipboard
fun registerKeyPress(method: Any): RegularTrigger?
Link copied to clipboard
fun registerKeyRelease(method: Any): RegularTrigger?
Link copied to clipboard
fun setState(pressed: Boolean)

Sets the state of the key.

Link copied to clipboard
open override fun toString(): String
Link copied to clipboard
fun unregisterKeyDown(): KeyBind
Link copied to clipboard
fun unregisterKeyPress(): KeyBind
Link copied to clipboard
fun unregisterKeyRelease(): KeyBind

Sources

Link copied to clipboard