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 |
local anchorSide
local arrow
if arrowSide == LEFT then
anchorSide = RIGHT
else
anchorSide = LEFT
end
if arrow then
end
end
if ( nestedBg ) then
end
self . focusTexture = "EsoUI/Art/Windows/Gamepad/panelBG_focus_512.dds"
self . unfocusTexture = "EsoUI/Art/Windows/Gamepad/panelBG_noFocus_512.dds"
if ( self . rightDivider ) then
self . rightDividerFadeInAnimation = ANIMATION_MANAGER : CreateTimelineFromVirtual ( "ZO_GamepadQuadrantFadeAlphaIn" , self . rightDivider )
self . rightDividerFadeOutAnimation = ANIMATION_MANAGER : CreateTimelineFromVirtual ( "ZO_GamepadQuadrantFadeAlphaOut" , self . rightDivider )
end
end
local BACKGROUND_SCROLL_RATE = 0.0005
local BACKGROUND_SCROLL_RATE_VARIANCE = 0.0001
bottom = top + ZO_GAMEPAD_PANEL_BG_BOTTOM_COORD
end |