1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
-- Constants for screens that are derived from the LoginBase
ZO_LOGIN_EDITBOX_WIDTH = 500
-- Login Base screen --
local DMM_LOGIN_LOGO_DATA =
{
leftSideTexturePath = "EsoUI/Art/Login/jp_login_logo_left.dds" ,
rightSideTexturePath = "EsoUI/Art/Login/jp_login_logo_right.dds" ,
}
local LANGUAGE_OVERRIDES_LOGIN_LOGO =
{
[ "zh" ] = true ,
}
return object
end
end
else
end
end
-- Update the logo based on the service currently being used, if necessary
local logoData
if serviceType == PLATFORM_SERVICE_TYPE_DMM then
logoData = DMM_LOGIN_LOGO_DATA
else
if LANGUAGE_OVERRIDES_LOGIN_LOGO [ language ] then
logoData =
{
}
end
end
if logoData then
end
end
end |