Navigation
API > API/Runtime > API/Runtime/CoreUObject
Description
Resolves ini object path to string object path. This used to happen automatically in ResolveName but now must be called manually
| Name | ResolveIniObjectsReference |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/UObject/UObjectGlobals.h |
| Include Path | #include "UObject/UObjectGlobals.h" |
| Source | /Engine/Source/Runtime/CoreUObject/Private/UObject/UObjectGlobals.cpp |
FString ResolveIniObjectsReference
(
const FString & ObjectReference,
const FString * IniFilename,
bool bThrow
)
Resolved object path.
Parameters
| Name | Remarks |
|---|---|
| ObjectReference | Ini reference, of the form engine-ini:/Script/Engine.Engine.DefaultMaterialName |
| IniFilename | Ini filename. If null it will call GetIniFilenameFromObjectsReference |
| bThrow | If true, will print an error if it can't find the file |