Navigation
API > API/Editor > API/Editor/EditorConfig > API/Editor/EditorConfig/UEditorConfigSubsystem
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool LoadConfigObject
(
TObject* Object, |
Load a config from the root of the JSON file into a given UObject. | EditorConfigSubsystem.h | |
bool LoadConfigObject
(
const UClass* Class, |
Load a config from the root of the JSON file into a given UObject. | EditorConfigSubsystem.h |
LoadConfigObject(TObject *, FEditorConfig::EPropertyFilter)
Description
Load a config from the root of the JSON file into a given UObject. This loads the config from the UCLASS's EditorConfig="ConfigName" metadata.
| Name | LoadConfigObject |
| Type | function |
| Header File | /Engine/Source/Editor/EditorConfig/Public/EditorConfigSubsystem.h |
| Include Path | #include "EditorConfigSubsystem.h" |
template<typename TObject>
bool LoadConfigObject
(
TObject * Object,
FEditorConfig::EPropertyFilter Filter
)
Parameters
| Name | Remarks |
|---|---|
| Object | The object to load into. |
| Filter | Whether to load all properties, or only ones marked with the EditorConfig metadata. |
LoadConfigObject(const UClass , UObject , FEditorConfig::EPropertyFilter)
Description
Load a config from the root of the JSON file into a given UObject. This loads the config from the UCLASS's EditorConfig="ConfigName" metadata.
| Name | LoadConfigObject |
| Type | function |
| Header File | /Engine/Source/Editor/EditorConfig/Public/EditorConfigSubsystem.h |
| Include Path | #include "EditorConfigSubsystem.h" |
| Source | /Engine/Source/Editor/EditorConfig/Private/EditorConfigSubystem.cpp |
bool LoadConfigObject
(
const UClass * Class,
UObject * Object,
FEditorConfig::EPropertyFilter
)
Parameters
| Name | Remarks |
|---|---|
| Class | The UClass of the object. |
| Object | The UObject instance to load into. |
| Filter | Whether to load all properties, or only ones marked with the EditorConfig metadata. |