DisableOrphanPins
DisableOrphanPins
#Overview
name: DisableOrphanPins
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
0=Orphan pins are enabled (default), 1=Orphan pins are disabled (note: this option will go away in the future)
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/Engine/Private/EdGraph/EdGraphPin.cpp:2240
Scope: file
Source code excerpt:
int32 GCVarDisableOrphanPins = 0;
FAutoConsoleVariableRef CVarDisableOrphanPins(TEXT("DisableOrphanPins"), GCVarDisableOrphanPins, TEXT("0=Orphan pins are enabled (default), 1=Orphan pins are disabled (note: this option will go away in the future)"), ECVF_ReadOnly);
bool UEdGraphPin::AreOrphanPinsEnabled()
{
return (GCVarDisableOrphanPins == 0);
}