getAllAvatars

API - gets all available avatars

circle-exclamation
return function()
    local allActiveAvatars = getAllAvatars();
    for i,avatar in pairs(allActiveAvatars) do
        log(avatar.name);
    end
end
Avatarchevron-right

Last updated