wp.Editor.ToggleShowEditorProfiling

wp.Editor.ToggleShowEditorProfiling

#Overview

name: wp.Editor.ToggleShowEditorProfiling

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/Editor/WorldPartitionEditor/Private/WorldPartition/SWorldPartitionEditorGrid2D.cpp:54

Scope: file

Source code excerpt:

static bool GShowEditorProfilingStats = 0;
static FAutoConsoleCommand CVarToggleShowEditorProfilingStats(
	TEXT("wp.Editor.ToggleShowEditorProfiling"),
	TEXT("Toggles showing editor profiling stats."),
	FConsoleCommandDelegate::CreateLambda([] { GShowEditorProfilingStats = !GShowEditorProfilingStats; })
);

class FWeightedMovingAverageScope
{