Net.RepGraph.ActorDiscoveryBudget
Net.RepGraph.ActorDiscoveryBudget
#Overview
name: Net.RepGraph.ActorDiscoveryBudget
This variable is created as a Console Variable (cvar).
- type:
Cmd
- help:
Set a separate network traffic budget for data sent when opening a new actor channel. Value in kilobytes per second
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/ReplicationGraph.cpp:6656
Scope: file
Source code excerpt:
// ------------------------------------------------------------------------------
FAutoConsoleCommandWithWorldAndArgs ChangeActorDiscoveryBudget(TEXT("Net.RepGraph.ActorDiscoveryBudget"), TEXT("Set a separate network traffic budget for data sent when opening a new actor channel. Value in kilobytes per second"), FConsoleCommandWithWorldAndArgsDelegate::CreateLambda([](const TArray< FString >& Args, UWorld* World)
{
int32 BudgetInKBPS = 0;
if (Args.Num() > 0)
{
LexTryParseString<int32>(BudgetInKBPS, *Args[0]);
}