Navigation
API > API/Plugins > API/Plugins/DataRegistry > API/Plugins/DataRegistry/UDataRegistrySubsystem
References
| Module | DataRegistry |
| Header | /Engine/Plugins/Runtime/DataRegistry/Source/DataRegistry/Public/DataRegistrySubsystem.h |
| Include | #include "DataRegistrySubsystem.h" |
UFUNCTION (BlueprintCallable, CustomThunk, Category=DataRegistry,
Meta=(DisplayName="Get Data Registry Item", CustomStructureParam="OutItem"))
static bool GetCachedItemBP
(
FDataRegistryId ItemId,
UPARAM(ref) FTableRowBase & OutItem
)
Remarks
Attempts to get cached structure data stored in a DataRegistry, modifying OutItem if the item is available. This version has an input param and simple bool return. Returns true if the item was found and OutItem was modified
Parameters
| Name | Description |
|---|---|
| ItemID | Item identifier to lookup in cache |
| OutItem | This must be the same type as the registry, if the item is found this will be filled in with the found data |