Net.RepGraph.PrintCullDistances

Net.RepGraph.PrintCullDistances

#Overview

name: Net.RepGraph.PrintCullDistances

This variable is created as a Console Variable (cvar).

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:271

Scope: file

Source code excerpt:

);

FAutoConsoleCommandWithWorldAndArgs NetRepGraphPrintCullDistancesCommand(TEXT("Net.RepGraph.PrintCullDistances"), TEXT("Print the cull distances of RepGraph actors on the server."),
	FConsoleCommandWithWorldAndArgsDelegate::CreateLambda([](const TArray<FString>& Args, UWorld* World)
	{
		for (TObjectIterator<UReplicationGraph> It; It; ++It)
		{
			if (It->NetDriver && It->NetDriver->GetNetMode() != NM_Client)
			{