TemplateButtonStyle
TemplateButtonStyle
#Overview
name: TemplateButtonStyle
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>/Projects/Lyra/Config/DefaultEditor.ini:21, section: [/Script/CommonUI.CommonUIEditorSettings]
- INI Section:
/Script/CommonUI.CommonUIEditorSettings
- Raw value:
/Game/UI/Foundation/Buttons/ButtonStyle-Primary-M.ButtonStyle-Primary-M_C
- Is Array:
False
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Plugins/Runtime/CommonUI/Source/CommonUI/Private/CommonUIEditorSettings.cpp:29
Scope (from outer to inner):
file
function void UCommonUIEditorSettings::LoadEditorData
Source code excerpt:
TemplateTextStyleClass = TemplateTextStyle.LoadSynchronous();
TemplateButtonStyleClass = TemplateButtonStyle.LoadSynchronous();
TemplateBorderStyleClass = TemplateBorderStyle.LoadSynchronous();
if (GUObjectArray.IsDisregardForGC(this))
{
if (TemplateTextStyleClass)
{
#Loc: <Workspace>/Engine/Plugins/Runtime/CommonUI/Source/CommonUI/Public/CommonUIEditorSettings.h:39
Scope (from outer to inner):
file
class class UCommonUIEditorSettings : public UObject
Source code excerpt:
/** Newly created CommonButton Widgets will use this style. */
UPROPERTY(config, EditAnywhere, Category = "Buttons")
TSoftClassPtr<UCommonButtonStyle> TemplateButtonStyle;
/** Newly created CommonBorder Widgets will use this style. */
UPROPERTY(config, EditAnywhere, Category = "Border")
TSoftClassPtr<UCommonBorderStyle> TemplateBorderStyle;
#if WITH_EDITORONLY_DATA