Slate.Debug.TraceNavigationConfig

Slate.Debug.TraceNavigationConfig

#Overview

name: Slate.Debug.TraceNavigationConfig

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/Slate/Private/Framework/Application/SlateApplication.cpp:89

Scope: file

Source code excerpt:

bool GSlateTraceNavigationConfig = false;
static FAutoConsoleVariableRef CVarSlateTraceNavigationConfig(
	TEXT("Slate.Debug.TraceNavigationConfig"),
	GSlateTraceNavigationConfig,
	TEXT("True enables tracing of navigation config & callstack to log.")
);
#endif //WITH_SLATE_DEBUGGING

bool GSlateInputMotionFiresUserInteractionEvents = true;

#Loc: <Workspace>/Engine/Source/Runtime/Slate/Public/Framework/Application/SlateApplication.h:592

Scope: file

Source code excerpt:

	/**
	 * Tries to dumps the current navigation config along with callstack used to set it.
	 * Does nothing if Slate.Debug.TraceNavigationConfig is false (By default is false)
	 *
	 * @param InNavigationConfig Navigation config to dump info to log for
	 */
	SLATE_API void TryDumpNavigationConfig(TSharedPtr<FNavigationConfig> InNavigationConfig) const;
#endif // WITH_SLATE_DEBUGGING

	/**
	 * Sets specified user focus to the SWidget passed in.
	 *
	 * @param UserIndex Index of the user to change focus for
	 * @param WidgetToFocus the widget to set focus to