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 |
local MAX_SCROLL_SPEED_MODIFIER = 5
local MIN_SCROLL_SPEED_MODIFIER = 1
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.
ethereal = true ,
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.
ethereal = true ,
if speedMultiplier > MIN_SCROLL_SPEED_MODIFIER then
end
end ,
} ,
}
if newState == SCENE_FRAGMENT_SHOWING then
elseif newState == SCENE_FRAGMENT_HIDDEN then
end
end )
-- NOTE: Templates must be unique due to how the object pools name controls as they're created.
self : AddPool ( GAME_CREDITS_ENTRY_TYPE_DEPARTMENT_HEADER , "ZO_GameCreditsDepartmentGamepad" , function ( textControl , text ) return self : SetupTextControl ( textControl , text ) end )
self : AddPool ( GAME_CREDITS_ENTRY_TYPE_SECTION_HEADER , "ZO_GameCreditsSectionGamepad" , function ( textControl , text ) return self : SetupTextControl ( textControl , text ) end )
self : AddPool ( GAME_CREDITS_ENTRY_TYPE_SECTION_TEXT , "ZO_GameCreditsNamesGamepad" , function ( textControl , text ) return self : SetupTextControl ( textControl , text ) end )
self : AddPool ( GAME_CREDITS_ENTRY_TYPE_SECTION_TEXT_BLOCK , "ZO_GameCreditsTextBlockGamepad" , function ( textControl , text ) return self : SetupTextControl ( textControl , text ) end )
self : AddPool ( GAME_CREDITS_ENTRY_TYPE_COMPANY_LOGO , "ZO_GameCreditsLogoGamepad" , function ( logoControl , texture , height ) return self : SetupLogoControl ( logoControl , texture , height ) end )
self : AddPool ( GAME_CREDITS_ENTRY_TYPE_BACKGROUND_SWITCH , "ZO_GameCreditsBGSwitchGamepad" , function ( backgroundControl , texture ) return self : SetupBackgroundSwitch ( backgroundControl , texture ) end )
self : AddPool ( GAME_CREDITS_ENTRY_TYPE_PADDING_SECTION , "ZO_GameCreditsPaddingGamepad" , function ( paddingControl , unused , height ) return self : SetupPaddingSection ( paddingControl , unused , height ) end )
EVENT_MANAGER : RegisterForEvent ( "GameCreditsGamepad" , EVENT_GAME_CREDITS_READY , function ( ) self : BeginCredits ( ) end )
end
end
end
end |