BP.ContextMenu.MaxWordLength
BP.ContextMenu.MaxWordLength
#Overview
name: BP.ContextMenu.MaxWordLength
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Maximum length to count while awarding short word weight
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/Editor/BlueprintGraph/Private/EdGraphSchema_K2.cpp:7770
Scope (from outer to inner):
file
namespace BPContextMenuConsoleVariables
Source code excerpt:
static int32 MaxWordLength = 30;
static FAutoConsoleVariableRef CVarMaxWordLength(
TEXT("BP.ContextMenu.MaxWordLength"), MaxWordLength,
TEXT("Maximum length to count while awarding short word weight"),
ECVF_Default);
/** Increasing this will prefer whole percentage matches when comparing the keyword to what the user has typed in */
static float PercentageMatchWeightMultiplier = 1.0f;
static FAutoConsoleVariableRef CVarPercentageMatchWeightMultiplier(