UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
EModifierKey Namespace Reference

Typedefs

typedef uint8 Type
 

Functions

EModifierKey::Type FromBools (const bool bControl, const bool bAlt, const bool bShift, const bool bCommand)
 

Variables

const Type None = 0
 
const Type Control = 1 << 0
 
const Type Alt = 1 << 1
 
const Type Shift = 1 << 2
 
const Type Command = 1 << 3
 

Detailed Description

Enumerates available modifier keys for input gestures.

Typedef Documentation

◆ Type

Function Documentation

◆ FromBools()

EModifierKey::Type EModifierKey::FromBools ( const bool  bControl,
const bool  bAlt,
const bool  bShift,
const bool  bCommand 
)
inline

Variable Documentation

◆ Alt

const Type EModifierKey::Alt = 1 << 1
inline

Alt key.

◆ Command

const Type EModifierKey::Command = 1 << 3
inline

Cmd key (Control key on Mac, Win key on Windows)

◆ Control

const Type EModifierKey::Control = 1 << 0
inline

Ctrl key (Command key on Mac, Control key on Windows).

◆ None

const Type EModifierKey::None = 0
inline

No key.

◆ Shift

const Type EModifierKey::Shift = 1 << 2
inline

Shift key.