net.DormancyEnable
net.DormancyEnable
#Overview
name: net.DormancyEnable
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Enables Network Dormancy System for reducing CPU and bandwidth overhead of infrequently updated actors\n1 Enables network dormancy. 0 disables network dormancy.
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:354
Scope: file
Source code excerpt:
int32 GSetNetDormancyEnabled = 1;
static FAutoConsoleVariableRef CVarSetNetDormancyEnabled(
TEXT("net.DormancyEnable"),
GSetNetDormancyEnabled,
TEXT("Enables Network Dormancy System for reducing CPU and bandwidth overhead of infrequently updated actors\n")
TEXT("1 Enables network dormancy. 0 disables network dormancy."),
ECVF_Default);
int32 GNetDormancyValidate = 0;