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 125 126 127 128 129 130 |
return object
end
EVENT_MANAGER : RegisterForEvent ( "Help_Manager" , EVENT_HELP_SEARCH_RESULTS_READY , function ( ) self : OnSearchResultsReady ( ) end )
EVENT_MANAGER : RegisterForEvent ( "Help_Manager" , EVENT_GAMEPAD_PREFERRED_MODE_CHANGED , function ( ) self : OnGamepadPreferredModeChanged ( ) end )
-- If we ever want to use this mechanism to show the overlay version we can, but right now there's no use case
-- so that can be a future change if we decide we need it
-- ideally we would do a push here, but that is currently not playing
-- well with opening help from the Crown Store
-- specifically: attempting to gift from the furniture browser with gifting locked
else
end
end
end
local SEARCH_DATA_STRIDE = 2
for i = 1 , # searchData , SEARCH_DATA_STRIDE do
local helpCategoryIndex , helpIndex = searchData [ i ] , searchData [ i + 1 ]
end
end
end
return nil
end
end
end
end
-- Optionally pass in a data object that can specify arguments and filters
-- sceneInfo =
-- {
-- systemFilters = { UI_SYSTEM_ANTIQUITY_DIGGING, UI_SYSTEM_BATTELGROUND_FINDER },
-- showOverlayConditionalFunction = function() MySceneShouldShowOverlayExample() end,
-- }
sceneInfo = sceneInfo or { }
sceneInfo . systemFilters = sceneInfo . systemFilters or { }
end
if SCENE_MANAGER : IsShowing ( sceneName ) and ( not sceneInfo . showOverlayConditionalFunction or sceneInfo . showOverlayConditionalFunction ( ) ) then
return sceneInfo
end
end
return nil
end
return sceneInfo and sceneInfo . systemFilters or nil
end
end
return
end
return
end
end
else
end
else
else
end
end
end
end
|