net.ShareInitialCompareState
net.ShareInitialCompareState
#Overview
name: net.ShareInitialCompareState
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
If true and net.ShareShadowState is enabled, attempt to also share initial replication compares across connections.
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/RepLayout.cpp:75
Scope: file
Source code excerpt:
int32 GShareInitialCompareState = 0;
static FAutoConsoleVariableRef CVarShareInitialCompareState(TEXT("net.ShareInitialCompareState"), GShareInitialCompareState,
TEXT("If true and net.ShareShadowState is enabled, attempt to also share initial replication compares across connections."));
bool GbTrackNetSerializeObjectReferences = false;
static FAutoConsoleVariableRef CVarTrackNetSerializeObjectReferences(TEXT("net.TrackNetSerializeObjectReferences"), GbTrackNetSerializeObjectReferences, TEXT("If true, we will create small layouts for Net Serialize Structs if they have Object Properties. This can prevent some Shadow State GC crashes."));
bool GbWithArrayOnRepFix = false;