bAutoUpdateFilters

bAutoUpdateFilters

#Overview

name: bAutoUpdateFilters

The value of this variable can be defined or overridden in .ini config files. 1 .ini config file referencing this setting variable.

It is referenced in 2 C++ source files.

#Summary

#Setting Variables

#References In INI files

Location: <Workspace>/Engine/Config/BaseEditorPerProjectUserSettings.ini:986, section: [/Script/AssetManagerEditor.ReferenceViewerSettings]

#References in C++ code

#Callsites

This variable is referenced in the following C++ source code:

#Loc: <Workspace>/Engine/Plugins/Editor/AssetManagerEditor/Source/AssetManagerEditor/Private/ReferenceViewer/ReferenceViewerSettings.cpp:254

Scope (from outer to inner):

file
function     bool UReferenceViewerSettings::AutoUpdateFilters

Source code excerpt:

bool UReferenceViewerSettings::AutoUpdateFilters() const
{
	return bAutoUpdateFilters;
}

void UReferenceViewerSettings::SetAutoUpdateFilters(bool bEnabled)
{
	bAutoUpdateFilters = bEnabled;
	SaveConfig();
}

const TArray<FilterState>& UReferenceViewerSettings::GetUserFilters() const
{
	return UserFilters;	

#Loc: <Workspace>/Engine/Plugins/Editor/AssetManagerEditor/Source/AssetManagerEditor/Public/ReferenceViewer/ReferenceViewerSettings.h:197

Scope (from outer to inner):

file
class        class UReferenceViewerSettings : public UObject

Source code excerpt:

	/* When true, the filters bar auto updates based on the node types, otherwise user filters will be used */
	UPROPERTY(config)
	bool bAutoUpdateFilters;

	/* The list of filters the user has built up */
	UPROPERTY(config)
	TArray<FilterState> UserFilters;

	/* Enable the Find Path tool */