net.ControlChannelDestructionInfo
net.ControlChannelDestructionInfo
#Overview
name: net.ControlChannelDestructionInfo
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
If enabled, send destruction info updates via the control channel instead of creating a new actor channel.0: Old behavior, use an actor channel. 1: New behavior, use the control channel
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/NetDriver.cpp:414
Scope: file
Source code excerpt:
static int32 GNetControlChannelDestructionInfo = 0;
static FAutoConsoleVariableRef CVarNetControlChannelDestructionInfo(
TEXT("net.ControlChannelDestructionInfo"),
GNetControlChannelDestructionInfo,
TEXT("If enabled, send destruction info updates via the control channel instead of creating a new actor channel.")
TEXT("0: Old behavior, use an actor channel. 1: New behavior, use the control channel"),
ECVF_Default);
static int32 GNetResetAckStatePostSeamlessTravel = 0;