SlateDebugger.InvalidationRoot.Stop

SlateDebugger.InvalidationRoot.Stop

#Overview

name: SlateDebugger.InvalidationRoot.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/ConsoleSlateDebuggerInvalidationRoot.cpp:36

Scope (from outer to inner):

file
function     FConsoleSlateDebuggerInvalidationRoot::FConsoleSlateDebuggerInvalidationRoot

Source code excerpt:

		FConsoleCommandDelegate::CreateRaw(this, &FConsoleSlateDebuggerInvalidationRoot::StartDebugging))
	, StopCommand(
		TEXT("SlateDebugger.InvalidationRoot.Stop"),
		TEXT("Stop the Invalidation Root widget debug tool."),
		FConsoleCommandDelegate::CreateRaw(this, &FConsoleSlateDebuggerInvalidationRoot::StopDebugging))
	, EnabledRefCVar(
		TEXT("SlateDebugger.InvalidationRoot.Enable")
		, bEnabledCVarValue
		, TEXT("Start/Stop the Invalidation Root widget debug tool. It shows when Invalidation Roots are using the slow or the fast path.")

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

Scope: file

Source code excerpt:

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

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