Slate.AllowBackgroundBlurWidgets
Slate.AllowBackgroundBlurWidgets
#Overview
name: Slate.AllowBackgroundBlurWidgets
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
If 0, no background blur widgets will be rendered
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/Slate/Private/Widgets/Layout/SBackgroundBlur.cpp:5
Scope: file
Source code excerpt:
static int32 bAllowBackgroundBlur = 1;
static FAutoConsoleVariableRef CVarSlateAllowBackgroundBlurWidgets(TEXT("Slate.AllowBackgroundBlurWidgets"), bAllowBackgroundBlur, TEXT("If 0, no background blur widgets will be rendered"));
static int32 MaxKernelSize = 255;
static FAutoConsoleVariableRef CVarSlateMaxKernelSize(TEXT("Slate.BackgroundBlurMaxKernelSize"), MaxKernelSize, TEXT("The maximum allowed kernel size. Note: Very large numbers can cause a huge decrease in performance"));
static int32 bDownsampleForBlur = 1;
static FAutoConsoleVariableRef CVarDownsampleForBlur(TEXT("Slate.BackgroundBlurDownsample"), bDownsampleForBlur, TEXT(""), ECVF_Cheat);