getAllAvatars

API - gets all available avatars

An avatar is not the same as a User.

the Avatar class contains data relevant towards a specific avatar, such as available gear items and color palettes that can be equipped.

return function()
    local allActiveAvatars = getAllAvatars();
    for i,avatar in pairs(allActiveAvatars) do
        log(avatar.name);
    end
end
pageAvatar

Last updated