Net.LogSkippedRepNotifies
Net.LogSkippedRepNotifies
#Overview
name: Net.LogSkippedRepNotifies
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Log when the networking code skips calling a repnotify clientside due to the property value not changing.
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:63
Scope: file
Source code excerpt:
int32 LogSkippedRepNotifies = 0;
static FAutoConsoleVariable CVarLogSkippedRepNotifies(TEXT("Net.LogSkippedRepNotifies"), LogSkippedRepNotifies,
TEXT("Log when the networking code skips calling a repnotify clientside due to the property value not changing."), ECVF_Default);
int32 GUsePackedShadowBuffers = 1;
static FAutoConsoleVariableRef CVarUsePackedShadowBuffers(TEXT("Net.UsePackedShadowBuffers"), GUsePackedShadowBuffers,
TEXT("When enabled, FRepLayout will generate shadow buffers that are packed with only the necessary NetProperties, instead of copying entire object state."));