Load Social.localUser.image from play game services always return null. How to get image url or load local user image from play game services?
Social.localUser.image from play game services load image asynchronous. You have to wait until image is loaded
`
IEnumerator LoadImage()
{
while (Social.localUser.image == null)
{
Debug.Log("IMAGE NOT FOUND");
yield return null;
}
Debug.Log("Image Found");
//Social.localUser.image is not null any more
}
`