Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/Kismet > API/Runtime/Engine/Kismet/UKismetArrayLibrary
References
| Module | Engine |
| Header | /Engine/Source/Runtime/Engine/Classes/Kismet/KismetArrayLibrary.h |
| Include | #include "Kismet/KismetArrayLibrary.h" |
| Source | /Engine/Source/Runtime/Engine/Private/KismetArrayLibrary.cpp |
UFUNCTION (BlueprintPure, CustomThunk,
Meta=(BlueprintInternalUseOnly="true", DisplayName="Get", CompactNodeTitle="GET", ArrayParm="TargetArray", ArrayTypeDependentParams="Item", BlueprintThreadSafe),
Category="Utilities|Array")
static void Array_Get
(
const TArray < int32 > & TargetArray,
int32 Index,
int32 & Item
)
Remarks
Given an array and an index, returns a copy of the item found at that index A copy of the item stored at the index
Parameters
| Name | Description |
|---|---|
| TargetArray | The array to get an item from |
| Index | The index in the array to get an item from |