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 |
local MAX_SCROLL_SPEED_MODIFIER = 5
local MIN_SCROLL_SPEED_MODIFIER = 1
-- NOTE: Templates must be unique due to how the object pools name controls as they're created.
local POOL_TEMPLATES =
{
[ GAME_CREDITS_ENTRY_TYPE_DEPARTMENT_HEADER ] = "ZO_GameCreditsDepartmentGamepad" ,
[ GAME_CREDITS_ENTRY_TYPE_SECTION_HEADER ] = "ZO_GameCreditsSectionGamepad" ,
[ GAME_CREDITS_ENTRY_TYPE_SECTION_TEXT ] = "ZO_GameCreditsNamesGamepad" ,
[ GAME_CREDITS_ENTRY_TYPE_SECTION_TEXT_BLOCK ] = "ZO_GameCreditsTextBlockGamepad" ,
[ GAME_CREDITS_ENTRY_TYPE_COMPANY_LOGO ] = "ZO_GameCreditsLogoGamepad" ,
[ GAME_CREDITS_ENTRY_TYPE_BACKGROUND_SWITCH ] = "ZO_GameCreditsBGSwitchGamepad" ,
[ GAME_CREDITS_ENTRY_TYPE_PADDING_SECTION ] = "ZO_GameCreditsPaddingGamepad" ,
}
{
{
end ,
} ,
{
--Ethereal binds show no text, the name field is used to help identify the keybind when debugging. This text does not have to be localized.
if speedMultiplier < MAX_SCROLL_SPEED_MODIFIER then
end
end ,
} ,
{
--Ethereal binds show no text, the name field is used to help identify the keybind when debugging. This text does not have to be localized.
if speedMultiplier > MIN_SCROLL_SPEED_MODIFIER then
end
end ,
} ,
}
end
end
end
end
end
end |