Navigation
API > API/Plugins > API/Plugins/OnlineSubsystem
An interface used to collect and manage online stats
| Name | FOnlineStats |
| Type | class |
| Header File | /Engine/Plugins/Online/OnlineSubsystem/Source/Public/OnlineStats.h |
| Include Path | #include "OnlineStats.h" |
Syntax
class FOnlineStats
Derived Classes
Destructors
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual ~FOnlineStats() |
Destructor | OnlineStats.h |
Variables
Public
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| Properties | FStatPropertyArray | Array of stats we are gathering | OnlineStats.h |
Functions
Public
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual void DecrementFloatStat
(
const FString& StatName, |
Decrements a stat of type float by the value specified. | OnlineStats.h | |
virtual void DecrementIntStat
(
const FString& StatName, |
Decrements a stat of type int32 by the value specified. | OnlineStats.h | |
FVariantData * FindStatByName
(
const FString& StatName |
Get a key value pair by key name | OnlineStats.h | |
virtual void IncrementFloatStat
(
const FString& StatName, |
Increments a stat of type float by the value specified. | OnlineStats.h | |
virtual void IncrementIntStat
(
const FString& StatName, |
Increments a stat of type int32 by the value specified. | OnlineStats.h | |
virtual void SetFloatStat
(
const FString& StatName, |
Sets a stat of type SDT_Float to the value specified. | OnlineStats.h | |
virtual void SetIntStat
(
const FString& StatName, |
Sets a stat of type SDT_Int to the value specified. | OnlineStats.h |