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 |
--This data will determine how the screens are laid out and presented to the player. It lets you control what goes into the dropdown and what goes into the list (keyboard)
--Or what goes into root list and what gets drilled down into a sub list (gamepad). Should be initialized with any number of LFG activity types.
return manager
end
end
end
--Describes how to populate the singular panel for a random (any) entry for the specified activity type.
--Will only generate a "random" entry if the activity type is both in randomInfo and activityTypes, and if DoesLFGActivityHasAllOption returns true for the activitiyType
function ZO_ActivityFinderFilterModeData : AddRandomInfo ( activityType , description , keyboardBackground , gamepadBackground )
{
keyboardBackground = keyboardBackground ,
gamepadBackground = gamepadBackground ,
}
end
end
function ZO_ActivityFinderFilterModeData : SetSubmenuFilterNames ( specificFilterName , randomFilterName )
end
--If true, put specific activites into a list form and add a single entry to the filters to show this list. Currently gamepad does this automatically, but that could change in the future
end
end
end
end
------------------
--Initialization--
------------------
return manager
end
end
end
end
end
end
end |