r.MaterialEditor.ContextMenu.WholeMatchWeightMultiplier
r.MaterialEditor.ContextMenu.WholeMatchWeightMultiplier
#Overview
name: r.MaterialEditor.ContextMenu.WholeMatchWeightMultiplier
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
The multiplier given if there is an exact match to the search term
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/UnrealEd/Private/MaterialGraphSchema.cpp:1280
Scope (from outer to inner):
file
namespace MaterialEditorContextMenuConsoleVariables
Source code excerpt:
static float WholeMatchWeightMultiplier = 0.5f;
static FAutoConsoleVariableRef CVarWholeMatchWeightMultiplier(
TEXT("r.MaterialEditor.ContextMenu.WholeMatchWeightMultiplier"), WholeMatchWeightMultiplier,
TEXT("The multiplier given if there is an exact match to the search term"),
ECVF_Default);
/** The multiplier given if the keyword starts with a term the user typed in */
static float StartsWithBonusWeightMultiplier = 4.0f;
static FAutoConsoleVariableRef CVarStartsWithBonusWeightMultiplier(