Files
godot-docs/classes/class_inputeventwithmodifiers.rst
2018-01-18 22:02:30 +01:00

50 lines
1.4 KiB
ReStructuredText

.. Generated automatically by doc/tools/makerst.py in Godot's source tree.
.. DO NOT EDIT THIS FILE, but the InputEventWithModifiers.xml source instead.
.. The source is found in doc/classes or modules/<name>/doc_classes.
.. _class_InputEventWithModifiers:
InputEventWithModifiers
=======================
**Inherits:** :ref:`InputEvent<class_inputevent>` **<** :ref:`Resource<class_resource>` **<** :ref:`Reference<class_reference>` **<** :ref:`Object<class_object>`
**Inherited By:** :ref:`InputEventKey<class_inputeventkey>`, :ref:`InputEventMouse<class_inputeventmouse>`, :ref:`InputEventGesture<class_inputeventgesture>`
**Category:** Core
Brief Description
-----------------
Base class for keys events with modifiers.
Member Variables
----------------
.. _class_InputEventWithModifiers_alt:
- :ref:`bool<class_bool>` **alt** - State of the Alt modifier.
.. _class_InputEventWithModifiers_command:
- :ref:`bool<class_bool>` **command** - State of the Command modifier.
.. _class_InputEventWithModifiers_control:
- :ref:`bool<class_bool>` **control** - State of the Ctrl modifier.
.. _class_InputEventWithModifiers_meta:
- :ref:`bool<class_bool>` **meta** - State of the Meta modifier.
.. _class_InputEventWithModifiers_shift:
- :ref:`bool<class_bool>` **shift** - State of the Shift modifier.
Description
-----------
Contains keys events information with modifiers support like ``SHIFT`` or ``ALT``. See :ref:`Node._input<class_Node__input>`.