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 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 |
local scrollChild = control : GetNamedChild ( "Container" ) : GetNamedChild ( "ScrollContainer" ) : GetNamedChild ( "ScrollChild" )
local confirmation2Text
local confirmation3Text
local accountIcon
if uiPlatform == UI_PLATFORM_XBOX then
accountIcon = "EsoUI/Art/Login/Gamepad/console_LoginLogo_XB.dds"
elseif uiPlatform == UI_PLATFORM_PS4 or uiPlatform == UI_PLATFORM_PS4 then
accountIcon = "EsoUI/Art/Login/Gamepad/console_LoginLogo_PS.dds"
else
confirmation2Text = zo_strformat ( GetString ( SI_LINKACCOUNT_CONFIRM_2_FORMAT ) , GetString ( "SI_PLATFORMSERVICETYPE" , serviceType ) )
confirmation3Text = ""
if serviceType == PLATFORM_SERVICE_TYPE_DMM then
end
local PLATFORM_SERVICE_ICONS =
{
[ PLATFORM_SERVICE_TYPE_DMM ] = "EsoUI/Art/Login/link_Login_DMM.dds" ,
[ PLATFORM_SERVICE_TYPE_STEAM ] = "EsoUI/Art/Login/link_Login_Steam.dds" ,
[ PLATFORM_SERVICE_TYPE_EPIC ] = "EsoUI/Art/Login/link_Login_Epic.dds" ,
}
accountIcon = PLATFORM_SERVICE_ICONS [ serviceType ]
end
CONFIRM_LINK_ACCOUNT_SCREEN_GAMEPAD_SCENE = ZO_Scene : New ( "ConfirmLinkAccountScreen_Gamepad" , SCENE_MANAGER )
if newState == SCENE_SHOWING then
if confirmation3Text ~= "" then
GAMEPAD_TOOLTIPS : LayoutTextBlockTooltip ( GAMEPAD_QUAD_2_3_TOOLTIP , WARNING_COLOR : Colorize ( confirmation3Text ) )
end
elseif newState == SCENE_HIDDEN then
end
end
end
{
{
end ,
} ,
{
end ,
} ,
}
end
end
local accountName
else
end
end
end |