⚠️ This documentation corresponds to the latest development branch of axmol. It might diverge from the official releases.
|
Axmol Engine 3.0.0-dff292a
|
Keyboard event. More...
#include <EventKeyboard.h>
Inherits Event.
Public Types | |
| enum class | KeyCode |
| KeyCode The key (code). | |
| Public Types inherited from Event | |
| enum class | Type |
| Type Event type. | |
Public Member Functions | |
| EventKeyboard (KeyCode keyCode, bool isKeyDown, bool isRepeat=false) | |
| Constructor. | |
| Public Member Functions inherited from Event | |
| Event (Type type) | |
| Constructor. | |
| virtual | ~Event () |
| Destructor. | |
| Type | getType () const |
| Gets the event type. | |
| void | stopPropagation () |
| Stops propagation for current event. | |
| bool | isStopped () const |
| Checks whether the event has been stopped. | |
| Node * | getCurrentTarget () |
| Gets current target of the event. | |
| Public Member Functions inherited from Object | |
| void | retain () |
| Retains the ownership. | |
| void | release () |
| Releases the ownership immediately. | |
| Object * | autorelease () |
| Releases the ownership sometime soon automatically. | |
| unsigned int | getReferenceCount () const |
| Returns the Object's current reference count. | |
| virtual | ~Object () |
| Destructor. | |
Additional Inherited Members | |
| Public Attributes inherited from Object | |
| unsigned int | _ID |
| object id, ScriptSupport need public _ID | |
| int | _luaID |
| Lua reference id. | |
Keyboard event.
| EventKeyboard | ( | KeyCode | keyCode, |
| bool | isKeyDown, | ||
| bool | isRepeat = false ) |
Constructor.
| keyCode | A given keycode. |
| isKeyDown | whether is key down event |
| isRepeat | whether key down repeat |