Slate.EnableLayoutLocalization
Slate.EnableLayoutLocalization
#Overview
name: Slate.EnableLayoutLocalization
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Controls if we enable or disable localized layout, which affects left to right or right to left detection for cultures.
It is referenced in 1
C++ source file.
#Summary
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Source/Runtime/SlateCore/Private/Layout/FlowDirection.cpp:12
Scope: file
Source code excerpt:
static int32 GSlateEnableLayoutLocalization = 1;
static FAutoConsoleVariableRef CVarSlateEnableLayoutLocalization(
TEXT("Slate.EnableLayoutLocalization"),
GSlateEnableLayoutLocalization,
TEXT("Controls if we enable or disable localized layout, which affects left to right or right to left detection for cultures."),
ECVF_Default
);
int32 GSlateFlowDirectionShouldFollowCultureByDefault = 0;