OvrPlatform_User_GetLinkedAccounts Function
Returns a list of linked accounts that are associated with the specified service providers.
Customization can be done via UserOptions. Create this object withFOvrUserOptions. The params that could be used are:
- FOvrUserOptions::ServiceProviders.Emplace() - returns the list of linked accounts that are associated with these specified service providers.
Example custom C++ usage:
<codeblock> auto options = ovr_UserOptions_Create(); ovr_UserOptions_AddServiceProvider(options, ovrServiceProvider_Google); ovr_UserOptions_AddServiceProvider(options, ovrServiceProvider_Dropbox); ovr_User_GetLinkedAccounts(options); ovr_UserOptions_Destroy(options);
void OVRPLATFORM_API OvrPlatform_User_GetLinkedAccounts(UGameInstance *GameInstance, FOvrUserOptions UserOptions, OvrPlatform_User_GetLinkedAccounts_Delegate &&Delegate)
GameInstance: UGameInstance *
Delegate: OvrPlatform_User_GetLinkedAccounts_Delegate &&
void OVRPLATFORM_API