Net.RepGraph.Spatial.SetCellSize
Net.RepGraph.Spatial.SetCellSize
#Overview
name: Net.RepGraph.Spatial.SetCellSize
This variable is created as a Console Variable (cvar).
- type:
Cmd
- help: ``
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/Plugins/Runtime/ReplicationGraph/Source/Private/ReplicationGraphDebugging.cpp:703
Scope: file
Source code excerpt:
#if !(UE_BUILD_SHIPPING)
FAutoConsoleCommandWithWorldAndArgs NetRepGraphSetCellSize(TEXT("Net.RepGraph.Spatial.SetCellSize"), TEXT(""),
FConsoleCommandWithWorldAndArgsDelegate::CreateLambda([](const TArray<FString>& Args, UWorld* World)
{
float NewGridSize = 0.f;
if (Args.Num() > 0)
{
LexFromString(NewGridSize, *Args[0]);