bIsShowPath
bIsShowPath
#Overview
name: bIsShowPath
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:984, section: [/Script/AssetManagerEditor.ReferenceViewerSettings]
- INI Section:
/Script/AssetManagerEditor.ReferenceViewerSettings
- Raw value:
False
- Is Array:
False
#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:221
Scope (from outer to inner):
file
function bool UReferenceViewerSettings::IsShowPath
Source code excerpt:
bool UReferenceViewerSettings::IsShowPath() const
{
return bIsShowPath;
}
void UReferenceViewerSettings::SetShowPathEnabled(bool bEnabled)
{
bIsShowPath = bEnabled;
SaveConfig();
}
bool UReferenceViewerSettings::GetFiltersEnabled() const
{
return bFiltersEnabled;
#Loc: <Workspace>/Engine/Plugins/Editor/AssetManagerEditor/Source/AssetManagerEditor/Public/ReferenceViewer/ReferenceViewerSettings.h:189
Scope (from outer to inner):
file
class class UReferenceViewerSettings : public UObject
Source code excerpt:
/* Whether to show the package's path as a comment */
UPROPERTY(config)
bool bIsShowPath;
/* This turns on/off any filtering done though the SFilterBar */
UPROPERTY(config)
bool bFiltersEnabled;
/* When true, the filters bar auto updates based on the node types, otherwise user filters will be used */