class_inputeventwithmodifiers.rst 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. .. Generated automatically by doc/tools/makerst.py in Godot's source tree.
  2. .. DO NOT EDIT THIS FILE, but the InputEventWithModifiers.xml source instead.
  3. .. The source is found in doc/classes or modules/<name>/doc_classes.
  4. .. _class_InputEventWithModifiers:
  5. InputEventWithModifiers
  6. =======================
  7. **Inherits:** :ref:`InputEvent<class_inputevent>` **<** :ref:`Resource<class_resource>` **<** :ref:`Reference<class_reference>` **<** :ref:`Object<class_object>`
  8. **Inherited By:** :ref:`InputEventKey<class_inputeventkey>`, :ref:`InputEventMouse<class_inputeventmouse>`, :ref:`InputEventGesture<class_inputeventgesture>`
  9. **Category:** Core
  10. Brief Description
  11. -----------------
  12. Base class for keys events with modifiers.
  13. Member Variables
  14. ----------------
  15. .. _class_InputEventWithModifiers_alt:
  16. - :ref:`bool<class_bool>` **alt** - State of the Alt modifier.
  17. .. _class_InputEventWithModifiers_command:
  18. - :ref:`bool<class_bool>` **command** - State of the Command modifier.
  19. .. _class_InputEventWithModifiers_control:
  20. - :ref:`bool<class_bool>` **control** - State of the Ctrl modifier.
  21. .. _class_InputEventWithModifiers_meta:
  22. - :ref:`bool<class_bool>` **meta** - State of the Meta modifier.
  23. .. _class_InputEventWithModifiers_shift:
  24. - :ref:`bool<class_bool>` **shift** - State of the Shift modifier.
  25. Description
  26. -----------
  27. Contains keys events information with modifiers support like ``SHIFT`` or ``ALT``. See :ref:`Node._input<class_Node__input>`.