SlateDebugger.Paint.Stop

SlateDebugger.Paint.Stop

#Overview

name: SlateDebugger.Paint.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/ConsoleSlateDebuggerPaint.cpp:38

Scope (from outer to inner):

file
function     FConsoleSlateDebuggerPaint::FConsoleSlateDebuggerPaint

Source code excerpt:

		, FConsoleCommandDelegate::CreateRaw(this, &FConsoleSlateDebuggerPaint::StartDebugging))
	, HidePaintWidgetCommand(
		TEXT("SlateDebugger.Paint.Stop")
		, TEXT("Stop the painted widget debug tool.")
		, FConsoleCommandDelegate::CreateRaw(this, &FConsoleSlateDebuggerPaint::StopDebugging))
	, EnabledRefCVar(
		TEXT("SlateDebugger.Paint.Enable")
		, bEnabledCVarValue
		, TEXT("Start/Stop the painted widget debug tool. It shows when widgets are painted.")

#Loc: <Workspace>/Engine/Source/Runtime/SlateCore/Private/Debugging/ConsoleSlateDebuggerPaint.h:25

Scope: file

Source code excerpt:

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

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