πGet Avatar by SteamID

π Description
Retrieves the Steam avatar (profile picture) for a given Steam ID and returns it as a Texture2D. Useful when trying to list which users are in the leaderboard and show their avatars.
Steam ID
The ID for the user you want to get avatar for. Either gathered by the Get SteamID or by the Get Leaderboard Data node.
Specifies the desired size of the avatar. You should always only use the size you actually need. Gathering the small image is easier than the large one.
β Large (184x184) = Gathers the image in the largest size available
β Medium (64x64) = Gathers the image in a medium size
β Small (32x32) = Gathers the image in the smallest size available
On Success
Executes if the avatar was successfully retrieved and converted to a texture.
On Fail
Executes if the Steam API is not validated, the avatar ID is invalid, image data cannot be retrieved/processed, or the resulting texture is invalid.
Texture 2D
The Texture2D containing the user's avatar. Will be invalid on failure.
Last updated