SlateDebugger.Invalidate.bUsePerformanceThreshold

SlateDebugger.Invalidate.bUsePerformanceThreshold

#Overview

name: SlateDebugger.Invalidate.bUsePerformanceThreshold

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/SlateCore/Private/Debugging/ConsoleSlateDebuggerInvalidate.cpp:71

Scope (from outer to inner):

file
function     FConsoleSlateDebuggerInvalidate::FConsoleSlateDebuggerInvalidate

Source code excerpt:

		FConsoleVariableDelegate::CreateRaw(this, &FConsoleSlateDebuggerInvalidate::HandledConfigChanged))
	, UsePerformanceThresholdRefCVar(
		TEXT("SlateDebugger.Invalidate.bUsePerformanceThreshold"),
		bUsePerformanceThreshold,
		TEXT("Only display the invalidated widgets and/or log them if the performance are worst than the threshold (in millisecond)."),
		FConsoleVariableDelegate::CreateRaw(this, &FConsoleSlateDebuggerInvalidate::HandledConfigChanged))
	, ThresholdPerformanceRefCVar(
		TEXT("SlateDebugger.Invalidate.ThresholdPerformanceMS"),
		ThresholdPerformanceMs,