Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/Kismet > API/Runtime/Engine/Kismet/UGameplayStatics
References
| Module | Engine |
| Header | /Engine/Source/Runtime/Engine/Classes/Kismet/GameplayStatics.h |
| Include | #include "Kismet/GameplayStatics.h" |
| Source | /Engine/Source/Runtime/Engine/Private/GameplayStatics.cpp |
UFUNCTION (BlueprintPure, Category="Game Options", Meta=(BlueprintThreadSafe))
static int32 GetIntOption
(
const FString & Options,
const FString & Key,
int32 DefaultValue
)
Remarks
Find an option in the options string and return it as an integer. The value associated with Key as an integer if Key found in Options string, otherwise DefaultValue.
Parameters
| Name | Description |
|---|---|
| Options | The string containing the options. |
| Key | The key to find the value of in Options. |