SlateDebugger.Invalidate.Start

SlateDebugger.Invalidate.Start

#Overview

name: SlateDebugger.Invalidate.Start

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

It is referenced in 2 C++ source files.

#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:43

Scope (from outer to inner):

file
function     FConsoleSlateDebuggerInvalidate::FConsoleSlateDebuggerInvalidate

Source code excerpt:

	, ThresholdPerformanceMs(1.5f) //1.5ms
	, StartCommand(
		TEXT("SlateDebugger.Invalidate.Start"),
		TEXT("Start the Invalidation widget debug tool. It shows widgets that are invalidated."),
		FConsoleCommandDelegate::CreateRaw(this, &FConsoleSlateDebuggerInvalidate::StartDebugging))
	, StopCommand(
		TEXT("SlateDebugger.Invalidate.Stop"),
		TEXT("Stop the Invalidation widget debug tool."),
		FConsoleCommandDelegate::CreateRaw(this, &FConsoleSlateDebuggerInvalidate::StopDebugging))

#Loc: <Workspace>/Engine/Source/Runtime/SlateCore/Private/Debugging/ConsoleSlateDebuggerInvalidate.h:23

Scope: file

Source code excerpt:

 * Allows debugging the invalidation from the console.
 * Basics:
 *   Start - SlateDebugger.Invalidate.Start
 *   Stop  - SlateDebugger.Invalidate.Stop
 */
class FConsoleSlateDebuggerInvalidate
{
public:
	FConsoleSlateDebuggerInvalidate();
	~FConsoleSlateDebuggerInvalidate();

	void StartDebugging();
	void StopDebugging();
	bool IsEnabled() const { return bEnabled; }