bp.PinValidityCheck.bDisplayMissingBoundComponentWarning
bp.PinValidityCheck.bDisplayMissingBoundComponentWarning
#Overview
name: bp.PinValidityCheck.bDisplayMissingBoundComponentWarning
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
CVar controls pin validity warning which will throw when a bound event has no matching component
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/K2Node_ComponentBoundEvent.cpp:47
Scope (from outer to inner):
file
namespace PinValidityCheck
Source code excerpt:
static bool bDisplayMissingBoundComponentWarning = true;
static FAutoConsoleVariableRef CVarDisplayMissingBoundComponentWarning(
TEXT("bp.PinValidityCheck.bDisplayMissingBoundComponentWarning"), bDisplayMissingBoundComponentWarning,
TEXT("CVar controls pin validity warning which will throw when a bound event has no matching component"),
ECVF_Default);
}
UK2Node_ComponentBoundEvent::UK2Node_ComponentBoundEvent(const FObjectInitializer& ObjectInitializer)
: Super(ObjectInitializer)