Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

LoadFriends(callback: Action<bool>): void;
void LoadFriends(Action<bool> callback);
def LoadFriends(callback as Action<bool>) as void

Description

Fetches the friends list of the logged in user. The friends list on the Social.localUser instance is populated if this call succeeds.

Social.localUser.LoadFriends (success => {
		Debug.Log (success ? "Loaded " + Social.localUser.friends.Length + " friends" : "Loading friends failed");
	});