bCanModifyPluginsFromBrowser
bCanModifyPluginsFromBrowser
#Overview
name: bCanModifyPluginsFromBrowser
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 1
C++ source file.
#Summary
#Setting Variables
#References In INI files
Location: <Workspace>/Engine/Config/BaseEditor.ini:642, section: [EditorSettings]
- INI Section:
EditorSettings
- Raw value:
true
- Is Array:
False
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Plugins/Editor/PluginBrowser/Source/PluginBrowser/Private/SPluginTile.cpp:525
Scope (from outer to inner):
file
function bool SPluginTile::CanModifyPlugins
Source code excerpt:
{
bool bValue = true;
GConfig->GetBool(TEXT("EditorSettings"), TEXT("bCanModifyPluginsFromBrowser"), bValue, GEditorIni);
return bValue;
}
ECheckBoxState SPluginTile::IsPluginEnabled() const
{
FPluginBrowserModule& PluginBrowserModule = FPluginBrowserModule::Get();