SlateDebugger.Update.Stop

SlateDebugger.Update.Stop

#Overview

name: SlateDebugger.Update.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/ConsoleSlateDebuggerUpdate.cpp:42

Scope (from outer to inner):

file
function     FConsoleSlateDebuggerUpdate::FConsoleSlateDebuggerUpdate

Source code excerpt:

		FConsoleCommandDelegate::CreateRaw(this, &FConsoleSlateDebuggerUpdate::StartDebugging))
	, StopCommand(
		TEXT("SlateDebugger.Update.Stop"),
		TEXT("Stop the update widget debug tool."),
		FConsoleCommandDelegate::CreateRaw(this, &FConsoleSlateDebuggerUpdate::StopDebugging))
	, EnabledRefCVar(
		TEXT("SlateDebugger.Update.Enable")
		, bEnabledCVarValue
		, TEXT("Start/Stop the painted widget debug tool. It shows when widgets are updated.")

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

Scope: file

Source code excerpt:

 * Basics:
 *   Start - SlateDebugger.Update.Start
 *   Stop  - SlateDebugger.Update.Stop
 */
class FConsoleSlateDebuggerUpdate
{
public:
	FConsoleSlateDebuggerUpdate();
	virtual ~FConsoleSlateDebuggerUpdate();

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