|
static void | PicoReadFriendList (UObject *WorldContextObject, int32 LocalUserNum, const FString &ListName, FOnlineManagerReadFriendListDelegate InReadFriendListDelegate) |
| Reads user's friend list by account number. More...
|
|
static void | PicoGetFriendList (UObject *WorldContextObject, int32 LocalUserNum, const FString &ListName, TArray< FPicoUserInfo > &OutFriends) |
| Gets an arrary of friends for a specified user by friend list name. More...
|
|
static FPicoUserInfo | PicoGetFriend (UObject *WorldContextObject, int32 LocalUserNum, const FString &FriendId, const FString &ListName) |
| Gets a user's friends by friend list name and friend ID. More...
|
|
This is the BP_Friends group
◆ PicoGetFriend()
FPicoUserInfo PicoGetFriend |
( |
UObject * |
WorldContextObject, |
|
|
int32 |
LocalUserNum, |
|
|
const FString & |
FriendId, |
|
|
const FString & |
ListName |
|
) |
| |
|
static |
Gets a user's friends by friend list name and friend ID.
- Parameters
-
WorldContextObject | Used to get the information about the current world. |
LocalUserNum | User's account number. |
FriendId | Friend ID. |
ListName | The name of the list. Valid value is Default or OnlinePlayers . |
- Returns
- FPicoFriend Pico friend struct.
◆ PicoGetFriendList()
void PicoGetFriendList |
( |
UObject * |
WorldContextObject, |
|
|
int32 |
LocalUserNum, |
|
|
const FString & |
ListName, |
|
|
TArray< FPicoUserInfo > & |
OutFriends |
|
) |
| |
|
static |
Gets an arrary of friends for a specified user by friend list name.
- Parameters
-
WorldContextObject | Used to get the information about the current world. |
LocalUserNum | User's account number. |
ListName | The name of the list. Valid value is Default or OnlinePlayers . |
OutFriends | Returns an array of friends. |
◆ PicoReadFriendList()
void PicoReadFriendList |
( |
UObject * |
WorldContextObject, |
|
|
int32 |
LocalUserNum, |
|
|
const FString & |
ListName, |
|
|
FOnlineManagerReadFriendListDelegate |
InReadFriendListDelegate |
|
) |
| |
|
static |
Reads user's friend list by account number.
- Parameters
-
WorldContextObject | Used to get the information about the current world. |
LocalUserNum | User's account number. |
ListName | The name of the list. Valid value is Default or OnlinePlayers . |
InReadFriendListDelegate | Callback function proxy. |