Pico Unreal Platform SDK

Functions

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...
 

Detailed Description

This is the BP_Friends group

Function Documentation

◆ 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
WorldContextObjectUsed to get the information about the current world.
LocalUserNumUser's account number.
FriendIdFriend ID.
ListNameThe 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
WorldContextObjectUsed to get the information about the current world.
LocalUserNumUser's account number.
ListNameThe name of the list. Valid value is Default or OnlinePlayers.
OutFriendsReturns 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
WorldContextObjectUsed to get the information about the current world.
LocalUserNumUser's account number.
ListNameThe name of the list. Valid value is Default or OnlinePlayers.
InReadFriendListDelegateCallback function proxy.