Pico Unreal Platform SDK
|
OnlinePicoSport Blueprint Function class. More...
#include <Pico_Sport.h>
Static Public Member Functions | |
static bool | GetDailySummary (UObject *WorldContextObject, int64 BeginTime, int64 EndTime, FGetDailySummary InGetDailySummaryDelegate) |
Gets a summary of the user's daily exercise data for a specified period within the recent 3 months. For example, if the period you set is between 2022/08/16 and 2022/08/18, the exercise data generated on 08/16, 08/17, and 08/18 will be returned. More... | |
static bool | GetSummary (UObject *WorldContextObject, int64 BeginTime, int64 EndTime, FGetSummary InGetSummaryDelegate) |
Gets a summary of the user's exercise data for a specified duration within today. The duration should not exceed 24 hours. More... | |
static bool | GetSportUserInfo (UObject *WorldContextObject, FGetSportUserInfo InGetSportUserInfoDelegate) |
Gets a user's basic information and exercise plan. More... | |
static int64 | ConvertDateTimeToInt64 (FDateTime InDataTime) |
Converts FDateTime to int64. More... | |
static FDateTime | ConvertInt64ToDateTime (int64 InValue) |
Converts int64 to FDateTime. More... | |
OnlinePicoSport Blueprint Function class.
|
static |
Converts FDateTime to int64.
InDataTime | The FDateTime input. |
|
static |
Converts int64 to FDateTime.
InValue | The int64 input. |
|
static |
Gets a summary of the user's daily exercise data for a specified period within the recent 3 months. For example, if the period you set is between 2022/08/16 and 2022/08/18, the exercise data generated on 08/16, 08/17, and 08/18 will be returned.
WorldContextObject | Used to get the information about the current world. |
BeginTime | A DateTime struct(FDateTime(int64 InTicks).GetTicks()) defining the begin time of the period. |
EndTime | A DateTime struct(FDateTime(int64 InTicks).GetTicks()) defining the end time of the period. |
InGetDailySummaryDelegate | Will be executed when the request has been completed. Delegate will contain the requested object class. |
true
: success false
: failure
|
static |
Gets a user's basic information and exercise plan.
WorldContextObject | Used to get the information about the current world. |
InGetSportUserInfoDelegate | Will be executed when the request has been completed. Delegate will contain the requested object class. |
true
: success false
: failure
|
static |
Gets a summary of the user's exercise data for a specified duration within today. The duration should not exceed 24 hours.
WorldContextObject | Used to get the information about the current world. |
BeginTime | A DateTime struct(FDateTime(int64 InTicks).GetTicks()) defining the begin time of the period. |
EndTime | A DateTime struct(FDateTime(int64 InTicks)GetTicks()) defining the end time of the period. |
InGetSummaryDelegate | Will be executed when the request has been completed. Delegate will contain the requested object class. |
true
: success false
: failure