Navigation
API > API/Runtime > API/Runtime/CoreUObject
Description
Checks if the given FName is marked as a Universally Unique Object Name. Note: This is an early out check. This function may return true for FNames that are not Universally Unique Object Names.
| Name | HasUniversallyUniqueObjectNameIdentifier |
| 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 |
bool HasUniversallyUniqueObjectNameIdentifier
(
FName Name
)
True if the FName is marked as a Universally Unique Object Name, otherwise false.
Parameters
| Name | Remarks |
|---|---|
| Name | The name to check. |