NetEmulation.Off

NetEmulation.Off

#Overview

name: NetEmulation.Off

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/Source/Runtime/Engine/Private/Net/NetEmulationHelper.cpp:82

Scope (from outer to inner):

file
namespace    UE::Net::Private::NetEmulationHelper

Source code excerpt:

}));

FAutoConsoleCommandWithWorld NetEmulationOff(TEXT("NetEmulation.Off"), TEXT("Turn off network emulation"),
FConsoleCommandWithWorldDelegate::CreateStatic([](UWorld* World)
{
	CreatePersistentSimulationSettings();
	PersistentPacketSimulationSettings.GetValue().ResetSettings();
	ApplySimulationSettingsOnNetDrivers(World, PersistentPacketSimulationSettings.GetValue());
}));