SlateDebugger.Invalidate.Stop

SlateDebugger.Invalidate.Stop

#Overview

name: SlateDebugger.Invalidate.Stop

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:47

Scope (from outer to inner):

file
function     FConsoleSlateDebuggerInvalidate::FConsoleSlateDebuggerInvalidate

Source code excerpt:

		FConsoleCommandDelegate::CreateRaw(this, &FConsoleSlateDebuggerInvalidate::StartDebugging))
	, StopCommand(
		TEXT("SlateDebugger.Invalidate.Stop"),
		TEXT("Stop the Invalidation widget debug tool."),
		FConsoleCommandDelegate::CreateRaw(this, &FConsoleSlateDebuggerInvalidate::StopDebugging))
	, EnabledRefCVar(
		TEXT("SlateDebugger.Invalidate.Enabled"),
		bEnabledCVarValue,
		TEXT("Start/Stop the Invalidation widget debug tool. It shows widgets that are invalidated."),

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

Scope: file

Source code excerpt:

 * Basics:
 *   Start - SlateDebugger.Invalidate.Start
 *   Stop  - SlateDebugger.Invalidate.Stop
 */
class FConsoleSlateDebuggerInvalidate
{
public:
	FConsoleSlateDebuggerInvalidate();
	~FConsoleSlateDebuggerInvalidate();

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