BP.ContextMenu.PercentageMatchWeightMultiplier
BP.ContextMenu.PercentageMatchWeightMultiplier
#Overview
name: BP.ContextMenu.PercentageMatchWeightMultiplier
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
A multiplier for how much weight to give something based on the percentage match it is
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:7777
Scope (from outer to inner):
file
namespace BPContextMenuConsoleVariables
Source code excerpt:
static float PercentageMatchWeightMultiplier = 1.0f;
static FAutoConsoleVariableRef CVarPercentageMatchWeightMultiplier(
TEXT("BP.ContextMenu.PercentageMatchWeightMultiplier"), PercentageMatchWeightMultiplier,
TEXT("A multiplier for how much weight to give something based on the percentage match it is"),
ECVF_Default);
/** How much weight the description of actions have */
static float DescriptionWeight = 10.0f;
static FAutoConsoleVariableRef CVarDescriptionWeight(