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 |
-- 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" ,
}
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
end
if logoData then
end
end
end |