getColors

API -

return function()
    local avatar = getAvatar('block_man');
    if avatar == nil then
        log('the avatar was not found');
        return;
    end
    
    local colors = avatar.getColors(); 
    --returns a list of color palettes that's attached to the avatar
    
    local str = '';
    for key, value in pairs(colors) do
        str = str + value + ', ';
    end
    log(avatar.name .. ' has these colors palettes available:');
    log(str);
end

Last updated