DefaultThrobberMaterial

DefaultThrobberMaterial

#Overview

name: DefaultThrobberMaterial

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/DefaultGame.ini:79, section: [/Script/CommonUI.CommonUISettings]

#References in C++ code

#Callsites

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

#Loc: <Workspace>/Engine/Plugins/Runtime/CommonUI/Source/CommonUI/Private/CommonUISettings.cpp:59

Scope (from outer to inner):

file
function     void UCommonUISettings::LoadEditorData

Source code excerpt:

	{
		DefaultImageResourceObjectInstance = DefaultImageResourceObject.LoadSynchronous();
		DefaultThrobberMaterialInstance = DefaultThrobberMaterial.LoadSynchronous();

		TSubclassOf<UCommonUIRichTextData> RichTextDataClass = DefaultRichTextDataClass.LoadSynchronous();
		RichTextDataInstance = RichTextDataClass.GetDefaultObject();

		if (GUObjectArray.IsDisregardForGC(this))
		{

#Loc: <Workspace>/Engine/Plugins/Runtime/CommonUI/Source/CommonUI/Public/CommonUISettings.h:69

Scope (from outer to inner):

file
class        class UCommonUISettings : public UObject

Source code excerpt:

	/** The Default Throbber Material, newly created CommonLoadGuard Widget will use this style. */
	UPROPERTY(config, EditAnywhere, Category = "Throbber")
	TSoftObjectPtr<UMaterialInterface> DefaultThrobberMaterial;

	/** The Default Data for rich text to show inline icon and others. */
	UPROPERTY(config, EditAnywhere, Category = "RichText", meta=(AllowAbstract=false))
	TSoftClassPtr<UCommonUIRichTextData> DefaultRichTextDataClass;

	/** The set of traits defined per-platform (e.g., the default input mode, whether or not you can exit the application, etc...) */