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 |
local CHILD_VERTICAL_PADDING = 15
local SECTION_VERTICAL_PADDING = 70
ZO_HouseInformation_Shared . Initialize ( self , control : GetNamedChild ( "Container" ) , HOUSE_INFORMATION_FRAGMENT_GAMEPAD , "ZO_HousingFurnitureBrowser_Gamepad_Row" , CHILD_VERTICAL_PADDING , SECTION_VERTICAL_PADDING )
end
local narrations = { }
ZO_AppendNarration ( narrations , SCREEN_NARRATION_MANAGER : CreateNarratableObject ( rowControl . nameText ) )
ZO_AppendNarration ( narrations , SCREEN_NARRATION_MANAGER : CreateNarratableObject ( rowControl . valueText ) )
end
return narrations
end
local narrations = { }
--Get the title narration
ZO_AppendNarration ( narrations , SCREEN_NARRATION_MANAGER : CreateNarratableObject ( GetString ( SI_HOUSE_INFORMATION_TITLE ) ) )
--Get the narration for the name row
--Get the narration for the location row
--Get the narration for the owner row
--Get the narration for the limit rows
for i = HOUSING_FURNISHING_LIMIT_TYPE_ITERATION_BEGIN , HOUSING_FURNISHING_LIMIT_TYPE_ITERATION_END do
end
--Get the narration for the primary residence
--Get the narration for the population count
ZO_AppendNarration ( narrations , SCREEN_NARRATION_MANAGER : CreateNarratableObject ( GetString ( SI_HOUSING_CURRENT_RESIDENTS_OVER_POPULATION_TEXT ) ) )
end
--Get the narration for the house tours recommendation count
--Get the narration for the permissions rows
return narrations
end
end |