Unigine::InputEventKeyboard Class
Header: | #include <UnigineInput.h> |
Inherits from: | InputEvent |
InputEventKeyboard Class
枚举
ACTION#
Name | 描述 |
---|---|
ACTION_DOWN = 0 | Keyboard button is held down. |
ACTION_REPEAT = 1 | Keyboard button has been pressed repeatedly. |
ACTION_UP = 2 | Keyboard button has been released. |
Members
InputEventKeyboard ( ) #
Default constructor.InputEventKeyboard ( unsigned long long timestamp, const Math::ivec2 & mouse_pos, InputEventKeyboard::ACTION action, Input::KEY key ) #
Keyboard input event constructor.Arguments
- unsigned long long timestamp - Timestamp of the event.
- const Math::ivec2 & mouse_pos - Position of the mouse.
- InputEventKeyboard::ACTION action - Action performed.
- Input::KEY key - Virtual keyboard key value (dependent on the language).
InputEventKeyboard ( unsigned long long timestamp, const Math::ivec2 & mouse_pos ) #
Keyboard input event constructor.Arguments
- unsigned long long timestamp - Timestamp of the event.
- const Math::ivec2 & mouse_pos - Position of the mouse.
void setAction ( InputEventKeyboard::ACTION action ) #
Sets the action to be performed by the keyboard.Arguments
- InputEventKeyboard::ACTION action - Action performed by the keyboard.
InputEventKeyboard::ACTION getAction ( ) const#
Returns the action performed by the mouse button.Return value
Action performed by the keyboard.void setKey ( Input::KEY key ) #
Sets the keyboard key language-dependent value.Arguments
- Input::KEY key - Virtual keyboard key value (dependent on the keyboard language).
Input::KEY getKey ( ) const#
Returns the keyboard key language-dependent value.Return value
Virtual keyboard key value (dependent on the keyboard language).Last update:
2024-08-16
Help improve this article
Was this article helpful?
(or select a word/phrase and press Ctrl+Enter)