interface Element { file: string type: string children?: string[] extend?: { name: string namespace: string } } interface VanillaDefs { [key: string]: { [key: string]: Element } } export const vanilladefs: VanillaDefs = { "achievement": { "empty_progress_bar_icon": { "file": "ui/achievement_screen.json", "type": "image" }, "full_progress_bar_icon_base": { "file": "ui/achievement_screen.json", "type": "image" } }, "add_external_server": { "play_button": { "file": "ui/add_external_server_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "play_disabled_button": { "file": "ui/add_external_server_screen.json", "type": "button", "extend": { "name": "play_button", "namespace": "add_external_server" } }, "remove_button": { "file": "ui/add_external_server_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "save_button": { "file": "ui/add_external_server_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "save_disabled_button": { "file": "ui/add_external_server_screen.json", "type": "button", "extend": { "name": "save_button", "namespace": "add_external_server" } }, "text_edit_group": { "file": "ui/add_external_server_screen.json", "type": "stack_panel", "children": [ "name_label", "edit_box" ] }, "text_edit_group/name_label": { "file": "ui/add_external_server_screen.json", "type": "label" }, "text_edit_group/edit_box": { "file": "ui/add_external_server_screen.json", "type": "edit_box", "extend": { "name": "text_edit_box", "namespace": "common" } }, "title_text": { "file": "ui/add_external_server_screen.json", "type": "label" }, "content_panel": { "file": "ui/add_external_server_screen.json", "type": "stack_panel", "children": [ "name_edit", "ip_edit", "port_edit" ] }, "content_panel/name_edit": { "file": "ui/add_external_server_screen.json", "type": "stack_panel", "extend": { "name": "text_edit_group", "namespace": "add_external_server" } }, "content_panel/ip_edit": { "file": "ui/add_external_server_screen.json", "type": "stack_panel", "extend": { "name": "text_edit_group", "namespace": "add_external_server" } }, "content_panel/port_edit": { "file": "ui/add_external_server_screen.json", "type": "stack_panel", "extend": { "name": "text_edit_group", "namespace": "add_external_server" } }, "main_panel": { "file": "ui/add_external_server_screen.json", "type": "input_panel", "children": [ "common_panel", "title", "main_content", "play", "play_disabled", "remove", "save", "save_disabled" ] }, "main_panel/common_panel": { "file": "ui/add_external_server_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "main_panel/title": { "file": "ui/add_external_server_screen.json", "type": "label", "extend": { "name": "title_text", "namespace": "add_external_server" } }, "main_panel/main_content": { "file": "ui/add_external_server_screen.json", "type": "stack_panel", "extend": { "name": "content_panel", "namespace": "add_external_server" } }, "main_panel/play": { "file": "ui/add_external_server_screen.json", "type": "button", "extend": { "name": "play_button", "namespace": "add_external_server" } }, "main_panel/play_disabled": { "file": "ui/add_external_server_screen.json", "type": "button", "extend": { "name": "play_disabled_button", "namespace": "add_external_server" } }, "main_panel/remove": { "file": "ui/add_external_server_screen.json", "type": "button", "extend": { "name": "remove_button", "namespace": "add_external_server" } }, "main_panel/save": { "file": "ui/add_external_server_screen.json", "type": "button", "extend": { "name": "save_button", "namespace": "add_external_server" } }, "main_panel/save_disabled": { "file": "ui/add_external_server_screen.json", "type": "button", "extend": { "name": "save_disabled_button", "namespace": "add_external_server" } }, "gamepad_helpers": { "file": "ui/add_external_server_screen.json", "type": "panel", "children": [ "gamepad_helper_a" ] }, "gamepad_helpers/gamepad_helper_a": { "file": "ui/add_external_server_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_a", "namespace": "common" } }, "add_external_server_screen_new": { "file": "ui/add_external_server_screen.json", "type": "screen", "extend": { "name": "add_external_server_screen", "namespace": "add_external_server" } }, "add_external_server_screen_edit": { "file": "ui/add_external_server_screen.json", "type": "screen", "extend": { "name": "add_external_server_screen", "namespace": "add_external_server" } }, "add_external_server_screen": { "file": "ui/add_external_server_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "add_external_server_screen_content": { "file": "ui/add_external_server_screen.json", "type": "panel", "children": [ "root_panel" ] }, "add_external_server_screen_content/root_panel": { "file": "ui/add_external_server_screen.json", "type": "panel", "children": [ "gamepad_helpers", "main_panel" ] }, "add_external_server_screen_content/root_panel/gamepad_helpers": { "file": "ui/add_external_server_screen.json", "type": "panel", "extend": { "name": "gamepad_helpers", "namespace": "add_external_server" } }, "add_external_server_screen_content/root_panel/main_panel": { "file": "ui/add_external_server_screen.json", "type": "input_panel", "extend": { "name": "main_panel", "namespace": "add_external_server" } } }, "adhoc_inprogress": { "title_text": { "file": "ui/adhoc_inprogess_screen.json", "type": "label" }, "main_panel": { "file": "ui/adhoc_inprogess_screen.json", "type": "panel", "children": [ "common_panel", "title", "main_content", "progress_loading_bars" ] }, "main_panel/common_panel": { "file": "ui/adhoc_inprogess_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "main_panel/title": { "file": "ui/adhoc_inprogess_screen.json", "type": "label", "extend": { "name": "title_text", "namespace": "adhoc" } }, "main_panel/main_content": { "file": "ui/adhoc_inprogess_screen.json", "type": "label" }, "main_panel/progress_loading_bars": { "file": "ui/adhoc_inprogess_screen.json", "type": "image", "extend": { "name": "progress_loading_bars", "namespace": "play" } }, "adhoc_inprogress_screen": { "file": "ui/adhoc_inprogess_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "adhoc_inprogress_screen_content": { "file": "ui/adhoc_inprogess_screen.json", "type": "panel", "children": [ "root_panel" ] }, "adhoc_inprogress_screen_content/root_panel": { "file": "ui/adhoc_inprogess_screen.json", "type": "panel", "children": [ "main_panel" ] }, "adhoc_inprogress_screen_content/root_panel/main_panel": { "file": "ui/adhoc_inprogess_screen.json", "type": "panel", "extend": { "name": "main_panel", "namespace": "adhoc_inprogress" } } }, "adhoc": { "online_button": { "file": "ui/adhoc_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "local_button": { "file": "ui/adhoc_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "title_text": { "file": "ui/adhoc_screen.json", "type": "label" }, "content_panel": { "file": "ui/adhoc_screen.json", "type": "stack_panel", "children": [ "title_text" ] }, "content_panel/title_text": { "file": "ui/adhoc_screen.json", "type": "label" }, "main_panel": { "file": "ui/adhoc_screen.json", "type": "input_panel", "children": [ "common_panel", "title", "main_content", "online", "local" ] }, "main_panel/common_panel": { "file": "ui/adhoc_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "main_panel/title": { "file": "ui/adhoc_screen.json", "type": "label", "extend": { "name": "title_text", "namespace": "adhoc" } }, "main_panel/main_content": { "file": "ui/adhoc_screen.json", "type": "label" }, "main_panel/online": { "file": "ui/adhoc_screen.json", "type": "button", "extend": { "name": "online_button", "namespace": "adhoc" } }, "main_panel/local": { "file": "ui/adhoc_screen.json", "type": "button", "extend": { "name": "local_button", "namespace": "adhoc" } }, "gamepad_helpers": { "file": "ui/adhoc_screen.json", "type": "panel", "children": [ "gamepad_helper_a" ] }, "gamepad_helpers/gamepad_helper_a": { "file": "ui/adhoc_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_a", "namespace": "common" } }, "adhoc_screen": { "file": "ui/adhoc_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "adhoc_screen_content": { "file": "ui/adhoc_screen.json", "type": "panel", "children": [ "root_panel" ] }, "adhoc_screen_content/root_panel": { "file": "ui/adhoc_screen.json", "type": "panel", "children": [ "gamepad_helpers", "main_panel" ] }, "adhoc_screen_content/root_panel/gamepad_helpers": { "file": "ui/adhoc_screen.json", "type": "panel", "extend": { "name": "gamepad_helpers", "namespace": "adhoc" } }, "adhoc_screen_content/root_panel/main_panel": { "file": "ui/adhoc_screen.json", "type": "input_panel", "extend": { "name": "main_panel", "namespace": "adhoc" } } }, "anvil": { "generic_label": { "file": "ui/anvil_screen.json", "type": "label" }, "anvil_icon": { "file": "ui/anvil_screen.json", "type": "image" }, "title_label": { "file": "ui/anvil_screen.json", "type": "label", "extend": { "name": "generic_label", "namespace": "anvil" } }, "anvil_icon_panel": { "file": "ui/anvil_screen.json", "type": "panel", "children": [ "anvil_icon" ] }, "anvil_icon_panel/anvil_icon": { "file": "ui/anvil_screen.json", "type": "image", "extend": { "name": "anvil_icon", "namespace": "anvil" } }, "text_edit_control": { "file": "ui/anvil_screen.json", "type": "edit_box", "extend": { "name": "text_edit_box", "namespace": "common" } }, "icon_and_text_panel": { "file": "ui/anvil_screen.json", "type": "panel", "children": [ "anvil_icon_panel", "anvil_title_and_text_panel" ] }, "icon_and_text_panel/anvil_icon_panel": { "file": "ui/anvil_screen.json", "type": "panel", "extend": { "name": "anvil_icon_panel", "namespace": "anvil" } }, "icon_and_text_panel/anvil_title_and_text_panel": { "file": "ui/anvil_screen.json", "type": "panel", "extend": { "name": "anvil_title_and_text_panel", "namespace": "anvil" } }, "title_panel": { "file": "ui/anvil_screen.json", "type": "panel", "children": [ "title_label" ] }, "title_panel/title_label": { "file": "ui/anvil_screen.json", "type": "label", "extend": { "name": "title_label", "namespace": "anvil" } }, "text_edit_panel": { "file": "ui/anvil_screen.json", "type": "panel", "children": [ "text_edit_control" ] }, "text_edit_panel/text_edit_control": { "file": "ui/anvil_screen.json", "type": "edit_box", "extend": { "name": "text_edit_control", "namespace": "anvil" } }, "anvil_title_and_text_panel": { "file": "ui/anvil_screen.json", "type": "panel", "children": [ "title_panel", "text_edit_panel" ] }, "anvil_title_and_text_panel/title_panel": { "file": "ui/anvil_screen.json", "type": "panel", "extend": { "name": "title_panel", "namespace": "anvil" } }, "anvil_title_and_text_panel/text_edit_panel": { "file": "ui/anvil_screen.json", "type": "panel", "extend": { "name": "text_edit_panel", "namespace": "anvil" } }, "plus_sign_icon": { "file": "ui/anvil_screen.json", "type": "image" }, "arrow_icon": { "file": "ui/anvil_screen.json", "type": "image" }, "cross_out_icon": { "file": "ui/anvil_screen.json", "type": "image" }, "anvil_output_slot_button": { "file": "ui/anvil_screen.json", "type": "button", "extend": { "name": "container_slot_button_prototype", "namespace": "common" } }, "anvil_item_slot": { "file": "ui/anvil_screen.json", "type": "panel", "children": [ "container_item" ] }, "anvil_item_slot/container_item": { "file": "ui/anvil_screen.json", "type": "input_panel", "extend": { "name": "container_item", "namespace": "common" } }, "recipe_grid": { "file": "ui/anvil_screen.json", "type": "grid", "children": [ "input_item_slot", "plus", "material_item_slot", "yields", "result_item_slot" ] }, "recipe_grid/input_item_slot": { "file": "ui/anvil_screen.json", "type": "panel", "extend": { "name": "anvil_item_slot", "namespace": "anvil" } }, "recipe_grid/plus": { "file": "ui/anvil_screen.json", "type": "panel", "children": [ "plus_sign_icon" ] }, "recipe_grid/plus/plus_sign_icon": { "file": "ui/anvil_screen.json", "type": "image", "extend": { "name": "plus_sign_icon", "namespace": "anvil" } }, "recipe_grid/material_item_slot": { "file": "ui/anvil_screen.json", "type": "panel", "extend": { "name": "anvil_item_slot", "namespace": "anvil" } }, "recipe_grid/yields": { "file": "ui/anvil_screen.json", "type": "panel", "children": [ "arrow_icon", "cross_out_icon" ] }, "recipe_grid/yields/arrow_icon": { "file": "ui/anvil_screen.json", "type": "image", "extend": { "name": "arrow_icon", "namespace": "anvil" } }, "recipe_grid/yields/cross_out_icon": { "file": "ui/anvil_screen.json", "type": "image", "extend": { "name": "cross_out_icon", "namespace": "anvil" } }, "recipe_grid/result_item_slot": { "file": "ui/anvil_screen.json", "type": "panel", "extend": { "name": "anvil_item_slot", "namespace": "anvil" } }, "cost_label": { "file": "ui/anvil_screen.json", "type": "label", "extend": { "name": "generic_label", "namespace": "anvil" }, "children": [ "gray" ] }, "cost_label/gray": { "file": "ui/anvil_screen.json", "type": "image", "extend": { "name": "gray_image", "namespace": "resource_packs" } }, "recipe_panel": { "file": "ui/anvil_screen.json", "type": "panel", "children": [ "recipe_grid", "cost_label_0", "cost_label_1" ] }, "recipe_panel/recipe_grid": { "file": "ui/anvil_screen.json", "type": "grid", "extend": { "name": "recipe_grid", "namespace": "anvil" } }, "recipe_panel/cost_label_0": { "file": "ui/anvil_screen.json", "type": "label", "extend": { "name": "cost_label", "namespace": "anvil" } }, "recipe_panel/cost_label_1": { "file": "ui/anvil_screen.json", "type": "label", "extend": { "name": "cost_label", "namespace": "anvil" } }, "top_half_panel": { "file": "ui/anvil_screen.json", "type": "panel", "children": [ "icon_and_text_panel", "recipe_panel" ] }, "top_half_panel/icon_and_text_panel": { "file": "ui/anvil_screen.json", "type": "panel", "extend": { "name": "icon_and_text_panel", "namespace": "anvil" } }, "top_half_panel/recipe_panel": { "file": "ui/anvil_screen.json", "type": "panel", "extend": { "name": "recipe_panel", "namespace": "anvil" } }, "anvil_panel": { "file": "ui/anvil_screen.json", "type": "panel", "children": [ "container_gamepad_helpers", "selected_item_details_factory", "item_lock_notification_factory", "root_panel", "flying_item_renderer" ] }, "anvil_panel/container_gamepad_helpers": { "file": "ui/anvil_screen.json", "type": "stack_panel", "extend": { "name": "container_gamepad_helpers", "namespace": "common" } }, "anvil_panel/selected_item_details_factory": { "file": "ui/anvil_screen.json", "type": "factory", "extend": { "name": "selected_item_details_factory", "namespace": "common" } }, "anvil_panel/item_lock_notification_factory": { "file": "ui/anvil_screen.json", "type": "factory", "extend": { "name": "item_lock_notification_factory", "namespace": "common" } }, "anvil_panel/root_panel": { "file": "ui/anvil_screen.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "common_panel", "anvil_screen_inventory", "inventory_selected_icon_button", "gamepad_cursor" ] }, "anvil_panel/root_panel/common_panel": { "file": "ui/anvil_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "anvil_panel/root_panel/anvil_screen_inventory": { "file": "ui/anvil_screen.json", "type": "panel", "children": [ "top_half_panel", "inventory_panel_bottom_half_with_label", "hotbar_grid", "inventory_take_progress_icon_button" ] }, "anvil_panel/root_panel/anvil_screen_inventory/top_half_panel": { "file": "ui/anvil_screen.json", "type": "panel", "extend": { "name": "top_half_panel", "namespace": "anvil" } }, "anvil_panel/root_panel/anvil_screen_inventory/inventory_panel_bottom_half_with_label": { "file": "ui/anvil_screen.json", "type": "panel", "extend": { "name": "inventory_panel_bottom_half_with_label", "namespace": "common" } }, "anvil_panel/root_panel/anvil_screen_inventory/hotbar_grid": { "file": "ui/anvil_screen.json", "type": "grid", "extend": { "name": "hotbar_grid_template", "namespace": "common" } }, "anvil_panel/root_panel/anvil_screen_inventory/inventory_take_progress_icon_button": { "file": "ui/anvil_screen.json", "type": "button", "extend": { "name": "inventory_take_progress_icon_button", "namespace": "common" } }, "anvil_panel/root_panel/inventory_selected_icon_button": { "file": "ui/anvil_screen.json", "type": "button", "extend": { "name": "inventory_selected_icon_button", "namespace": "common" } }, "anvil_panel/root_panel/gamepad_cursor": { "file": "ui/anvil_screen.json", "type": "button", "extend": { "name": "gamepad_cursor_button", "namespace": "common" } }, "anvil_panel/flying_item_renderer": { "file": "ui/anvil_screen.json", "type": "custom", "extend": { "name": "flying_item_renderer", "namespace": "common" } }, "anvil_screen": { "file": "ui/anvil_screen.json", "type": "screen", "extend": { "name": "inventory_screen_common", "namespace": "common" } } }, "anvil_pocket": { "generic_label": { "file": "ui/anvil_screen_pocket.json", "type": "label" }, "background_image": { "file": "ui/anvil_screen_pocket.json", "type": "image" }, "arrow_icon": { "file": "ui/anvil_screen_pocket.json", "type": "image" }, "cost_label": { "file": "ui/anvil_screen_pocket.json", "type": "label", "extend": { "name": "generic_label", "namespace": "anvil_pocket" }, "children": [ "gray" ] }, "cost_label/gray": { "file": "ui/anvil_screen_pocket.json", "type": "image", "extend": { "name": "gray_image", "namespace": "resource_packs" } }, "title_label": { "file": "ui/anvil_screen_pocket.json", "type": "label", "extend": { "name": "generic_label", "namespace": "anvil_pocket" } }, "text_edit_control": { "file": "ui/anvil_screen_pocket.json", "type": "edit_box", "extend": { "name": "text_edit_box", "namespace": "common" } }, "anvil_title_and_text_panel": { "file": "ui/anvil_screen_pocket.json", "type": "panel", "children": [ "title_label", "text_edit_control" ] }, "anvil_title_and_text_panel/title_label": { "file": "ui/anvil_screen_pocket.json", "type": "label", "extend": { "name": "title_label", "namespace": "anvil_pocket" } }, "anvil_title_and_text_panel/text_edit_control": { "file": "ui/anvil_screen_pocket.json", "type": "edit_box", "extend": { "name": "text_edit_control", "namespace": "anvil_pocket" } }, "slots_panel": { "file": "ui/anvil_screen_pocket.json", "type": "panel", "children": [ "input_slot", "material_slot", "result_slot", "plus_sign", "arrow" ] }, "slots_panel/input_slot": { "file": "ui/anvil_screen_pocket.json", "type": "input_panel", "extend": { "name": "pocket_ui_large_container_item", "namespace": "common" } }, "slots_panel/material_slot": { "file": "ui/anvil_screen_pocket.json", "type": "input_panel", "extend": { "name": "pocket_ui_large_container_item", "namespace": "common" } }, "slots_panel/result_slot": { "file": "ui/anvil_screen_pocket.json", "type": "input_panel", "extend": { "name": "pocket_ui_large_container_item", "namespace": "common" } }, "slots_panel/plus_sign": { "file": "ui/anvil_screen_pocket.json", "type": "label", "extend": { "name": "generic_label", "namespace": "anvil_pocket" } }, "slots_panel/arrow": { "file": "ui/anvil_screen_pocket.json", "type": "image", "children": [ "cross_out" ] }, "slots_panel/arrow/cross_out": { "file": "ui/anvil_screen_pocket.json", "type": "image" }, "anvil_contents_panel": { "file": "ui/anvil_screen_pocket.json", "type": "panel", "children": [ "red_cost", "green_cost", "slots_panel", "anvil_title_and_text_panel" ] }, "anvil_contents_panel/red_cost": { "file": "ui/anvil_screen_pocket.json", "type": "label", "extend": { "name": "cost_label", "namespace": "anvil_pocket" } }, "anvil_contents_panel/green_cost": { "file": "ui/anvil_screen_pocket.json", "type": "label", "extend": { "name": "cost_label", "namespace": "anvil_pocket" } }, "anvil_contents_panel/slots_panel": { "file": "ui/anvil_screen_pocket.json", "type": "panel", "extend": { "name": "slots_panel", "namespace": "anvil_pocket" } }, "anvil_contents_panel/anvil_title_and_text_panel": { "file": "ui/anvil_screen_pocket.json", "type": "panel", "extend": { "name": "anvil_title_and_text_panel", "namespace": "anvil_pocket" } }, "inventory_grid": { "file": "ui/anvil_screen_pocket.json", "type": "grid" }, "inventory_content": { "file": "ui/anvil_screen_pocket.json", "type": "panel", "children": [ "scrolling_panel" ] }, "inventory_content/scrolling_panel": { "file": "ui/anvil_screen_pocket.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "inventory_and_anvil_panel": { "file": "ui/anvil_screen_pocket.json", "type": "panel", "children": [ "inventory_half_screen", "anvil_half_screen" ] }, "inventory_and_anvil_panel/inventory_half_screen": { "file": "ui/anvil_screen_pocket.json", "type": "panel", "children": [ "inventory_content" ] }, "inventory_and_anvil_panel/inventory_half_screen/inventory_content": { "file": "ui/anvil_screen_pocket.json", "type": "panel", "extend": { "name": "inventory_content", "namespace": "anvil_pocket" } }, "inventory_and_anvil_panel/anvil_half_screen": { "file": "ui/anvil_screen_pocket.json", "type": "panel", "children": [ "anvil_contents_panel" ] }, "inventory_and_anvil_panel/anvil_half_screen/anvil_contents_panel": { "file": "ui/anvil_screen_pocket.json", "type": "panel", "extend": { "name": "anvil_contents_panel", "namespace": "anvil_pocket" } }, "header": { "file": "ui/anvil_screen_pocket.json", "type": "panel", "children": [ "header_background", "legacy_pocket_close_button", "panel" ] }, "header/header_background": { "file": "ui/anvil_screen_pocket.json", "type": "image" }, "header/legacy_pocket_close_button": { "file": "ui/anvil_screen_pocket.json", "type": "button", "extend": { "name": "legacy_pocket_close_button", "namespace": "common" } }, "header/panel": { "file": "ui/anvil_screen_pocket.json", "type": "panel", "children": [ "title_label" ] }, "header/panel/title_label": { "file": "ui/anvil_screen_pocket.json", "type": "label", "extend": { "name": "generic_label", "namespace": "anvil_pocket" } }, "header_and_content_stack_panel": { "file": "ui/anvil_screen_pocket.json", "type": "stack_panel", "children": [ "header", "inventory_and_anvil_panel" ] }, "header_and_content_stack_panel/header": { "file": "ui/anvil_screen_pocket.json", "type": "panel", "extend": { "name": "header", "namespace": "anvil_pocket" } }, "header_and_content_stack_panel/inventory_and_anvil_panel": { "file": "ui/anvil_screen_pocket.json", "type": "panel", "extend": { "name": "inventory_and_anvil_panel", "namespace": "anvil_pocket" } }, "anvil_panel": { "file": "ui/anvil_screen_pocket.json", "type": "panel", "children": [ "bg", "root_panel", "header_and_content_stack_panel", "container_gamepad_helpers", "inventory_selected_icon_button", "hold_icon", "selected_item_details_factory", "item_lock_notification_factory", "flying_item_renderer" ] }, "anvil_panel/bg": { "file": "ui/anvil_screen_pocket.json", "type": "image", "extend": { "name": "background_image", "namespace": "anvil_pocket" } }, "anvil_panel/root_panel": { "file": "ui/anvil_screen_pocket.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" } }, "anvil_panel/header_and_content_stack_panel": { "file": "ui/anvil_screen_pocket.json", "type": "stack_panel", "extend": { "name": "header_and_content_stack_panel", "namespace": "anvil_pocket" } }, "anvil_panel/container_gamepad_helpers": { "file": "ui/anvil_screen_pocket.json", "type": "stack_panel", "extend": { "name": "container_gamepad_helpers", "namespace": "common" } }, "anvil_panel/inventory_selected_icon_button": { "file": "ui/anvil_screen_pocket.json", "type": "button", "extend": { "name": "inventory_selected_icon_button", "namespace": "common" } }, "anvil_panel/hold_icon": { "file": "ui/anvil_screen_pocket.json", "type": "button", "extend": { "name": "inventory_take_progress_icon_button", "namespace": "common" } }, "anvil_panel/selected_item_details_factory": { "file": "ui/anvil_screen_pocket.json", "type": "factory", "extend": { "name": "selected_item_details_factory", "namespace": "common" } }, "anvil_panel/item_lock_notification_factory": { "file": "ui/anvil_screen_pocket.json", "type": "factory", "extend": { "name": "item_lock_notification_factory", "namespace": "common" } }, "anvil_panel/flying_item_renderer": { "file": "ui/anvil_screen_pocket.json", "type": "custom", "extend": { "name": "flying_item_renderer", "namespace": "common" } } }, "authentication_modals": { "modal_dialog_label": { "file": "ui/authentication_modals.json", "type": "label" }, "modal_dialog_content": { "file": "ui/authentication_modals.json", "type": "stack_panel", "children": [ "body_text", "button_wrapper" ] }, "modal_dialog_content/body_text": { "file": "ui/authentication_modals.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "modal_dialog_content/button_wrapper": { "file": "ui/authentication_modals.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "buttons" ] }, "modal_dialog_content/button_wrapper/buttons": { "file": "ui/authentication_modals.json", "type": "stack_panel", "children": [ "left", "padding", "right" ] }, "modal_dialog_content/button_wrapper/buttons/left": { "file": "ui/authentication_modals.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "modal_dialog_content/button_wrapper/buttons/padding": { "file": "ui/authentication_modals.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "modal_dialog_content/button_wrapper/buttons/right": { "file": "ui/authentication_modals.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "modal_dialog_frame": { "file": "ui/authentication_modals.json", "type": "image", "extend": { "name": "dialog_background_hollow_3", "namespace": "common" }, "children": [ "title", "close", "black_tint_image" ] }, "modal_dialog_frame/title": { "file": "ui/authentication_modals.json", "type": "label", "extend": { "name": "modal_title_text", "namespace": "popup_dialog" } }, "modal_dialog_frame/close": { "file": "ui/authentication_modals.json", "type": "button", "extend": { "name": "close_button", "namespace": "common" } }, "modal_dialog_frame/black_tint_image": { "file": "ui/authentication_modals.json", "type": "image", "extend": { "name": "black_tint_image", "namespace": "popup_dialog" }, "children": [ "content" ] }, "modal_dialog_frame/black_tint_image/content": { "file": "ui/authentication_modals.json", "type": "unknown" }, "ad_modal_dialog": { "file": "ui/authentication_modals.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } } }, "authentication": { "nothing": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "tts_control": { "file": "ui/authentication_screen.json", "type": "button", "extend": { "name": "non_interact_focus_border_button", "namespace": "common" } }, "split_button_panel": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "buttons" ] }, "split_button_panel/buttons": { "file": "ui/authentication_screen.json", "type": "stack_panel", "children": [ "a", "paddding", "b" ] }, "split_button_panel/buttons/a": { "file": "ui/authentication_screen.json", "type": "unknown" }, "split_button_panel/buttons/paddding": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "split_button_panel/buttons/b": { "file": "ui/authentication_screen.json", "type": "unknown" }, "vertical_split_button_panel": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "split_button_panel", "namespace": "authentication" } }, "fixed_width_wrapper": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "content" ] }, "fixed_width_wrapper/content": { "file": "ui/authentication_screen.json", "type": "unknown" }, "sign_in_button": { "file": "ui/authentication_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "download_button": { "file": "ui/authentication_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "smooth_label": { "file": "ui/authentication_screen.json", "type": "label" }, "smooth_bound_label": { "file": "ui/authentication_screen.json", "type": "label", "extend": { "name": "smooth_label", "namespace": "authentication" } }, "title_label": { "file": "ui/authentication_screen.json", "type": "label", "extend": { "name": "smooth_bound_label", "namespace": "authentication" } }, "eula_hyperlink": { "file": "ui/authentication_screen.json", "type": "button", "extend": { "name": "hyperlink_button", "namespace": "common_buttons" } }, "accept_eula_button": { "file": "ui/authentication_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "eula_content": { "file": "ui/authentication_screen.json", "type": "stack_panel", "children": [ "prompt_wrapper", "padding", "buttons" ] }, "eula_content/prompt_wrapper": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "border", "prompt_text" ] }, "eula_content/prompt_wrapper/border": { "file": "ui/authentication_screen.json", "type": "button", "extend": { "name": "tts_control", "namespace": "authentication" } }, "eula_content/prompt_wrapper/prompt_text": { "file": "ui/authentication_screen.json", "type": "label", "extend": { "name": "smooth_label", "namespace": "authentication" } }, "eula_content/padding": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "eula_content/buttons": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "split_button_panel", "namespace": "authentication" } }, "eula": { "file": "ui/authentication_screen.json", "type": "image", "extend": { "name": "modal_dialog_frame", "namespace": "authentication_modals" } }, "version": { "file": "ui/authentication_screen.json", "type": "panel", "children": [ "label", "label_background" ] }, "version/label": { "file": "ui/authentication_screen.json", "type": "label" }, "version/label_background": { "file": "ui/authentication_screen.json", "type": "image" }, "view_terms_button": { "file": "ui/authentication_screen.json", "type": "button", "extend": { "name": "hyperlink_button", "namespace": "common_buttons" } }, "privacy_policy_button": { "file": "ui/authentication_screen.json", "type": "button", "extend": { "name": "hyperlink_button", "namespace": "common_buttons" } }, "agree_panel": { "file": "ui/authentication_screen.json", "type": "panel", "children": [ "checkbox_control", "i_agree_label" ] }, "agree_panel/checkbox_control": { "file": "ui/authentication_screen.json", "type": "toggle", "extend": { "name": "checkbox", "namespace": "common" } }, "agree_panel/i_agree_label": { "file": "ui/authentication_screen.json", "type": "label" }, "term_item": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "item" ] }, "term_item/item": { "file": "ui/authentication_screen.json", "type": "unknown" }, "terms_and_conditions_panel": { "file": "ui/authentication_screen.json", "type": "panel", "children": [ "terms_string_panel" ] }, "terms_and_conditions_panel/terms_string_panel": { "file": "ui/authentication_screen.json", "type": "panel", "children": [ "buttons_stack_panel" ] }, "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": { "file": "ui/authentication_screen.json", "type": "stack_panel", "children": [ "agree", "view_terms_button", "privacy_policy_button" ] }, "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "agree_panel", "namespace": "authentication" } }, "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "term_item", "namespace": "authentication" } }, "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "term_item", "namespace": "authentication" } }, "confirmation_panel": { "file": "ui/authentication_screen.json", "type": "panel", "children": [ "confirm_button" ] }, "confirmation_panel/confirm_button": { "file": "ui/authentication_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "scroll_stack_panel": { "file": "ui/authentication_screen.json", "type": "panel", "children": [ "border", "terms" ] }, "scroll_stack_panel/border": { "file": "ui/authentication_screen.json", "type": "button", "extend": { "name": "tts_control", "namespace": "authentication" } }, "scroll_stack_panel/terms": { "file": "ui/authentication_screen.json", "type": "label", "extend": { "name": "smooth_bound_label", "namespace": "authentication" } }, "purchase_confirm_content": { "file": "ui/authentication_screen.json", "type": "stack_panel", "children": [ "header_padding", "panel_wrap", "terms_and_conditions_panel", "button_padding", "confirmation_panel", "padding" ] }, "purchase_confirm_content/header_padding": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "purchase_confirm_content/panel_wrap": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "scrolling_panel" ] }, "purchase_confirm_content/panel_wrap/scrolling_panel": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "purchase_confirm_content/terms_and_conditions_panel": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "terms_and_conditions_panel", "namespace": "authentication" } }, "purchase_confirm_content/button_padding": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "purchase_confirm_content/confirmation_panel": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "confirmation_panel", "namespace": "authentication" } }, "purchase_confirm_content/padding": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "purchase_prompt_content": { "file": "ui/authentication_screen.json", "type": "stack_panel", "children": [ "prompt_wrap", "purchase_wrap_centering_container" ] }, "purchase_prompt_content/prompt_wrap": { "file": "ui/authentication_screen.json", "type": "panel", "children": [ "border", "prompt" ] }, "purchase_prompt_content/prompt_wrap/border": { "file": "ui/authentication_screen.json", "type": "button", "extend": { "name": "tts_control", "namespace": "authentication" } }, "purchase_prompt_content/prompt_wrap/prompt": { "file": "ui/authentication_screen.json", "type": "label", "extend": { "name": "smooth_label", "namespace": "authentication" } }, "purchase_prompt_content/purchase_wrap_centering_container": { "file": "ui/authentication_screen.json", "type": "panel", "children": [ "purchase_wrap" ] }, "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap": { "file": "ui/authentication_screen.json", "type": "stack_panel", "children": [ "purchase", "padding_middle", "signout" ] }, "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/purchase": { "file": "ui/authentication_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/padding_middle": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "purchase_prompt_content/purchase_wrap_centering_container/purchase_wrap/signout": { "file": "ui/authentication_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "purchase_prompt": { "file": "ui/authentication_screen.json", "type": "image", "extend": { "name": "modal_dialog_frame", "namespace": "authentication_modals" } }, "purchase_confirm": { "file": "ui/authentication_screen.json", "type": "image", "extend": { "name": "modal_dialog_frame", "namespace": "authentication_modals" } }, "purchase_panel": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "prompt", "confirm" ] }, "purchase_panel/prompt": { "file": "ui/authentication_screen.json", "type": "image", "extend": { "name": "purchase_prompt", "namespace": "authentication" } }, "purchase_panel/confirm": { "file": "ui/authentication_screen.json", "type": "image", "extend": { "name": "purchase_confirm", "namespace": "authentication" } }, "title_panel": { "file": "ui/authentication_screen.json", "type": "panel", "children": [ "title_label_wrapper" ] }, "title_panel/title_label_wrapper": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "hyperlink_panel": { "file": "ui/authentication_screen.json", "type": "panel", "children": [ "link_stack" ] }, "hyperlink_panel/link_stack": { "file": "ui/authentication_screen.json", "type": "stack_panel", "children": [ "link1", "link2", "padding" ] }, "hyperlink_panel/link_stack/link1": { "file": "ui/authentication_screen.json", "type": "button", "extend": { "name": "underline_button", "namespace": "edu_common" } }, "hyperlink_panel/link_stack/link2": { "file": "ui/authentication_screen.json", "type": "button", "extend": { "name": "underline_button", "namespace": "edu_common" } }, "hyperlink_panel/link_stack/padding": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "auth_screen": { "file": "ui/authentication_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "sign_in_content": { "file": "ui/authentication_screen.json", "type": "stack_panel", "children": [ "body_text", "body_hyperlink", "sign_in_wrapper", "download_wrapper" ] }, "sign_in_content/body_text": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "title_panel", "namespace": "authentication" } }, "sign_in_content/body_hyperlink": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "hyperlink_panel", "namespace": "authentication" } }, "sign_in_content/sign_in_wrapper": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "button" ] }, "sign_in_content/sign_in_wrapper/button": { "file": "ui/authentication_screen.json", "type": "button", "extend": { "name": "sign_in_button", "namespace": "authentication" } }, "sign_in_content/download_wrapper": { "file": "ui/authentication_screen.json", "type": "panel", "children": [ "button" ] }, "sign_in_content/download_wrapper/button": { "file": "ui/authentication_screen.json", "type": "button", "extend": { "name": "download_button", "namespace": "authentication" } }, "authentication_screen_content": { "file": "ui/authentication_screen.json", "type": "panel", "children": [ "debug", "client_version", "sign_in", "sign_in_ios", "pack_progress", "welcome", "demo", "eula", "purchase_panel", "popup_dialog_factory" ] }, "authentication_screen_content/debug": { "file": "ui/authentication_screen.json", "type": "stack_panel", "extend": { "name": "debug_panel", "namespace": "authentication" } }, "authentication_screen_content/client_version": { "file": "ui/authentication_screen.json", "type": "panel", "children": [ "version" ] }, "authentication_screen_content/client_version/version": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "version", "namespace": "authentication" } }, "authentication_screen_content/sign_in": { "file": "ui/authentication_screen.json", "type": "image", "extend": { "name": "modal_dialog_frame", "namespace": "authentication_modals" } }, "authentication_screen_content/sign_in_ios": { "file": "ui/authentication_screen.json", "type": "image", "extend": { "name": "modal_dialog_frame", "namespace": "authentication_modals" } }, "authentication_screen_content/pack_progress": { "file": "ui/authentication_screen.json", "type": "image", "extend": { "name": "modal_dialog_frame", "namespace": "authentication_modals" } }, "authentication_screen_content/welcome": { "file": "ui/authentication_screen.json", "type": "unknown", "extend": { "name": "screen_content", "namespace": "edu_signin" } }, "authentication_screen_content/demo": { "file": "ui/authentication_screen.json", "type": "unknown", "extend": { "name": "screen_content", "namespace": "edu_signin" } }, "authentication_screen_content/eula": { "file": "ui/authentication_screen.json", "type": "image", "extend": { "name": "eula", "namespace": "authentication" } }, "authentication_screen_content/purchase_panel": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "purchase_panel", "namespace": "authentication" } }, "authentication_screen_content/popup_dialog_factory": { "file": "ui/authentication_screen.json", "type": "factory" }, "popup_content_base": { "file": "ui/authentication_screen.json", "type": "stack_panel", "children": [ "message", "content", "footer_padding" ] }, "popup_content_base/message": { "file": "ui/authentication_screen.json", "type": "panel", "children": [ "border", "text" ] }, "popup_content_base/message/border": { "file": "ui/authentication_screen.json", "type": "button", "extend": { "name": "tts_control", "namespace": "authentication" } }, "popup_content_base/message/text": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "fixed_width_wrapper", "namespace": "authentication" } }, "popup_content_base/content": { "file": "ui/authentication_screen.json", "type": "unknown" }, "popup_content_base/footer_padding": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "popup_dialog": { "file": "ui/authentication_screen.json", "type": "input_panel", "children": [ "dialog" ] }, "popup_dialog/dialog": { "file": "ui/authentication_screen.json", "type": "image", "extend": { "name": "modal_dialog_frame", "namespace": "authentication_modals" } }, "trial_info_ios_additional_content": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "dismiss" ] }, "trial_info_ios_additional_content/dismiss": { "file": "ui/authentication_screen.json", "type": "button", "extend": { "name": "popup_dismiss_button", "namespace": "authentication" } }, "popup_dialog_trial_info_ios": { "file": "ui/authentication_screen.json", "type": "input_panel", "extend": { "name": "popup_dialog", "namespace": "authentication" } }, "student_message_panel": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "fixed_width_wrapper", "namespace": "authentication" } }, "trial_info_additional_content": { "file": "ui/authentication_screen.json", "type": "stack_panel", "children": [ "buttons" ] }, "trial_info_additional_content/buttons": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "split_button_panel", "namespace": "authentication" } }, "generic_welcome_additional_content": { "file": "ui/authentication_screen.json", "type": "stack_panel", "children": [ "button_wrapper" ] }, "generic_welcome_additional_content/button_wrapper": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "buttons" ] }, "generic_welcome_additional_content/button_wrapper/buttons": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "vertical_split_button_panel", "namespace": "authentication" } }, "popup_dialog_trial_info": { "file": "ui/authentication_screen.json", "type": "input_panel", "extend": { "name": "popup_dialog", "namespace": "authentication" } }, "popup_dialog_generic_welcome": { "file": "ui/authentication_screen.json", "type": "input_panel", "extend": { "name": "popup_dialog", "namespace": "authentication" } }, "popup_message": { "file": "ui/authentication_screen.json", "type": "stack_panel", "children": [ "main_message", "extra_message", "padding" ] }, "popup_message/main_message": { "file": "ui/authentication_screen.json", "type": "label", "extend": { "name": "smooth_bound_label", "namespace": "authentication" } }, "popup_message/extra_message": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "student_message_panel", "namespace": "authentication" } }, "popup_message/padding": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "popup_message_student": { "file": "ui/authentication_screen.json", "type": "label", "extend": { "name": "smooth_label", "namespace": "authentication" } }, "popup_hyperlink": { "file": "ui/authentication_screen.json", "type": "button", "extend": { "name": "hyperlink_button", "namespace": "common_buttons" } }, "popup_purchase_link": { "file": "ui/authentication_screen.json", "type": "button", "extend": { "name": "popup_hyperlink", "namespace": "authentication" } }, "popup_dismiss_button": { "file": "ui/authentication_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "pack_progress_content": { "file": "ui/authentication_screen.json", "type": "stack_panel", "children": [ "top_padding", "loading_text_panel", "loading_bar_panel", "loading_padding", "skip_panel", "bottom_padding" ] }, "pack_progress_content/top_padding": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "pack_progress_content/loading_text_panel": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "vertical_stack_item", "namespace": "edu_common" }, "children": [ "loading_text" ] }, "pack_progress_content/loading_text_panel/loading_text": { "file": "ui/authentication_screen.json", "type": "label" }, "pack_progress_content/loading_bar_panel": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "vertical_stack_item", "namespace": "edu_common" }, "children": [ "loading_bar" ] }, "pack_progress_content/loading_bar_panel/loading_bar": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "progress_bar_icon", "namespace": "popup_dialog" } }, "pack_progress_content/loading_padding": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "pack_progress_content/skip_panel": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "vertical_stack_item", "namespace": "edu_common" }, "children": [ "skip_button" ] }, "pack_progress_content/skip_panel/skip_button": { "file": "ui/authentication_screen.json", "type": "button", "extend": { "name": "light_text_form_fitting_button", "namespace": "common_buttons" } }, "pack_progress_content/bottom_padding": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "sign_in_ios_content": { "file": "ui/authentication_screen.json", "type": "stack_panel", "children": [ "body_text", "body_hyperlink", "signin_ios_button_panel", "error_sign_in_panel", "error_download_panel" ] }, "sign_in_ios_content/body_text": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "title_panel", "namespace": "authentication" } }, "sign_in_ios_content/body_hyperlink": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "hyperlink_panel", "namespace": "authentication" } }, "sign_in_ios_content/signin_ios_button_panel": { "file": "ui/authentication_screen.json", "type": "stack_panel", "children": [ "app_store_prompt_wrap", "buttons", "pad_footer" ] }, "sign_in_ios_content/signin_ios_button_panel/app_store_prompt_wrap": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "prompt" ] }, "sign_in_ios_content/signin_ios_button_panel/app_store_prompt_wrap/prompt": { "file": "ui/authentication_screen.json", "type": "label", "extend": { "name": "smooth_label", "namespace": "authentication" } }, "sign_in_ios_content/signin_ios_button_panel/buttons": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "split_button_panel", "namespace": "authentication" } }, "sign_in_ios_content/signin_ios_button_panel/pad_footer": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "sign_in_ios_content/error_sign_in_panel": { "file": "ui/authentication_screen.json", "type": "panel", "children": [ "button" ] }, "sign_in_ios_content/error_sign_in_panel/button": { "file": "ui/authentication_screen.json", "type": "button", "extend": { "name": "sign_in_button", "namespace": "authentication" } }, "sign_in_ios_content/error_download_panel": { "file": "ui/authentication_screen.json", "type": "panel", "children": [ "button" ] }, "sign_in_ios_content/error_download_panel/button": { "file": "ui/authentication_screen.json", "type": "button", "extend": { "name": "download_button", "namespace": "authentication" } }, "sign_in_ios_button": { "file": "ui/authentication_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "to_app_store": { "file": "ui/authentication_screen.json", "type": "button", "extend": { "name": "hyperlink_button", "namespace": "common_buttons" } }, "debug_panel": { "file": "ui/authentication_screen.json", "type": "stack_panel", "children": [ "state_label", "state_text_box", "open_popup", "refresh_popup", "reset", "toggle_ios" ] }, "debug_panel/state_label": { "file": "ui/authentication_screen.json", "type": "label" }, "debug_panel/state_text_box": { "file": "ui/authentication_screen.json", "type": "edit_box", "extend": { "name": "text_edit_box", "namespace": "common" } }, "debug_panel/open_popup": { "file": "ui/authentication_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "debug_panel/refresh_popup": { "file": "ui/authentication_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "debug_panel/reset": { "file": "ui/authentication_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "debug_panel/toggle_ios": { "file": "ui/authentication_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "authentication_popup_link_button": { "file": "ui/authentication_screen.json", "type": "stack_panel", "children": [ "top_padding", "link_button" ] }, "authentication_popup_link_button/top_padding": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "authentication_popup_link_button/link_button": { "file": "ui/authentication_screen.json", "type": "button", "extend": { "name": "underline_button", "namespace": "edu_common" } }, "authentication_popup_contents": { "file": "ui/authentication_screen.json", "type": "stack_panel", "children": [ "initial_padding", "body", "learn_more_link", "link2", "end_padding" ] }, "authentication_popup_contents/initial_padding": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "authentication_popup_contents/body": { "file": "ui/authentication_screen.json", "type": "label", "extend": { "name": "smooth_bound_label", "namespace": "authentication" } }, "authentication_popup_contents/learn_more_link": { "file": "ui/authentication_screen.json", "type": "stack_panel", "extend": { "name": "authentication_popup_link_button", "namespace": "authentication" } }, "authentication_popup_contents/link2": { "file": "ui/authentication_screen.json", "type": "stack_panel", "extend": { "name": "authentication_popup_link_button", "namespace": "authentication" } }, "authentication_popup_contents/end_padding": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "resizeable_scrolling_panel": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "authentication_popup_content_panel": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "resizeable_scrolling_panel", "namespace": "authentication" } }, "authentication_popup_button": { "file": "ui/authentication_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "authentication_popup_one_button": { "file": "ui/authentication_screen.json", "type": "panel", "children": [ "button" ] }, "authentication_popup_one_button/button": { "file": "ui/authentication_screen.json", "type": "button", "extend": { "name": "authentication_popup_button", "namespace": "authentication" } }, "authentication_popup_two_buttons": { "file": "ui/authentication_screen.json", "type": "stack_panel", "children": [ "first_button", "button_padding", "second_button" ] }, "authentication_popup_two_buttons/first_button": { "file": "ui/authentication_screen.json", "type": "button", "extend": { "name": "authentication_popup_button", "namespace": "authentication" } }, "authentication_popup_two_buttons/button_padding": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "authentication_popup_two_buttons/second_button": { "file": "ui/authentication_screen.json", "type": "button", "extend": { "name": "authentication_popup_button", "namespace": "authentication" } }, "authentication_popup_lower_button_panel": { "file": "ui/authentication_screen.json", "type": "panel", "children": [ "one_button", "two_buttons" ] }, "authentication_popup_lower_button_panel/one_button": { "file": "ui/authentication_screen.json", "type": "panel", "extend": { "name": "authentication_popup_one_button", "namespace": "authentication" } }, "authentication_popup_lower_button_panel/two_buttons": { "file": "ui/authentication_screen.json", "type": "stack_panel", "extend": { "name": "authentication_popup_two_buttons", "namespace": "authentication" } }, "authentication_popup": { "file": "ui/authentication_screen.json", "type": "input_panel", "extend": { "name": "form_fit_modal_dialog_popup", "namespace": "popup_dialog" } } }, "auto_save_info": { "auto_save": { "file": "ui/auto_save_info_screen.json", "type": "image" }, "accept_label": { "file": "ui/auto_save_info_screen.json", "type": "panel", "children": [ "button_label" ] }, "accept_label/button_label": { "file": "ui/auto_save_info_screen.json", "type": "label" }, "accept_button": { "file": "ui/auto_save_info_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "main_panel": { "file": "ui/auto_save_info_screen.json", "type": "input_panel", "children": [ "common_panel", "title_label", "message_label", "save_icon", "a", "gamepad_helpers" ] }, "main_panel/common_panel": { "file": "ui/auto_save_info_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "main_panel/title_label": { "file": "ui/auto_save_info_screen.json", "type": "label" }, "main_panel/message_label": { "file": "ui/auto_save_info_screen.json", "type": "label" }, "main_panel/save_icon": { "file": "ui/auto_save_info_screen.json", "type": "image", "extend": { "name": "auto_save", "namespace": "auto_save_info" } }, "main_panel/a": { "file": "ui/auto_save_info_screen.json", "type": "button", "extend": { "name": "accept_button", "namespace": "auto_save_info" } }, "main_panel/gamepad_helpers": { "file": "ui/auto_save_info_screen.json", "type": "panel", "extend": { "name": "gamepad_helpers", "namespace": "auto_save_info" } }, "gamepad_helpers": { "file": "ui/auto_save_info_screen.json", "type": "panel", "children": [ "gamepad_helper_a" ] }, "gamepad_helpers/gamepad_helper_a": { "file": "ui/auto_save_info_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_a", "namespace": "common" } }, "auto_save_info_screen": { "file": "ui/auto_save_info_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "auto_save_info_screen_content": { "file": "ui/auto_save_info_screen.json", "type": "panel", "children": [ "root_panel" ] }, "auto_save_info_screen_content/root_panel": { "file": "ui/auto_save_info_screen.json", "type": "panel", "children": [ "main_panel" ] }, "auto_save_info_screen_content/root_panel/main_panel": { "file": "ui/auto_save_info_screen.json", "type": "input_panel", "extend": { "name": "main_panel", "namespace": "auto_save_info" } } }, "beacon": { "selected_item_details": { "file": "ui/beacon_screen.json", "type": "panel", "extend": { "name": "selected_item_details", "namespace": "common" } }, "beacon_panel": { "file": "ui/beacon_screen.json", "type": "panel", "children": [ "container_gamepad_helpers", "selected_item_details_factory", "item_lock_notification_factory", "root_panel", "flying_item_renderer" ] }, "beacon_panel/container_gamepad_helpers": { "file": "ui/beacon_screen.json", "type": "stack_panel", "extend": { "name": "container_gamepad_helpers", "namespace": "common" } }, "beacon_panel/selected_item_details_factory": { "file": "ui/beacon_screen.json", "type": "factory", "extend": { "name": "selected_item_details_factory", "namespace": "common" } }, "beacon_panel/item_lock_notification_factory": { "file": "ui/beacon_screen.json", "type": "factory", "extend": { "name": "item_lock_notification_factory", "namespace": "common" } }, "beacon_panel/root_panel": { "file": "ui/beacon_screen.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "common_panel", "beacon_inventory" ] }, "beacon_panel/root_panel/common_panel": { "file": "ui/beacon_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "beacon_panel/root_panel/beacon_inventory": { "file": "ui/beacon_screen.json", "type": "panel", "children": [ "beacon_inner_panel", "payment_panel", "inventory_panel_bottom_half", "hotbar_grid_template", "inventory_selected_icon_button", "gamepad_cursor" ] }, "beacon_panel/root_panel/beacon_inventory/beacon_inner_panel": { "file": "ui/beacon_screen.json", "type": "image", "extend": { "name": "beacon_inner_panel", "namespace": "beacon" } }, "beacon_panel/root_panel/beacon_inventory/payment_panel": { "file": "ui/beacon_screen.json", "type": "panel", "extend": { "name": "payment_panel", "namespace": "beacon" } }, "beacon_panel/root_panel/beacon_inventory/inventory_panel_bottom_half": { "file": "ui/beacon_screen.json", "type": "panel", "extend": { "name": "inventory_panel_bottom_half", "namespace": "common" } }, "beacon_panel/root_panel/beacon_inventory/hotbar_grid_template": { "file": "ui/beacon_screen.json", "type": "grid", "extend": { "name": "hotbar_grid_template", "namespace": "common" } }, "beacon_panel/root_panel/beacon_inventory/inventory_selected_icon_button": { "file": "ui/beacon_screen.json", "type": "button", "extend": { "name": "inventory_selected_icon_button", "namespace": "common" } }, "beacon_panel/root_panel/beacon_inventory/gamepad_cursor": { "file": "ui/beacon_screen.json", "type": "button", "extend": { "name": "gamepad_cursor_button", "namespace": "common" } }, "beacon_panel/flying_item_renderer": { "file": "ui/beacon_screen.json", "type": "custom", "extend": { "name": "flying_item_renderer", "namespace": "common" } }, "inventory_slot_button": { "file": "ui/beacon_screen.json", "type": "button", "extend": { "name": "container_slot_button_prototype", "namespace": "common" } }, "hotbar_slot_button": { "file": "ui/beacon_screen.json", "type": "button", "extend": { "name": "container_slot_button_prototype", "namespace": "common" } }, "image_atlas": { "file": "ui/beacon_screen.json", "type": "image" }, "pyramid_image": { "file": "ui/beacon_screen.json", "type": "image", "extend": { "name": "image_atlas", "namespace": "beacon" } }, "pyramid_panel": { "file": "ui/beacon_screen.json", "type": "panel", "children": [ "level1", "level2", "level3", "level4" ] }, "pyramid_panel/level1": { "file": "ui/beacon_screen.json", "type": "image", "extend": { "name": "pyramid_image", "namespace": "beacon" } }, "pyramid_panel/level2": { "file": "ui/beacon_screen.json", "type": "image", "extend": { "name": "pyramid_image", "namespace": "beacon" } }, "pyramid_panel/level3": { "file": "ui/beacon_screen.json", "type": "image", "extend": { "name": "pyramid_image", "namespace": "beacon" } }, "pyramid_panel/level4": { "file": "ui/beacon_screen.json", "type": "image", "extend": { "name": "pyramid_image", "namespace": "beacon" } }, "item_seperator": { "file": "ui/beacon_screen.json", "type": "image", "extend": { "name": "image_atlas", "namespace": "beacon" } }, "item_renderer": { "file": "ui/beacon_screen.json", "type": "custom" }, "usable_items_panel": { "file": "ui/beacon_screen.json", "type": "panel", "children": [ "netherite", "item_seperator_0", "emerald", "item_seperator_1", "diamond", "item_seperator_2", "gold", "item_seperator_3", "iron" ] }, "usable_items_panel/netherite": { "file": "ui/beacon_screen.json", "type": "custom", "extend": { "name": "item_renderer", "namespace": "beacon" } }, "usable_items_panel/item_seperator_0": { "file": "ui/beacon_screen.json", "type": "image", "extend": { "name": "item_seperator", "namespace": "beacon" } }, "usable_items_panel/emerald": { "file": "ui/beacon_screen.json", "type": "custom", "extend": { "name": "item_renderer", "namespace": "beacon" } }, "usable_items_panel/item_seperator_1": { "file": "ui/beacon_screen.json", "type": "image", "extend": { "name": "item_seperator", "namespace": "beacon" } }, "usable_items_panel/diamond": { "file": "ui/beacon_screen.json", "type": "custom", "extend": { "name": "item_renderer", "namespace": "beacon" } }, "usable_items_panel/item_seperator_2": { "file": "ui/beacon_screen.json", "type": "image", "extend": { "name": "item_seperator", "namespace": "beacon" } }, "usable_items_panel/gold": { "file": "ui/beacon_screen.json", "type": "custom", "extend": { "name": "item_renderer", "namespace": "beacon" } }, "usable_items_panel/item_seperator_3": { "file": "ui/beacon_screen.json", "type": "image", "extend": { "name": "item_seperator", "namespace": "beacon" } }, "usable_items_panel/iron": { "file": "ui/beacon_screen.json", "type": "custom", "extend": { "name": "item_renderer", "namespace": "beacon" } }, "base_image": { "file": "ui/beacon_screen.json", "type": "image", "extend": { "name": "image_atlas", "namespace": "beacon" } }, "hover_text": { "file": "ui/beacon_screen.json", "type": "custom", "extend": { "name": "hover_text", "namespace": "common" } }, "hover_state": { "file": "ui/beacon_screen.json", "type": "image", "children": [ "hover_text" ] }, "hover_state/hover_text": { "file": "ui/beacon_screen.json", "type": "custom", "extend": { "name": "hover_text", "namespace": "beacon" } }, "button_unchecked_default": { "file": "ui/beacon_screen.json", "type": "image", "extend": { "name": "image_atlas", "namespace": "beacon" } }, "button_unchecked_hover": { "file": "ui/beacon_screen.json", "type": "image", "extend": { "name": "image_atlas", "namespace": "beacon" }, "children": [ "hover_text" ] }, "button_unchecked_hover/hover_text": { "file": "ui/beacon_screen.json", "type": "custom", "extend": { "name": "hover_text", "namespace": "beacon" } }, "button_checked_hover": { "file": "ui/beacon_screen.json", "type": "image", "extend": { "name": "image_atlas", "namespace": "beacon" }, "children": [ "hover_text" ] }, "button_checked_hover/hover_text": { "file": "ui/beacon_screen.json", "type": "custom", "extend": { "name": "hover_text", "namespace": "beacon" } }, "button_locked": { "file": "ui/beacon_screen.json", "type": "image", "extend": { "name": "image_atlas", "namespace": "beacon" } }, "button_locked_hover": { "file": "ui/beacon_screen.json", "type": "image", "extend": { "name": "image_atlas", "namespace": "beacon" }, "children": [ "hover_text" ] }, "button_locked_hover/hover_text": { "file": "ui/beacon_screen.json", "type": "custom", "extend": { "name": "hover_text", "namespace": "beacon" } }, "button_checked": { "file": "ui/beacon_screen.json", "type": "image", "extend": { "name": "image_atlas", "namespace": "beacon" } }, "toggle_button": { "file": "ui/beacon_screen.json", "type": "toggle", "extend": { "name": "toggle", "namespace": "common" } }, "base_button": { "file": "ui/beacon_screen.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed" ] }, "base_button/default": { "file": "ui/beacon_screen.json", "type": "image" }, "base_button/hover": { "file": "ui/beacon_screen.json", "type": "image" }, "base_button/pressed": { "file": "ui/beacon_screen.json", "type": "image" }, "active_button": { "file": "ui/beacon_screen.json", "type": "button", "extend": { "name": "base_button", "namespace": "beacon" } }, "inactive_button": { "file": "ui/beacon_screen.json", "type": "button", "extend": { "name": "base_button", "namespace": "beacon" }, "children": [ "default", "hover" ] }, "inactive_button/default": { "file": "ui/beacon_screen.json", "type": "image" }, "inactive_button/hover": { "file": "ui/beacon_screen.json", "type": "image", "extend": { "name": "hover_state", "namespace": "beacon" } }, "selected_button": { "file": "ui/beacon_screen.json", "type": "button", "extend": { "name": "base_button", "namespace": "beacon" }, "children": [ "default", "hover" ] }, "selected_button/default": { "file": "ui/beacon_screen.json", "type": "image" }, "selected_button/hover": { "file": "ui/beacon_screen.json", "type": "image" }, "secondary_effect_base": { "file": "ui/beacon_screen.json", "type": "image", "extend": { "name": "base_image", "namespace": "beacon" } }, "speed_secondary": { "file": "ui/beacon_screen.json", "type": "image", "extend": { "name": "secondary_effect_base", "namespace": "beacon" } }, "haste_secondary": { "file": "ui/beacon_screen.json", "type": "image", "extend": { "name": "secondary_effect_base", "namespace": "beacon" } }, "resist_secondary": { "file": "ui/beacon_screen.json", "type": "image", "extend": { "name": "secondary_effect_base", "namespace": "beacon" } }, "jump_secondary": { "file": "ui/beacon_screen.json", "type": "image", "extend": { "name": "secondary_effect_base", "namespace": "beacon" } }, "strength_secondary": { "file": "ui/beacon_screen.json", "type": "image", "extend": { "name": "secondary_effect_base", "namespace": "beacon" } }, "image_template": { "file": "ui/beacon_screen.json", "type": "panel", "children": [ "base_image" ] }, "image_template/base_image": { "file": "ui/beacon_screen.json", "type": "image", "extend": { "name": "base_image", "namespace": "beacon" } }, "secondary_effect_images": { "file": "ui/beacon_screen.json", "type": "panel", "extend": { "name": "image_template", "namespace": "beacon" }, "children": [ "speed_secondary", "haste_secondary", "resist_secondary", "jump_secondary", "strength_secondary" ] }, "secondary_effect_images/speed_secondary": { "file": "ui/beacon_screen.json", "type": "image", "extend": { "name": "speed_secondary", "namespace": "beacon" } }, "secondary_effect_images/haste_secondary": { "file": "ui/beacon_screen.json", "type": "image", "extend": { "name": "haste_secondary", "namespace": "beacon" } }, "secondary_effect_images/resist_secondary": { "file": "ui/beacon_screen.json", "type": "image", "extend": { "name": "resist_secondary", "namespace": "beacon" } }, "secondary_effect_images/jump_secondary": { "file": "ui/beacon_screen.json", "type": "image", "extend": { "name": "jump_secondary", "namespace": "beacon" } }, "secondary_effect_images/strength_secondary": { "file": "ui/beacon_screen.json", "type": "image", "extend": { "name": "strength_secondary", "namespace": "beacon" } }, "toggle_template": { "file": "ui/beacon_screen.json", "type": "panel", "children": [ "toggle_button" ] }, "toggle_template/toggle_button": { "file": "ui/beacon_screen.json", "type": "toggle", "extend": { "name": "toggle_button", "namespace": "beacon" } }, "button_template": { "file": "ui/beacon_screen.json", "type": "panel", "extend": { "name": "toggle_template", "namespace": "beacon" }, "children": [ "active_button", "inactive_button", "image_template" ] }, "button_template/active_button": { "file": "ui/beacon_screen.json", "type": "button", "extend": { "name": "active_button", "namespace": "beacon" } }, "button_template/inactive_button": { "file": "ui/beacon_screen.json", "type": "button", "extend": { "name": "inactive_button", "namespace": "beacon" } }, "button_template/image_template": { "file": "ui/beacon_screen.json", "type": "panel", "extend": { "name": "image_template", "namespace": "beacon" } }, "panel_template": { "file": "ui/beacon_screen.json", "type": "panel" }, "button_panel": { "file": "ui/beacon_screen.json", "type": "panel", "children": [ "speed_panel", "haste_panel", "resist_panel", "jump_panel", "strength_panel", "regen_panel", "extra_panel" ] }, "button_panel/speed_panel": { "file": "ui/beacon_screen.json", "type": "panel", "extend": { "name": "panel_template", "namespace": "beacon" }, "children": [ "toggle_template" ] }, "button_panel/speed_panel/toggle_template": { "file": "ui/beacon_screen.json", "type": "panel", "extend": { "name": "toggle_template", "namespace": "beacon" } }, "button_panel/haste_panel": { "file": "ui/beacon_screen.json", "type": "panel", "extend": { "name": "panel_template", "namespace": "beacon" } }, "button_panel/resist_panel": { "file": "ui/beacon_screen.json", "type": "panel", "extend": { "name": "panel_template", "namespace": "beacon" } }, "button_panel/jump_panel": { "file": "ui/beacon_screen.json", "type": "panel", "extend": { "name": "panel_template", "namespace": "beacon" } }, "button_panel/strength_panel": { "file": "ui/beacon_screen.json", "type": "panel", "extend": { "name": "panel_template", "namespace": "beacon" } }, "button_panel/regen_panel": { "file": "ui/beacon_screen.json", "type": "panel", "extend": { "name": "panel_template", "namespace": "beacon" } }, "button_panel/extra_panel": { "file": "ui/beacon_screen.json", "type": "panel", "extend": { "name": "panel_template", "namespace": "beacon" } }, "payment_panel": { "file": "ui/beacon_screen.json", "type": "panel", "children": [ "confirm_panel", "cancel_panel", "ingredient_item", "usable_items_panel" ] }, "payment_panel/confirm_panel": { "file": "ui/beacon_screen.json", "type": "panel", "extend": { "name": "panel_template", "namespace": "beacon" } }, "payment_panel/cancel_panel": { "file": "ui/beacon_screen.json", "type": "panel", "extend": { "name": "panel_template", "namespace": "beacon" } }, "payment_panel/ingredient_item": { "file": "ui/beacon_screen.json", "type": "input_panel", "extend": { "name": "container_item", "namespace": "common" } }, "payment_panel/usable_items_panel": { "file": "ui/beacon_screen.json", "type": "panel", "extend": { "name": "usable_items_panel", "namespace": "beacon" } }, "beacon_label": { "file": "ui/beacon_screen.json", "type": "label", "extend": { "name": "section_heading_label", "namespace": "common" } }, "beacon_inner_panel": { "file": "ui/beacon_screen.json", "type": "image", "children": [ "button_panel", "pyramid_panel", "middle_strip", "primary_power_label", "secondary_power_label" ] }, "beacon_inner_panel/button_panel": { "file": "ui/beacon_screen.json", "type": "panel", "extend": { "name": "button_panel", "namespace": "beacon" } }, "beacon_inner_panel/pyramid_panel": { "file": "ui/beacon_screen.json", "type": "panel", "extend": { "name": "pyramid_panel", "namespace": "beacon" } }, "beacon_inner_panel/middle_strip": { "file": "ui/beacon_screen.json", "type": "image", "extend": { "name": "image_atlas", "namespace": "beacon" } }, "beacon_inner_panel/primary_power_label": { "file": "ui/beacon_screen.json", "type": "label", "extend": { "name": "beacon_label", "namespace": "beacon" } }, "beacon_inner_panel/secondary_power_label": { "file": "ui/beacon_screen.json", "type": "label", "extend": { "name": "beacon_label", "namespace": "beacon" } }, "beacon_screen": { "file": "ui/beacon_screen.json", "type": "screen", "extend": { "name": "inventory_screen_common", "namespace": "common" } } }, "beacon_pocket": { "generic_label": { "file": "ui/beacon_screen_pocket.json", "type": "label" }, "panel_outline": { "file": "ui/beacon_screen_pocket.json", "type": "image" }, "dark_bg": { "file": "ui/beacon_screen_pocket.json", "type": "image" }, "background_image": { "file": "ui/beacon_screen_pocket.json", "type": "image" }, "item_seperator": { "file": "ui/beacon_screen_pocket.json", "type": "image" }, "item_renderer": { "file": "ui/beacon_screen_pocket.json", "type": "custom" }, "usable_items_panel": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "children": [ "netherite", "item_seperator_0", "emerald", "item_seperator_1", "diamond", "item_seperator_2", "gold", "item_seperator_3", "iron" ] }, "usable_items_panel/netherite": { "file": "ui/beacon_screen_pocket.json", "type": "custom", "extend": { "name": "item_renderer", "namespace": "beacon_pocket" } }, "usable_items_panel/item_seperator_0": { "file": "ui/beacon_screen_pocket.json", "type": "image", "extend": { "name": "item_seperator", "namespace": "beacon_pocket" } }, "usable_items_panel/emerald": { "file": "ui/beacon_screen_pocket.json", "type": "custom", "extend": { "name": "item_renderer", "namespace": "beacon_pocket" } }, "usable_items_panel/item_seperator_1": { "file": "ui/beacon_screen_pocket.json", "type": "image", "extend": { "name": "item_seperator", "namespace": "beacon_pocket" } }, "usable_items_panel/diamond": { "file": "ui/beacon_screen_pocket.json", "type": "custom", "extend": { "name": "item_renderer", "namespace": "beacon_pocket" } }, "usable_items_panel/item_seperator_2": { "file": "ui/beacon_screen_pocket.json", "type": "image", "extend": { "name": "item_seperator", "namespace": "beacon_pocket" } }, "usable_items_panel/gold": { "file": "ui/beacon_screen_pocket.json", "type": "custom", "extend": { "name": "item_renderer", "namespace": "beacon_pocket" } }, "usable_items_panel/item_seperator_3": { "file": "ui/beacon_screen_pocket.json", "type": "image", "extend": { "name": "item_seperator", "namespace": "beacon_pocket" } }, "usable_items_panel/iron": { "file": "ui/beacon_screen_pocket.json", "type": "custom", "extend": { "name": "item_renderer", "namespace": "beacon_pocket" } }, "pyramid_image": { "file": "ui/beacon_screen_pocket.json", "type": "image" }, "pyramid_panel": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "children": [ "pyramid_image" ] }, "pyramid_panel/pyramid_image": { "file": "ui/beacon_screen_pocket.json", "type": "image", "extend": { "name": "pyramid_image", "namespace": "beacon_pocket" } }, "background_panel": { "file": "ui/beacon_screen_pocket.json", "type": "image" }, "beacon_background": { "file": "ui/beacon_screen_pocket.json", "type": "image", "children": [ "middle_strip" ] }, "beacon_background/middle_strip": { "file": "ui/beacon_screen_pocket.json", "type": "image" }, "inventory_grid": { "file": "ui/beacon_screen_pocket.json", "type": "grid" }, "inventory_content": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "children": [ "scrolling_panel" ] }, "inventory_content/scrolling_panel": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "highlight_hover_square": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "children": [ "highlight_square" ] }, "highlight_hover_square/highlight_square": { "file": "ui/beacon_screen_pocket.json", "type": "image", "extend": { "name": "pocket_ui_highlight_slot", "namespace": "common" } }, "button_unchecked_default": { "file": "ui/beacon_screen_pocket.json", "type": "image" }, "button_unchecked_hover": { "file": "ui/beacon_screen_pocket.json", "type": "image", "children": [ "highlight_hover_square" ] }, "button_unchecked_hover/highlight_hover_square": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "highlight_hover_square", "namespace": "beacon_pocket" } }, "button_checked": { "file": "ui/beacon_screen_pocket.json", "type": "image" }, "button_checked_hover": { "file": "ui/beacon_screen_pocket.json", "type": "image", "extend": { "name": "button_checked", "namespace": "beacon_pocket" }, "children": [ "highlight_hover_square" ] }, "button_checked_hover/highlight_hover_square": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "highlight_hover_square", "namespace": "beacon_pocket" } }, "button_locked": { "file": "ui/beacon_screen_pocket.json", "type": "image", "extend": { "name": "inactive_button_image", "namespace": "beacon_pocket" } }, "button_locked_hover": { "file": "ui/beacon_screen_pocket.json", "type": "image", "extend": { "name": "inactive_button_image", "namespace": "beacon_pocket" }, "children": [ "highlight_hover_square" ] }, "button_locked_hover/highlight_hover_square": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "highlight_hover_square", "namespace": "beacon_pocket" } }, "toggle_button": { "file": "ui/beacon_screen_pocket.json", "type": "toggle", "extend": { "name": "toggle", "namespace": "common" } }, "base_button": { "file": "ui/beacon_screen_pocket.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed" ] }, "base_button/default": { "file": "ui/beacon_screen_pocket.json", "type": "image" }, "base_button/hover": { "file": "ui/beacon_screen_pocket.json", "type": "image", "children": [ "highlight_hover_square" ] }, "base_button/hover/highlight_hover_square": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "highlight_hover_square", "namespace": "beacon_pocket" } }, "base_button/pressed": { "file": "ui/beacon_screen_pocket.json", "type": "image" }, "active_button": { "file": "ui/beacon_screen_pocket.json", "type": "button", "extend": { "name": "base_button", "namespace": "beacon_pocket" } }, "inactive_button_image": { "file": "ui/beacon_screen_pocket.json", "type": "image" }, "inactive_button": { "file": "ui/beacon_screen_pocket.json", "type": "button", "extend": { "name": "base_button", "namespace": "beacon_pocket" }, "children": [ "default", "hover" ] }, "inactive_button/default": { "file": "ui/beacon_screen_pocket.json", "type": "image", "extend": { "name": "inactive_button_image", "namespace": "beacon_pocket" } }, "inactive_button/hover": { "file": "ui/beacon_screen_pocket.json", "type": "image", "extend": { "name": "inactive_button_image", "namespace": "beacon_pocket" }, "children": [ "highlight_hover_square" ] }, "inactive_button/hover/highlight_hover_square": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "highlight_hover_square", "namespace": "beacon_pocket" } }, "selected_button_image": { "file": "ui/beacon_screen_pocket.json", "type": "image" }, "selected_button": { "file": "ui/beacon_screen_pocket.json", "type": "button", "extend": { "name": "base_button", "namespace": "beacon_pocket" }, "children": [ "default", "hover" ] }, "selected_button/default": { "file": "ui/beacon_screen_pocket.json", "type": "image", "extend": { "name": "selected_button_image", "namespace": "beacon_pocket" } }, "selected_button/hover": { "file": "ui/beacon_screen_pocket.json", "type": "image", "extend": { "name": "selected_button_image", "namespace": "beacon_pocket" }, "children": [ "highlight_hover_square" ] }, "selected_button/hover/highlight_hover_square": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "highlight_hover_square", "namespace": "beacon_pocket" } }, "secondary_effect_base": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "image_template", "namespace": "beacon_pocket" } }, "speed_secondary": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "secondary_effect_base", "namespace": "beacon_pocket" } }, "haste_secondary": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "secondary_effect_base", "namespace": "beacon_pocket" } }, "resist_secondary": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "secondary_effect_base", "namespace": "beacon_pocket" } }, "jump_secondary": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "secondary_effect_base", "namespace": "beacon_pocket" } }, "strength_secondary": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "secondary_effect_base", "namespace": "beacon_pocket" } }, "secondary_effect_images": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "image_template", "namespace": "beacon_pocket" }, "children": [ "speed_secondary", "haste_secondary", "resist_secondary", "jump_secondary", "strength_secondary" ] }, "secondary_effect_images/speed_secondary": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "speed_secondary", "namespace": "beacon_pocket" } }, "secondary_effect_images/haste_secondary": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "haste_secondary", "namespace": "beacon_pocket" } }, "secondary_effect_images/resist_secondary": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "resist_secondary", "namespace": "beacon_pocket" } }, "secondary_effect_images/jump_secondary": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "jump_secondary", "namespace": "beacon_pocket" } }, "secondary_effect_images/strength_secondary": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "strength_secondary", "namespace": "beacon_pocket" } }, "base_image": { "file": "ui/beacon_screen_pocket.json", "type": "image" }, "image_template": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "children": [ "base_image" ] }, "image_template/base_image": { "file": "ui/beacon_screen_pocket.json", "type": "image", "extend": { "name": "base_image", "namespace": "beacon_pocket" } }, "toggle_template": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "children": [ "toggle_button" ] }, "toggle_template/toggle_button": { "file": "ui/beacon_screen_pocket.json", "type": "toggle", "extend": { "name": "toggle_button", "namespace": "beacon_pocket" } }, "button_template": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "toggle_template", "namespace": "beacon_pocket" }, "children": [ "active_button", "inactive_button", "image_template" ] }, "button_template/active_button": { "file": "ui/beacon_screen_pocket.json", "type": "button", "extend": { "name": "active_button", "namespace": "beacon_pocket" } }, "button_template/inactive_button": { "file": "ui/beacon_screen_pocket.json", "type": "button", "extend": { "name": "inactive_button", "namespace": "beacon_pocket" } }, "button_template/image_template": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "image_template", "namespace": "beacon_pocket" } }, "panel_template": { "file": "ui/beacon_screen_pocket.json", "type": "panel" }, "beacon_power_label": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "children": [ "label" ] }, "beacon_power_label/label": { "file": "ui/beacon_screen_pocket.json", "type": "label", "extend": { "name": "generic_label", "namespace": "beacon_pocket" } }, "beacon_sub_panel": { "file": "ui/beacon_screen_pocket.json", "type": "panel" }, "beacon_button_left_panel": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "beacon_sub_panel", "namespace": "beacon_pocket" }, "children": [ "primary_power_label", "panel" ] }, "beacon_button_left_panel/primary_power_label": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "beacon_power_label", "namespace": "beacon_pocket" } }, "beacon_button_left_panel/panel": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "children": [ "pyramids_and_buttons" ] }, "beacon_button_left_panel/panel/pyramids_and_buttons": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "children": [ "level1", "speed_panel", "haste_panel", "level2", "resist_panel", "jump_panel", "level3", "strength_panel" ] }, "beacon_button_left_panel/panel/pyramids_and_buttons/level1": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "pyramid_panel", "namespace": "beacon_pocket" } }, "beacon_button_left_panel/panel/pyramids_and_buttons/speed_panel": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "panel_template", "namespace": "beacon_pocket" } }, "beacon_button_left_panel/panel/pyramids_and_buttons/haste_panel": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "panel_template", "namespace": "beacon_pocket" } }, "beacon_button_left_panel/panel/pyramids_and_buttons/level2": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "pyramid_panel", "namespace": "beacon_pocket" } }, "beacon_button_left_panel/panel/pyramids_and_buttons/resist_panel": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "panel_template", "namespace": "beacon_pocket" } }, "beacon_button_left_panel/panel/pyramids_and_buttons/jump_panel": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "panel_template", "namespace": "beacon_pocket" } }, "beacon_button_left_panel/panel/pyramids_and_buttons/level3": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "pyramid_panel", "namespace": "beacon_pocket" } }, "beacon_button_left_panel/panel/pyramids_and_buttons/strength_panel": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "panel_template", "namespace": "beacon_pocket" } }, "beacon_button_right_panel": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "beacon_sub_panel", "namespace": "beacon_pocket" }, "children": [ "secondary_power_label", "panel" ] }, "beacon_button_right_panel/secondary_power_label": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "beacon_power_label", "namespace": "beacon_pocket" } }, "beacon_button_right_panel/panel": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "children": [ "buttons_and_pyramid" ] }, "beacon_button_right_panel/panel/buttons_and_pyramid": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "children": [ "level4", "regen_panel", "extra_panel" ] }, "beacon_button_right_panel/panel/buttons_and_pyramid/level4": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "pyramid_panel", "namespace": "beacon_pocket" } }, "beacon_button_right_panel/panel/buttons_and_pyramid/regen_panel": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "panel_template", "namespace": "beacon_pocket" } }, "beacon_button_right_panel/panel/buttons_and_pyramid/extra_panel": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "panel_template", "namespace": "beacon_pocket" } }, "beacon_buttons_panel": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "children": [ "beacon_background", "left_panel", "right_panel" ] }, "beacon_buttons_panel/beacon_background": { "file": "ui/beacon_screen_pocket.json", "type": "image", "extend": { "name": "beacon_background", "namespace": "beacon_pocket" } }, "beacon_buttons_panel/left_panel": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "beacon_button_left_panel", "namespace": "beacon_pocket" } }, "beacon_buttons_panel/right_panel": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "beacon_button_right_panel", "namespace": "beacon_pocket" } }, "confirm_panel": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "children": [ "ingredient_item", "confirm_panel", "cancel_panel" ] }, "confirm_panel/ingredient_item": { "file": "ui/beacon_screen_pocket.json", "type": "input_panel", "extend": { "name": "pocket_ui_container_item", "namespace": "common" } }, "confirm_panel/confirm_panel": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "panel_template", "namespace": "beacon_pocket" } }, "confirm_panel/cancel_panel": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "panel_template", "namespace": "beacon_pocket" } }, "beacon_payment_panel": { "file": "ui/beacon_screen_pocket.json", "type": "stack_panel", "children": [ "usable_items_panel", "pad", "confirm_panel" ] }, "beacon_payment_panel/usable_items_panel": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "usable_items_panel", "namespace": "beacon_pocket" } }, "beacon_payment_panel/pad": { "file": "ui/beacon_screen_pocket.json", "type": "panel" }, "beacon_payment_panel/confirm_panel": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "confirm_panel", "namespace": "beacon_pocket" } }, "beacon_contents_panel": { "file": "ui/beacon_screen_pocket.json", "type": "stack_panel", "children": [ "fill1", "beacon_buttons_panel", "pad1", "beacon_payment_panel", "fill2" ] }, "beacon_contents_panel/fill1": { "file": "ui/beacon_screen_pocket.json", "type": "panel" }, "beacon_contents_panel/beacon_buttons_panel": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "beacon_buttons_panel", "namespace": "beacon_pocket" } }, "beacon_contents_panel/pad1": { "file": "ui/beacon_screen_pocket.json", "type": "panel" }, "beacon_contents_panel/beacon_payment_panel": { "file": "ui/beacon_screen_pocket.json", "type": "stack_panel", "extend": { "name": "beacon_payment_panel", "namespace": "beacon_pocket" } }, "beacon_contents_panel/fill2": { "file": "ui/beacon_screen_pocket.json", "type": "panel" }, "header": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "children": [ "header_background", "legacy_pocket_close_button", "panel" ] }, "header/header_background": { "file": "ui/beacon_screen_pocket.json", "type": "image" }, "header/legacy_pocket_close_button": { "file": "ui/beacon_screen_pocket.json", "type": "button", "extend": { "name": "legacy_pocket_close_button", "namespace": "common" } }, "header/panel": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "children": [ "title_label" ] }, "header/panel/title_label": { "file": "ui/beacon_screen_pocket.json", "type": "label", "extend": { "name": "generic_label", "namespace": "enchanting_pocket" } }, "inventory_and_beacon_panel": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "children": [ "inventory_half_screen", "beacon_half_screen" ] }, "inventory_and_beacon_panel/inventory_half_screen": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "children": [ "inventory_content" ] }, "inventory_and_beacon_panel/inventory_half_screen/inventory_content": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "inventory_content", "namespace": "beacon_pocket" } }, "inventory_and_beacon_panel/beacon_half_screen": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "children": [ "beacon_content" ] }, "inventory_and_beacon_panel/beacon_half_screen/beacon_content": { "file": "ui/beacon_screen_pocket.json", "type": "stack_panel", "extend": { "name": "beacon_contents_panel", "namespace": "beacon_pocket" } }, "header_and_content_stack_panel": { "file": "ui/beacon_screen_pocket.json", "type": "stack_panel", "children": [ "header", "inventory_and_beacon_panel" ] }, "header_and_content_stack_panel/header": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "header", "namespace": "beacon_pocket" } }, "header_and_content_stack_panel/inventory_and_beacon_panel": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "extend": { "name": "inventory_and_beacon_panel", "namespace": "beacon_pocket" } }, "beacon_panel": { "file": "ui/beacon_screen_pocket.json", "type": "panel", "children": [ "bg", "root_panel", "header_and_content_stack_panel", "container_gamepad_helpers", "inventory_selected_icon_button", "hold_icon", "selected_item_details_factory", "item_lock_notification_factory", "flying_item_renderer" ] }, "beacon_panel/bg": { "file": "ui/beacon_screen_pocket.json", "type": "image", "extend": { "name": "background_image", "namespace": "furnace_pocket" } }, "beacon_panel/root_panel": { "file": "ui/beacon_screen_pocket.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" } }, "beacon_panel/header_and_content_stack_panel": { "file": "ui/beacon_screen_pocket.json", "type": "stack_panel", "extend": { "name": "header_and_content_stack_panel", "namespace": "beacon_pocket" } }, "beacon_panel/container_gamepad_helpers": { "file": "ui/beacon_screen_pocket.json", "type": "stack_panel", "extend": { "name": "container_gamepad_helpers", "namespace": "common" } }, "beacon_panel/inventory_selected_icon_button": { "file": "ui/beacon_screen_pocket.json", "type": "button", "extend": { "name": "inventory_selected_icon_button", "namespace": "common" } }, "beacon_panel/hold_icon": { "file": "ui/beacon_screen_pocket.json", "type": "button", "extend": { "name": "inventory_take_progress_icon_button", "namespace": "common" } }, "beacon_panel/selected_item_details_factory": { "file": "ui/beacon_screen_pocket.json", "type": "factory", "extend": { "name": "selected_item_details_factory", "namespace": "common" } }, "beacon_panel/item_lock_notification_factory": { "file": "ui/beacon_screen_pocket.json", "type": "factory", "extend": { "name": "item_lock_notification_factory", "namespace": "common" } }, "beacon_panel/flying_item_renderer": { "file": "ui/beacon_screen_pocket.json", "type": "custom", "extend": { "name": "flying_item_renderer", "namespace": "common" } } }, "blast_furnace": { "blast_furnace_screen": { "file": "ui/blast_furnace_screen.json", "type": "screen", "extend": { "name": "furnace_screen", "namespace": "furnace" } } }, "book": { "screenshot": { "file": "ui/book_screen.json", "type": "image" }, "screenshot_frame": { "file": "ui/book_screen.json", "type": "image", "children": [ "caption_edit" ] }, "screenshot_frame/caption_edit": { "file": "ui/book_screen.json", "type": "edit_box", "extend": { "name": "page_caption", "namespace": "book" } }, "photo_corner": { "file": "ui/book_screen.json", "type": "image" }, "photo_corner_bl": { "file": "ui/book_screen.json", "type": "image", "extend": { "name": "photo_corner", "namespace": "book" } }, "photo_corner_br": { "file": "ui/book_screen.json", "type": "image", "extend": { "name": "photo_corner", "namespace": "book" } }, "photo_corner_tr": { "file": "ui/book_screen.json", "type": "image", "extend": { "name": "photo_corner", "namespace": "book" } }, "photo_corner_tl": { "file": "ui/book_screen.json", "type": "image", "extend": { "name": "photo_corner", "namespace": "book" } }, "page_caption": { "file": "ui/book_screen.json", "type": "edit_box", "extend": { "name": "page_text_edit", "namespace": "book" } }, "page_photo": { "file": "ui/book_screen.json", "type": "panel", "children": [ "screenshot", "screenshot_frame", "photo_corner_bl", "photo_corner_br", "photo_corner_tl", "photo_corner_tr" ] }, "page_photo/screenshot": { "file": "ui/book_screen.json", "type": "image", "extend": { "name": "screenshot", "namespace": "book" } }, "page_photo/screenshot_frame": { "file": "ui/book_screen.json", "type": "image", "extend": { "name": "screenshot_frame", "namespace": "book" } }, "page_photo/photo_corner_bl": { "file": "ui/book_screen.json", "type": "image", "extend": { "name": "photo_corner_bl", "namespace": "book" } }, "page_photo/photo_corner_br": { "file": "ui/book_screen.json", "type": "image", "extend": { "name": "photo_corner_br", "namespace": "book" } }, "page_photo/photo_corner_tl": { "file": "ui/book_screen.json", "type": "image", "extend": { "name": "photo_corner_tl", "namespace": "book" } }, "page_photo/photo_corner_tr": { "file": "ui/book_screen.json", "type": "image", "extend": { "name": "photo_corner_tr", "namespace": "book" } }, "pick_item": { "file": "ui/book_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "photo", "button" ] }, "pick_item/photo": { "file": "ui/book_screen.json", "type": "panel", "extend": { "name": "page_photo", "namespace": "book" } }, "pick_item/button": { "file": "ui/book_screen.json", "type": "button" }, "pick_item_inventory": { "file": "ui/book_screen.json", "type": "panel", "children": [ "photo", "button" ] }, "pick_item_inventory/photo": { "file": "ui/book_screen.json", "type": "panel", "extend": { "name": "page_photo", "namespace": "book" } }, "pick_item_inventory/button": { "file": "ui/book_screen.json", "type": "button" }, "header": { "file": "ui/book_screen.json", "type": "label" }, "text_centering_panel_inventory": { "file": "ui/book_screen.json", "type": "panel", "children": [ "inventory_header" ] }, "text_centering_panel_inventory/inventory_header": { "file": "ui/book_screen.json", "type": "label", "extend": { "name": "header", "namespace": "book" } }, "text_centering_panel_portfolio": { "file": "ui/book_screen.json", "type": "panel", "children": [ "portfolio_header" ] }, "text_centering_panel_portfolio/portfolio_header": { "file": "ui/book_screen.json", "type": "label", "extend": { "name": "header", "namespace": "book" } }, "pick_scrolling_content": { "file": "ui/book_screen.json", "type": "stack_panel", "children": [ "inventory_header", "inventory_grid", "portfolio_header", "portfolio_grid" ] }, "pick_scrolling_content/inventory_header": { "file": "ui/book_screen.json", "type": "panel", "extend": { "name": "text_centering_panel_inventory", "namespace": "book" } }, "pick_scrolling_content/inventory_grid": { "file": "ui/book_screen.json", "type": "stack_panel", "extend": { "name": "stack_panel_grid", "namespace": "edu_common" } }, "pick_scrolling_content/portfolio_header": { "file": "ui/book_screen.json", "type": "panel", "extend": { "name": "text_centering_panel_portfolio", "namespace": "book" } }, "pick_scrolling_content/portfolio_grid": { "file": "ui/book_screen.json", "type": "stack_panel", "extend": { "name": "stack_panel_grid", "namespace": "edu_common" } }, "pick_panel": { "file": "ui/book_screen.json", "type": "image", "children": [ "scroll", "close_button" ] }, "pick_panel/scroll": { "file": "ui/book_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "pick_panel/close_button": { "file": "ui/book_screen.json", "type": "button", "extend": { "name": "close_button", "namespace": "book" } }, "blank": { "file": "ui/book_screen.json", "type": "image" }, "book_background": { "file": "ui/book_screen.json", "type": "image" }, "book_spine_image": { "file": "ui/book_screen.json", "type": "image" }, "page_crease_left_image": { "file": "ui/book_screen.json", "type": "image" }, "page_crease_right_image": { "file": "ui/book_screen.json", "type": "image" }, "page_edge_left_image": { "file": "ui/book_screen.json", "type": "image" }, "page_edge_right_image": { "file": "ui/book_screen.json", "type": "image" }, "text_edit_hover_image": { "file": "ui/book_screen.json", "type": "image" }, "base_button": { "file": "ui/book_screen.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed" ] }, "base_button/default": { "file": "ui/book_screen.json", "type": "image" }, "base_button/hover": { "file": "ui/book_screen.json", "type": "image" }, "base_button/pressed": { "file": "ui/book_screen.json", "type": "image" }, "book_buttons_panel": { "file": "ui/book_screen.json", "type": "panel", "children": [ "sign_export_buttons", "im_content_button" ] }, "book_buttons_panel/sign_export_buttons": { "file": "ui/book_screen.json", "type": "stack_panel", "children": [ "left_spacer", "sign_button", "export_button", "right_spacer" ] }, "book_buttons_panel/sign_export_buttons/left_spacer": { "file": "ui/book_screen.json", "type": "panel" }, "book_buttons_panel/sign_export_buttons/sign_button": { "file": "ui/book_screen.json", "type": "button", "extend": { "name": "light_text_form_fitting_button", "namespace": "common_buttons" } }, "book_buttons_panel/sign_export_buttons/export_button": { "file": "ui/book_screen.json", "type": "button", "extend": { "name": "light_text_form_fitting_button", "namespace": "common_buttons" } }, "book_buttons_panel/sign_export_buttons/right_spacer": { "file": "ui/book_screen.json", "type": "panel" }, "book_buttons_panel/im_content_button": { "file": "ui/book_screen.json", "type": "button", "extend": { "name": "reader_button", "namespace": "im_reader" } }, "cover_buttons_stack_panel_holder": { "file": "ui/book_screen.json", "type": "panel", "children": [ "cover_buttons_stack_panel" ] }, "cover_buttons_stack_panel_holder/cover_buttons_stack_panel": { "file": "ui/book_screen.json", "type": "stack_panel", "children": [ "finalize_button", "padding_1", "cancel_sign_button" ] }, "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/finalize_button": { "file": "ui/book_screen.json", "type": "button", "extend": { "name": "light_text_form_fitting_button", "namespace": "common_buttons" } }, "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/padding_1": { "file": "ui/book_screen.json", "type": "panel" }, "cover_buttons_stack_panel_holder/cover_buttons_stack_panel/cancel_sign_button": { "file": "ui/book_screen.json", "type": "button", "extend": { "name": "light_text_form_fitting_button", "namespace": "common_buttons" } }, "close_button_default": { "file": "ui/book_screen.json", "type": "image" }, "close_button_hover": { "file": "ui/book_screen.json", "type": "image" }, "close_button_pressed": { "file": "ui/book_screen.json", "type": "image" }, "close_button": { "file": "ui/book_screen.json", "type": "button", "children": [ "default", "hover", "pressed" ] }, "close_button/default": { "file": "ui/book_screen.json", "type": "image", "extend": { "name": "close_button_default", "namespace": "book" } }, "close_button/hover": { "file": "ui/book_screen.json", "type": "image", "extend": { "name": "close_button_hover", "namespace": "book" } }, "close_button/pressed": { "file": "ui/book_screen.json", "type": "image", "extend": { "name": "close_button_pressed", "namespace": "book" } }, "page_text_edit": { "file": "ui/book_screen.json", "type": "edit_box", "extend": { "name": "multiline_text_edit_box", "namespace": "common" } }, "page_text": { "file": "ui/book_screen.json", "type": "edit_box", "extend": { "name": "page_text_edit", "namespace": "book" } }, "page_number_label": { "file": "ui/book_screen.json", "type": "label" }, "padded_button": { "file": "ui/book_screen.json", "type": "panel", "children": [ "button" ] }, "padded_button/button": { "file": "ui/book_screen.json", "type": "button", "extend": { "name": "base_button", "namespace": "book" } }, "page_buttons_panel": { "file": "ui/book_screen.json", "type": "stack_panel", "children": [ "swap_page_left", "insert_text_page", "insert_photo_page", "delete_page", "swap_page_right" ] }, "page_buttons_panel/swap_page_left": { "file": "ui/book_screen.json", "type": "panel", "extend": { "name": "padded_button", "namespace": "book" } }, "page_buttons_panel/insert_text_page": { "file": "ui/book_screen.json", "type": "panel", "extend": { "name": "padded_button", "namespace": "book" } }, "page_buttons_panel/insert_photo_page": { "file": "ui/book_screen.json", "type": "panel", "extend": { "name": "padded_button", "namespace": "book" } }, "page_buttons_panel/delete_page": { "file": "ui/book_screen.json", "type": "panel", "extend": { "name": "padded_button", "namespace": "book" } }, "page_buttons_panel/swap_page_right": { "file": "ui/book_screen.json", "type": "panel", "extend": { "name": "padded_button", "namespace": "book" } }, "page_content_panel": { "file": "ui/book_screen.json", "type": "panel", "children": [ "page_text", "page_photo", "page_number_label", "page_buttons_panel", "edit_page" ] }, "page_content_panel/page_text": { "file": "ui/book_screen.json", "type": "edit_box", "extend": { "name": "page_text", "namespace": "book" } }, "page_content_panel/page_photo": { "file": "ui/book_screen.json", "type": "panel", "extend": { "name": "page_photo", "namespace": "book" } }, "page_content_panel/page_number_label": { "file": "ui/book_screen.json", "type": "label", "extend": { "name": "page_number_label", "namespace": "book" } }, "page_content_panel/page_buttons_panel": { "file": "ui/book_screen.json", "type": "stack_panel", "extend": { "name": "page_buttons_panel", "namespace": "book" } }, "page_content_panel/edit_page": { "file": "ui/book_screen.json", "type": "button", "extend": { "name": "base_button", "namespace": "book" } }, "title_label": { "file": "ui/book_screen.json", "type": "label" }, "title_text_box": { "file": "ui/book_screen.json", "type": "edit_box", "extend": { "name": "text_edit_box", "namespace": "common" } }, "author_label": { "file": "ui/book_screen.json", "type": "label" }, "author_text_box": { "file": "ui/book_screen.json", "type": "edit_box", "extend": { "name": "text_edit_box", "namespace": "common" } }, "author_stack_panel": { "file": "ui/book_screen.json", "type": "stack_panel", "children": [ "author_label_panel", "author_text_panel" ] }, "author_stack_panel/author_label_panel": { "file": "ui/book_screen.json", "type": "panel", "children": [ "author_label" ] }, "author_stack_panel/author_label_panel/author_label": { "file": "ui/book_screen.json", "type": "label", "extend": { "name": "author_label", "namespace": "book" } }, "author_stack_panel/author_text_panel": { "file": "ui/book_screen.json", "type": "panel", "children": [ "author_text_box" ] }, "author_stack_panel/author_text_panel/author_text_box": { "file": "ui/book_screen.json", "type": "edit_box", "extend": { "name": "author_text_box", "namespace": "book" } }, "warning_label": { "file": "ui/book_screen.json", "type": "label" }, "cover_content_panel": { "file": "ui/book_screen.json", "type": "panel", "children": [ "title_label", "title_text_box", "author_stack_panel", "warning_label" ] }, "cover_content_panel/title_label": { "file": "ui/book_screen.json", "type": "label", "extend": { "name": "title_label", "namespace": "book" } }, "cover_content_panel/title_text_box": { "file": "ui/book_screen.json", "type": "edit_box", "extend": { "name": "title_text_box", "namespace": "book" } }, "cover_content_panel/author_stack_panel": { "file": "ui/book_screen.json", "type": "stack_panel", "extend": { "name": "author_stack_panel", "namespace": "book" } }, "cover_content_panel/warning_label": { "file": "ui/book_screen.json", "type": "label", "extend": { "name": "warning_label", "namespace": "book" } }, "cover_and_buttons_panel": { "file": "ui/book_screen.json", "type": "panel", "children": [ "cover_panel", "cover_buttons_stack_panel_holder" ] }, "cover_and_buttons_panel/cover_panel": { "file": "ui/book_screen.json", "type": "panel", "children": [ "cover_content_panel", "book_background", "close_button" ] }, "cover_and_buttons_panel/cover_panel/cover_content_panel": { "file": "ui/book_screen.json", "type": "panel", "extend": { "name": "cover_content_panel", "namespace": "book" } }, "cover_and_buttons_panel/cover_panel/book_background": { "file": "ui/book_screen.json", "type": "image" }, "cover_and_buttons_panel/cover_panel/close_button": { "file": "ui/book_screen.json", "type": "button", "extend": { "name": "close_button", "namespace": "book" } }, "cover_and_buttons_panel/cover_buttons_stack_panel_holder": { "file": "ui/book_screen.json", "type": "panel", "extend": { "name": "cover_buttons_stack_panel_holder", "namespace": "book" } }, "page_panel": { "file": "ui/book_screen.json", "type": "panel", "children": [ "page_content_panel" ] }, "page_panel/page_content_panel": { "file": "ui/book_screen.json", "type": "panel", "extend": { "name": "page_content_panel", "namespace": "book" } }, "book_grid": { "file": "ui/book_screen.json", "type": "grid", "children": [ "page_panel_left", "page_panel_right" ] }, "book_grid/page_panel_left": { "file": "ui/book_screen.json", "type": "panel", "extend": { "name": "page_panel", "namespace": "book" } }, "book_grid/page_panel_right": { "file": "ui/book_screen.json", "type": "panel", "extend": { "name": "page_panel", "namespace": "book" } }, "book_and_buttons_panel": { "file": "ui/book_screen.json", "type": "panel", "children": [ "book_panel", "book_buttons_panel" ] }, "book_and_buttons_panel/book_panel": { "file": "ui/book_screen.json", "type": "panel", "children": [ "book_grid", "book_background", "book_spine_image", "close_button", "prev_button", "next_button" ] }, "book_and_buttons_panel/book_panel/book_grid": { "file": "ui/book_screen.json", "type": "grid", "extend": { "name": "book_grid", "namespace": "book" } }, "book_and_buttons_panel/book_panel/book_background": { "file": "ui/book_screen.json", "type": "image", "extend": { "name": "book_background", "namespace": "book" } }, "book_and_buttons_panel/book_panel/book_spine_image": { "file": "ui/book_screen.json", "type": "image", "extend": { "name": "book_spine_image", "namespace": "book" } }, "book_and_buttons_panel/book_panel/close_button": { "file": "ui/book_screen.json", "type": "button", "extend": { "name": "close_button", "namespace": "book" } }, "book_and_buttons_panel/book_panel/prev_button": { "file": "ui/book_screen.json", "type": "button", "extend": { "name": "base_button", "namespace": "book" } }, "book_and_buttons_panel/book_panel/next_button": { "file": "ui/book_screen.json", "type": "button", "extend": { "name": "base_button", "namespace": "book" } }, "book_and_buttons_panel/book_buttons_panel": { "file": "ui/book_screen.json", "type": "panel", "extend": { "name": "book_buttons_panel", "namespace": "book" } }, "root_panel": { "file": "ui/book_screen.json", "type": "panel" }, "book_screen": { "file": "ui/book_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "book_screen_content": { "file": "ui/book_screen.json", "type": "panel", "children": [ "root_panel" ] }, "book_screen_content/root_panel": { "file": "ui/book_screen.json", "type": "panel", "extend": { "name": "root_panel", "namespace": "book" }, "children": [ "book_and_buttons_panel", "cover_and_buttons_panel", "pick_panel", "export_progress", "gamepad_helper_a", "gamepad_helper_b" ] }, "book_screen_content/root_panel/book_and_buttons_panel": { "file": "ui/book_screen.json", "type": "panel", "extend": { "name": "book_and_buttons_panel", "namespace": "book" } }, "book_screen_content/root_panel/cover_and_buttons_panel": { "file": "ui/book_screen.json", "type": "panel", "extend": { "name": "cover_and_buttons_panel", "namespace": "book" } }, "book_screen_content/root_panel/pick_panel": { "file": "ui/book_screen.json", "type": "image", "extend": { "name": "pick_panel", "namespace": "book" } }, "book_screen_content/root_panel/export_progress": { "file": "ui/book_screen.json", "type": "panel", "extend": { "name": "modal_progress_panel_no_cancel", "namespace": "progress" } }, "book_screen_content/root_panel/gamepad_helper_a": { "file": "ui/book_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_a", "namespace": "common" } }, "book_screen_content/root_panel/gamepad_helper_b": { "file": "ui/book_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_b", "namespace": "common" } } }, "brewing_stand": { "brewing_pipes": { "file": "ui/brewing_stand_screen.json", "type": "image" }, "brewing_fuel_pipes": { "file": "ui/brewing_stand_screen.json", "type": "image" }, "bottle_empty_image": { "file": "ui/brewing_stand_screen.json", "type": "image" }, "fuel_empty_image": { "file": "ui/brewing_stand_screen.json", "type": "image" }, "bubbles_empty_image": { "file": "ui/brewing_stand_screen.json", "type": "image" }, "bubbles_full_image": { "file": "ui/brewing_stand_screen.json", "type": "image" }, "brewing_arrow_empty_image": { "file": "ui/brewing_stand_screen.json", "type": "image" }, "brewing_arrow_full_image": { "file": "ui/brewing_stand_screen.json", "type": "image" }, "brewing_fuel_bar_empty_image": { "file": "ui/brewing_stand_screen.json", "type": "image" }, "brewing_fuel_bar_full_image": { "file": "ui/brewing_stand_screen.json", "type": "image" }, "brewing_label": { "file": "ui/brewing_stand_screen.json", "type": "label" }, "brewingstand_output_item": { "file": "ui/brewing_stand_screen.json", "type": "input_panel", "extend": { "name": "container_item", "namespace": "common" } }, "brewing_output_slots": { "file": "ui/brewing_stand_screen.json", "type": "grid", "children": [ "left_offset", "output_grid_item2", "right_offset" ] }, "brewing_output_slots/left_offset": { "file": "ui/brewing_stand_screen.json", "type": "panel", "children": [ "output_grid_item1" ] }, "brewing_output_slots/left_offset/output_grid_item1": { "file": "ui/brewing_stand_screen.json", "type": "input_panel", "extend": { "name": "brewingstand_output_item", "namespace": "brewing_stand" } }, "brewing_output_slots/output_grid_item2": { "file": "ui/brewing_stand_screen.json", "type": "input_panel", "extend": { "name": "brewingstand_output_item", "namespace": "brewing_stand" } }, "brewing_output_slots/right_offset": { "file": "ui/brewing_stand_screen.json", "type": "panel", "children": [ "output_grid_item3" ] }, "brewing_output_slots/right_offset/output_grid_item3": { "file": "ui/brewing_stand_screen.json", "type": "input_panel", "extend": { "name": "brewingstand_output_item", "namespace": "brewing_stand" } }, "brewing_input_slot": { "file": "ui/brewing_stand_screen.json", "type": "panel", "children": [ "input_grid_item" ] }, "brewing_input_slot/input_grid_item": { "file": "ui/brewing_stand_screen.json", "type": "input_panel", "extend": { "name": "container_item", "namespace": "common" } }, "brewing_fuel_slot": { "file": "ui/brewing_stand_screen.json", "type": "panel", "children": [ "fuel_grid_item" ] }, "brewing_fuel_slot/fuel_grid_item": { "file": "ui/brewing_stand_screen.json", "type": "input_panel", "extend": { "name": "container_item", "namespace": "common" } }, "brewing_panel_top_half": { "file": "ui/brewing_stand_screen.json", "type": "panel", "children": [ "brewing_label", "brewing_stand_pictogram" ] }, "brewing_panel_top_half/brewing_label": { "file": "ui/brewing_stand_screen.json", "type": "label", "extend": { "name": "brewing_label", "namespace": "brewing_stand" } }, "brewing_panel_top_half/brewing_stand_pictogram": { "file": "ui/brewing_stand_screen.json", "type": "panel", "extend": { "name": "brewing_stand_pictogram", "namespace": "brewing_stand" } }, "brewing_stand_pictogram": { "file": "ui/brewing_stand_screen.json", "type": "panel", "children": [ "brewing_input_slot", "brewing_output_slots", "brewing_fuel_slot", "brewing_arrow_empty_image", "brewing_arrow_full_image", "brewing_fuel_bar_empty_image", "brewing_fuel_bar_full_image", "bubbles_empty_image", "bubbles_full_image", "brewing_fuel_pipes", "brewing_pipes" ] }, "brewing_stand_pictogram/brewing_input_slot": { "file": "ui/brewing_stand_screen.json", "type": "panel", "extend": { "name": "brewing_input_slot", "namespace": "brewing_stand" } }, "brewing_stand_pictogram/brewing_output_slots": { "file": "ui/brewing_stand_screen.json", "type": "grid", "extend": { "name": "brewing_output_slots", "namespace": "brewing_stand" } }, "brewing_stand_pictogram/brewing_fuel_slot": { "file": "ui/brewing_stand_screen.json", "type": "panel", "extend": { "name": "brewing_fuel_slot", "namespace": "brewing_stand" } }, "brewing_stand_pictogram/brewing_arrow_empty_image": { "file": "ui/brewing_stand_screen.json", "type": "image", "extend": { "name": "brewing_arrow_empty_image", "namespace": "brewing_stand" } }, "brewing_stand_pictogram/brewing_arrow_full_image": { "file": "ui/brewing_stand_screen.json", "type": "image", "extend": { "name": "brewing_arrow_full_image", "namespace": "brewing_stand" } }, "brewing_stand_pictogram/brewing_fuel_bar_empty_image": { "file": "ui/brewing_stand_screen.json", "type": "image", "extend": { "name": "brewing_fuel_bar_empty_image", "namespace": "brewing_stand" } }, "brewing_stand_pictogram/brewing_fuel_bar_full_image": { "file": "ui/brewing_stand_screen.json", "type": "image", "extend": { "name": "brewing_fuel_bar_full_image", "namespace": "brewing_stand" } }, "brewing_stand_pictogram/bubbles_empty_image": { "file": "ui/brewing_stand_screen.json", "type": "image", "extend": { "name": "bubbles_empty_image", "namespace": "brewing_stand" } }, "brewing_stand_pictogram/bubbles_full_image": { "file": "ui/brewing_stand_screen.json", "type": "image", "extend": { "name": "bubbles_full_image", "namespace": "brewing_stand" } }, "brewing_stand_pictogram/brewing_fuel_pipes": { "file": "ui/brewing_stand_screen.json", "type": "image", "extend": { "name": "brewing_fuel_pipes", "namespace": "brewing_stand" } }, "brewing_stand_pictogram/brewing_pipes": { "file": "ui/brewing_stand_screen.json", "type": "image", "extend": { "name": "brewing_pipes", "namespace": "brewing_stand" } }, "brewing_stand_panel": { "file": "ui/brewing_stand_screen.json", "type": "panel", "children": [ "container_gamepad_helpers", "selected_item_details_factory", "item_lock_notification_factory", "root_panel", "flying_item_renderer" ] }, "brewing_stand_panel/container_gamepad_helpers": { "file": "ui/brewing_stand_screen.json", "type": "stack_panel", "extend": { "name": "container_gamepad_helpers", "namespace": "common" } }, "brewing_stand_panel/selected_item_details_factory": { "file": "ui/brewing_stand_screen.json", "type": "factory", "extend": { "name": "selected_item_details_factory", "namespace": "common" } }, "brewing_stand_panel/item_lock_notification_factory": { "file": "ui/brewing_stand_screen.json", "type": "factory", "extend": { "name": "item_lock_notification_factory", "namespace": "common" } }, "brewing_stand_panel/root_panel": { "file": "ui/brewing_stand_screen.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "common_panel", "furnace_screen_inventory", "inventory_selected_icon_button", "gamepad_cursor" ] }, "brewing_stand_panel/root_panel/common_panel": { "file": "ui/brewing_stand_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "brewing_stand_panel/root_panel/furnace_screen_inventory": { "file": "ui/brewing_stand_screen.json", "type": "panel", "children": [ "brewing_panel_top_half", "inventory_panel_bottom_half_with_label", "hotbar_grid", "inventory_take_progress_icon_button" ] }, "brewing_stand_panel/root_panel/furnace_screen_inventory/brewing_panel_top_half": { "file": "ui/brewing_stand_screen.json", "type": "panel", "extend": { "name": "brewing_panel_top_half", "namespace": "brewing_stand" } }, "brewing_stand_panel/root_panel/furnace_screen_inventory/inventory_panel_bottom_half_with_label": { "file": "ui/brewing_stand_screen.json", "type": "panel", "extend": { "name": "inventory_panel_bottom_half_with_label", "namespace": "common" } }, "brewing_stand_panel/root_panel/furnace_screen_inventory/hotbar_grid": { "file": "ui/brewing_stand_screen.json", "type": "grid", "extend": { "name": "hotbar_grid_template", "namespace": "common" } }, "brewing_stand_panel/root_panel/furnace_screen_inventory/inventory_take_progress_icon_button": { "file": "ui/brewing_stand_screen.json", "type": "button", "extend": { "name": "inventory_take_progress_icon_button", "namespace": "common" } }, "brewing_stand_panel/root_panel/inventory_selected_icon_button": { "file": "ui/brewing_stand_screen.json", "type": "button", "extend": { "name": "inventory_selected_icon_button", "namespace": "common" } }, "brewing_stand_panel/root_panel/gamepad_cursor": { "file": "ui/brewing_stand_screen.json", "type": "button", "extend": { "name": "gamepad_cursor_button", "namespace": "common" } }, "brewing_stand_panel/flying_item_renderer": { "file": "ui/brewing_stand_screen.json", "type": "custom", "extend": { "name": "flying_item_renderer", "namespace": "common" } }, "brewing_stand_screen": { "file": "ui/brewing_stand_screen.json", "type": "screen", "extend": { "name": "inventory_screen_common", "namespace": "common" } } }, "brewing_stand_pocket": { "generic_label": { "file": "ui/brewing_stand_screen_pocket.json", "type": "label" }, "brewing_fuel_pipes": { "file": "ui/brewing_stand_screen_pocket.json", "type": "image" }, "bubbles_empty_image": { "file": "ui/brewing_stand_screen_pocket.json", "type": "image" }, "bubbles_full_image": { "file": "ui/brewing_stand_screen_pocket.json", "type": "image" }, "bottle_empty_image": { "file": "ui/brewing_stand_screen_pocket.json", "type": "image" }, "background_image": { "file": "ui/brewing_stand_screen_pocket.json", "type": "image" }, "output_slot": { "file": "ui/brewing_stand_screen_pocket.json", "type": "input_panel", "extend": { "name": "pocket_ui_large_container_item", "namespace": "common" } }, "brewing_input_slot": { "file": "ui/brewing_stand_screen_pocket.json", "type": "panel", "children": [ "input_slot" ] }, "brewing_input_slot/input_slot": { "file": "ui/brewing_stand_screen_pocket.json", "type": "input_panel", "extend": { "name": "pocket_ui_large_container_item", "namespace": "common" } }, "brewing_fuel_slot": { "file": "ui/brewing_stand_screen_pocket.json", "type": "panel", "children": [ "fuel_slot" ] }, "brewing_fuel_slot/fuel_slot": { "file": "ui/brewing_stand_screen_pocket.json", "type": "input_panel", "extend": { "name": "pocket_ui_large_container_item", "namespace": "common" } }, "brewing_out_slots": { "file": "ui/brewing_stand_screen_pocket.json", "type": "grid", "children": [ "left_offset", "middle", "right_offset" ] }, "brewing_out_slots/left_offset": { "file": "ui/brewing_stand_screen_pocket.json", "type": "panel", "children": [ "output_slot1" ] }, "brewing_out_slots/left_offset/output_slot1": { "file": "ui/brewing_stand_screen_pocket.json", "type": "input_panel", "extend": { "name": "output_slot", "namespace": "brewing_stand_pocket" } }, "brewing_out_slots/middle": { "file": "ui/brewing_stand_screen_pocket.json", "type": "panel", "children": [ "output_slot2" ] }, "brewing_out_slots/middle/output_slot2": { "file": "ui/brewing_stand_screen_pocket.json", "type": "input_panel", "extend": { "name": "output_slot", "namespace": "brewing_stand_pocket" } }, "brewing_out_slots/right_offset": { "file": "ui/brewing_stand_screen_pocket.json", "type": "panel", "children": [ "output_slot3" ] }, "brewing_out_slots/right_offset/output_slot3": { "file": "ui/brewing_stand_screen_pocket.json", "type": "input_panel", "extend": { "name": "output_slot", "namespace": "brewing_stand_pocket" } }, "slots_panel": { "file": "ui/brewing_stand_screen_pocket.json", "type": "panel", "children": [ "brewing_input_slot", "brewing_fuel_slot", "brewing_out_slots", "brewing_arrow_panel", "brewing_bubbles_panel", "brewing_fuel_bar_panel", "brewing_fuel_pipes", "brewing_pipes" ] }, "slots_panel/brewing_input_slot": { "file": "ui/brewing_stand_screen_pocket.json", "type": "panel", "extend": { "name": "brewing_input_slot", "namespace": "brewing_stand_pocket" } }, "slots_panel/brewing_fuel_slot": { "file": "ui/brewing_stand_screen_pocket.json", "type": "panel", "extend": { "name": "brewing_fuel_slot", "namespace": "brewing_stand_pocket" } }, "slots_panel/brewing_out_slots": { "file": "ui/brewing_stand_screen_pocket.json", "type": "grid", "extend": { "name": "brewing_out_slots", "namespace": "brewing_stand_pocket" } }, "slots_panel/brewing_arrow_panel": { "file": "ui/brewing_stand_screen_pocket.json", "type": "panel", "children": [ "brewing_arrow_empty_image", "brewing_arrow_full_image" ] }, "slots_panel/brewing_arrow_panel/brewing_arrow_empty_image": { "file": "ui/brewing_stand_screen_pocket.json", "type": "image", "extend": { "name": "brewing_arrow_empty_image", "namespace": "brewing_stand" } }, "slots_panel/brewing_arrow_panel/brewing_arrow_full_image": { "file": "ui/brewing_stand_screen_pocket.json", "type": "image", "extend": { "name": "brewing_arrow_full_image", "namespace": "brewing_stand" } }, "slots_panel/brewing_bubbles_panel": { "file": "ui/brewing_stand_screen_pocket.json", "type": "panel", "children": [ "bubbles_empty_image", "bubbles_full_image" ] }, "slots_panel/brewing_bubbles_panel/bubbles_empty_image": { "file": "ui/brewing_stand_screen_pocket.json", "type": "image", "extend": { "name": "bubbles_empty_image", "namespace": "brewing_stand_pocket" } }, "slots_panel/brewing_bubbles_panel/bubbles_full_image": { "file": "ui/brewing_stand_screen_pocket.json", "type": "image", "extend": { "name": "bubbles_full_image", "namespace": "brewing_stand_pocket" } }, "slots_panel/brewing_fuel_bar_panel": { "file": "ui/brewing_stand_screen_pocket.json", "type": "panel", "children": [ "brewing_fuel_bar_empty_image", "brewing_fuel_bar_full_image" ] }, "slots_panel/brewing_fuel_bar_panel/brewing_fuel_bar_empty_image": { "file": "ui/brewing_stand_screen_pocket.json", "type": "image", "extend": { "name": "brewing_fuel_bar_empty_image", "namespace": "brewing_stand" } }, "slots_panel/brewing_fuel_bar_panel/brewing_fuel_bar_full_image": { "file": "ui/brewing_stand_screen_pocket.json", "type": "image", "extend": { "name": "brewing_fuel_bar_full_image", "namespace": "brewing_stand" } }, "slots_panel/brewing_fuel_pipes": { "file": "ui/brewing_stand_screen_pocket.json", "type": "image", "extend": { "name": "brewing_fuel_pipes", "namespace": "brewing_stand_pocket" } }, "slots_panel/brewing_pipes": { "file": "ui/brewing_stand_screen_pocket.json", "type": "image", "extend": { "name": "brewing_pipes", "namespace": "brewing_stand" } }, "inventory_grid": { "file": "ui/brewing_stand_screen_pocket.json", "type": "grid" }, "inventory_content": { "file": "ui/brewing_stand_screen_pocket.json", "type": "panel", "children": [ "scrolling_panel" ] }, "inventory_content/scrolling_panel": { "file": "ui/brewing_stand_screen_pocket.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "brewing_stand_contents_panel": { "file": "ui/brewing_stand_screen_pocket.json", "type": "panel", "children": [ "slots_panel" ] }, "brewing_stand_contents_panel/slots_panel": { "file": "ui/brewing_stand_screen_pocket.json", "type": "panel", "extend": { "name": "slots_panel", "namespace": "brewing_stand_pocket" } }, "header": { "file": "ui/brewing_stand_screen_pocket.json", "type": "panel", "children": [ "header_background", "legacy_pocket_close_button", "panel" ] }, "header/header_background": { "file": "ui/brewing_stand_screen_pocket.json", "type": "image" }, "header/legacy_pocket_close_button": { "file": "ui/brewing_stand_screen_pocket.json", "type": "button", "extend": { "name": "legacy_pocket_close_button", "namespace": "common" } }, "header/panel": { "file": "ui/brewing_stand_screen_pocket.json", "type": "panel", "children": [ "title_label" ] }, "header/panel/title_label": { "file": "ui/brewing_stand_screen_pocket.json", "type": "label", "extend": { "name": "generic_label", "namespace": "brewing_stand_pocket" } }, "inventory_and_brewing_panel": { "file": "ui/brewing_stand_screen_pocket.json", "type": "panel", "children": [ "inventory_half_screen", "brewing_half_screen" ] }, "inventory_and_brewing_panel/inventory_half_screen": { "file": "ui/brewing_stand_screen_pocket.json", "type": "panel", "children": [ "inventory_content" ] }, "inventory_and_brewing_panel/inventory_half_screen/inventory_content": { "file": "ui/brewing_stand_screen_pocket.json", "type": "panel", "extend": { "name": "inventory_content", "namespace": "brewing_stand_pocket" } }, "inventory_and_brewing_panel/brewing_half_screen": { "file": "ui/brewing_stand_screen_pocket.json", "type": "panel", "children": [ "brewing_stand_contents_panel" ] }, "inventory_and_brewing_panel/brewing_half_screen/brewing_stand_contents_panel": { "file": "ui/brewing_stand_screen_pocket.json", "type": "panel", "extend": { "name": "brewing_stand_contents_panel", "namespace": "brewing_stand_pocket" } }, "header_and_content_stack_panel": { "file": "ui/brewing_stand_screen_pocket.json", "type": "stack_panel", "children": [ "header", "inventory_and_brewing_panel" ] }, "header_and_content_stack_panel/header": { "file": "ui/brewing_stand_screen_pocket.json", "type": "panel", "extend": { "name": "header", "namespace": "brewing_stand_pocket" } }, "header_and_content_stack_panel/inventory_and_brewing_panel": { "file": "ui/brewing_stand_screen_pocket.json", "type": "panel", "extend": { "name": "inventory_and_brewing_panel", "namespace": "brewing_stand_pocket" } }, "brewing_stand_panel": { "file": "ui/brewing_stand_screen_pocket.json", "type": "panel", "children": [ "bg", "root_panel", "header_and_content_stack_panel", "container_gamepad_helpers", "inventory_selected_icon_button", "hold_icon", "selected_item_details_factory", "item_lock_notification_factory", "flying_item_renderer" ] }, "brewing_stand_panel/bg": { "file": "ui/brewing_stand_screen_pocket.json", "type": "image", "extend": { "name": "background_image", "namespace": "brewing_stand_pocket" } }, "brewing_stand_panel/root_panel": { "file": "ui/brewing_stand_screen_pocket.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" } }, "brewing_stand_panel/header_and_content_stack_panel": { "file": "ui/brewing_stand_screen_pocket.json", "type": "stack_panel", "extend": { "name": "header_and_content_stack_panel", "namespace": "brewing_stand_pocket" } }, "brewing_stand_panel/container_gamepad_helpers": { "file": "ui/brewing_stand_screen_pocket.json", "type": "stack_panel", "extend": { "name": "container_gamepad_helpers", "namespace": "common" } }, "brewing_stand_panel/inventory_selected_icon_button": { "file": "ui/brewing_stand_screen_pocket.json", "type": "button", "extend": { "name": "inventory_selected_icon_button", "namespace": "common" } }, "brewing_stand_panel/hold_icon": { "file": "ui/brewing_stand_screen_pocket.json", "type": "button", "extend": { "name": "inventory_take_progress_icon_button", "namespace": "common" } }, "brewing_stand_panel/selected_item_details_factory": { "file": "ui/brewing_stand_screen_pocket.json", "type": "factory", "extend": { "name": "selected_item_details_factory", "namespace": "common" } }, "brewing_stand_panel/item_lock_notification_factory": { "file": "ui/brewing_stand_screen_pocket.json", "type": "factory", "extend": { "name": "item_lock_notification_factory", "namespace": "common" } }, "brewing_stand_panel/flying_item_renderer": { "file": "ui/brewing_stand_screen_pocket.json", "type": "custom", "extend": { "name": "flying_item_renderer", "namespace": "common" } } }, "bundle_purchase_warning": { "x_padding": { "file": "ui/bundle_purchase_warning_screen.json", "type": "panel" }, "y_padding": { "file": "ui/bundle_purchase_warning_screen.json", "type": "panel" }, "bundle_grid_item": { "file": "ui/bundle_purchase_warning_screen.json", "type": "panel", "children": [ "banner_image", "content", "game_pad_focus_border" ] }, "bundle_grid_item/banner_image": { "file": "ui/bundle_purchase_warning_screen.json", "type": "image" }, "bundle_grid_item/content": { "file": "ui/bundle_purchase_warning_screen.json", "type": "stack_panel", "extend": { "name": "grid_item_content", "namespace": "bundle_purchase_warning" } }, "bundle_grid_item/game_pad_focus_border": { "file": "ui/bundle_purchase_warning_screen.json", "type": "button", "extend": { "name": "focus_border_button", "namespace": "bundle_purchase_warning" } }, "is_focused": { "file": "ui/bundle_purchase_warning_screen.json", "type": "panel", "children": [ "image_border", "banner_border" ] }, "is_focused/image_border": { "file": "ui/bundle_purchase_warning_screen.json", "type": "image", "extend": { "name": "focus_border", "namespace": "bundle_purchase_warning" } }, "is_focused/banner_border": { "file": "ui/bundle_purchase_warning_screen.json", "type": "image", "extend": { "name": "focus_border", "namespace": "bundle_purchase_warning" } }, "focus_border": { "file": "ui/bundle_purchase_warning_screen.json", "type": "image" }, "focus_border_button": { "file": "ui/bundle_purchase_warning_screen.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed" ] }, "focus_border_button/default": { "file": "ui/bundle_purchase_warning_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "focus_border_button/hover": { "file": "ui/bundle_purchase_warning_screen.json", "type": "panel", "extend": { "name": "is_focused", "namespace": "bundle_purchase_warning" } }, "focus_border_button/pressed": { "file": "ui/bundle_purchase_warning_screen.json", "type": "panel", "extend": { "name": "is_focused", "namespace": "bundle_purchase_warning" } }, "grid_item_content": { "file": "ui/bundle_purchase_warning_screen.json", "type": "stack_panel", "children": [ "image_border", "padding_0", "bundle_title_panel" ] }, "grid_item_content/image_border": { "file": "ui/bundle_purchase_warning_screen.json", "type": "image", "extend": { "name": "focus_border_white", "namespace": "common" }, "children": [ "bundle_thumbnail" ] }, "grid_item_content/image_border/bundle_thumbnail": { "file": "ui/bundle_purchase_warning_screen.json", "type": "image" }, "grid_item_content/padding_0": { "file": "ui/bundle_purchase_warning_screen.json", "type": "panel" }, "grid_item_content/bundle_title_panel": { "file": "ui/bundle_purchase_warning_screen.json", "type": "panel", "children": [ "bundle_title" ] }, "grid_item_content/bundle_title_panel/bundle_title": { "file": "ui/bundle_purchase_warning_screen.json", "type": "label" }, "bundle_grid": { "file": "ui/bundle_purchase_warning_screen.json", "type": "grid" }, "side_contents": { "file": "ui/bundle_purchase_warning_screen.json", "type": "stack_panel", "children": [ "title_alignment_hack", "padding_y_0", "grid_input_panel" ] }, "side_contents/title_alignment_hack": { "file": "ui/bundle_purchase_warning_screen.json", "type": "panel", "children": [ "side_section_title" ] }, "side_contents/title_alignment_hack/side_section_title": { "file": "ui/bundle_purchase_warning_screen.json", "type": "label" }, "side_contents/padding_y_0": { "file": "ui/bundle_purchase_warning_screen.json", "type": "panel", "extend": { "name": "y_padding", "namespace": "bundle_purchase_warning" } }, "side_contents/grid_input_panel": { "file": "ui/bundle_purchase_warning_screen.json", "type": "input_panel", "children": [ "grid_scroll" ] }, "side_contents/grid_input_panel/grid_scroll": { "file": "ui/bundle_purchase_warning_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "dialog_content": { "file": "ui/bundle_purchase_warning_screen.json", "type": "stack_panel", "children": [ "grid_stack" ] }, "dialog_content/grid_stack": { "file": "ui/bundle_purchase_warning_screen.json", "type": "stack_panel", "children": [ "left_grid_scroll", "padding_x_divider", "right_grid_scroll" ] }, "dialog_content/grid_stack/left_grid_scroll": { "file": "ui/bundle_purchase_warning_screen.json", "type": "stack_panel", "extend": { "name": "side_contents", "namespace": "bundle_purchase_warning" } }, "dialog_content/grid_stack/padding_x_divider": { "file": "ui/bundle_purchase_warning_screen.json", "type": "panel", "extend": { "name": "x_padding", "namespace": "bundle_purchase_warning" } }, "dialog_content/grid_stack/right_grid_scroll": { "file": "ui/bundle_purchase_warning_screen.json", "type": "stack_panel", "extend": { "name": "side_contents", "namespace": "bundle_purchase_warning" } }, "purchase_button_panel": { "file": "ui/bundle_purchase_warning_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "screen_dialog": { "file": "ui/bundle_purchase_warning_screen.json", "type": "panel", "extend": { "name": "main_panel_one_button", "namespace": "common_dialogs" } }, "bundle_purchase_warning_screen_content": { "file": "ui/bundle_purchase_warning_screen.json", "type": "panel", "children": [ "dialog" ] }, "bundle_purchase_warning_screen_content/dialog": { "file": "ui/bundle_purchase_warning_screen.json", "type": "panel", "extend": { "name": "screen_dialog", "namespace": "bundle_purchase_warning" } }, "background": { "file": "ui/bundle_purchase_warning_screen.json", "type": "image", "extend": { "name": "screen_background", "namespace": "common" } }, "bundle_purchase_warning_screen": { "file": "ui/bundle_purchase_warning_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } } }, "cartography": { "title_label": { "file": "ui/cartography_screen.json", "type": "label" }, "arrow_icon": { "file": "ui/cartography_screen.json", "type": "image" }, "plus_sign_icon": { "file": "ui/cartography_screen.json", "type": "image" }, "text_edit_control": { "file": "ui/cartography_screen.json", "type": "edit_box", "extend": { "name": "text_edit_box", "namespace": "common" } }, "cartography_output_slot_button": { "file": "ui/cartography_screen.json", "type": "button", "extend": { "name": "no_coalesce_container_slot_button", "namespace": "common" } }, "cartography_item_slot": { "file": "ui/cartography_screen.json", "type": "panel", "children": [ "container_item" ] }, "cartography_item_slot/container_item": { "file": "ui/cartography_screen.json", "type": "input_panel", "extend": { "name": "container_item", "namespace": "common" } }, "map_image": { "file": "ui/cartography_screen.json", "type": "image" }, "map_image_panel": { "file": "ui/cartography_screen.json", "type": "panel", "children": [ "none_map", "copy_map", "rename_map", "map", "locator_map", "zoom_map", "lock_map" ] }, "map_image_panel/none_map": { "file": "ui/cartography_screen.json", "type": "image", "extend": { "name": "map_image", "namespace": "cartography" } }, "map_image_panel/copy_map": { "file": "ui/cartography_screen.json", "type": "image", "extend": { "name": "map_image", "namespace": "cartography" } }, "map_image_panel/rename_map": { "file": "ui/cartography_screen.json", "type": "image", "extend": { "name": "map_image", "namespace": "cartography" } }, "map_image_panel/map": { "file": "ui/cartography_screen.json", "type": "image", "extend": { "name": "map_image", "namespace": "cartography" } }, "map_image_panel/locator_map": { "file": "ui/cartography_screen.json", "type": "image", "extend": { "name": "map_image", "namespace": "cartography" } }, "map_image_panel/zoom_map": { "file": "ui/cartography_screen.json", "type": "image", "extend": { "name": "map_image", "namespace": "cartography" } }, "map_image_panel/lock_map": { "file": "ui/cartography_screen.json", "type": "image", "extend": { "name": "map_image", "namespace": "cartography" } }, "text_box_panel": { "file": "ui/cartography_screen.json", "type": "stack_panel", "children": [ "map_name_label", "text_edit_control" ] }, "text_box_panel/map_name_label": { "file": "ui/cartography_screen.json", "type": "label" }, "text_box_panel/text_edit_control": { "file": "ui/cartography_screen.json", "type": "edit_box", "extend": { "name": "text_edit_control", "namespace": "cartography" } }, "input_slots": { "file": "ui/cartography_screen.json", "type": "stack_panel", "children": [ "input_item_slot", "plus_centerer", "additional_item_slot" ] }, "input_slots/input_item_slot": { "file": "ui/cartography_screen.json", "type": "panel", "extend": { "name": "cartography_item_slot", "namespace": "cartography" } }, "input_slots/plus_centerer": { "file": "ui/cartography_screen.json", "type": "panel", "children": [ "plus_sign_icon" ] }, "input_slots/plus_centerer/plus_sign_icon": { "file": "ui/cartography_screen.json", "type": "image", "extend": { "name": "plus_sign_icon", "namespace": "cartography" } }, "input_slots/additional_item_slot": { "file": "ui/cartography_screen.json", "type": "panel", "extend": { "name": "cartography_item_slot", "namespace": "cartography" } }, "output_description_label": { "file": "ui/cartography_screen.json", "type": "label" }, "main_panel": { "file": "ui/cartography_screen.json", "type": "panel", "children": [ "input_slots", "arrow_icon", "map_image_panel", "arrow_icon2", "result_item_slot" ] }, "main_panel/input_slots": { "file": "ui/cartography_screen.json", "type": "stack_panel", "extend": { "name": "input_slots", "namespace": "cartography" } }, "main_panel/arrow_icon": { "file": "ui/cartography_screen.json", "type": "image", "extend": { "name": "arrow_icon", "namespace": "cartography" } }, "main_panel/map_image_panel": { "file": "ui/cartography_screen.json", "type": "panel", "extend": { "name": "map_image_panel", "namespace": "cartography" } }, "main_panel/arrow_icon2": { "file": "ui/cartography_screen.json", "type": "image", "extend": { "name": "arrow_icon", "namespace": "cartography" } }, "main_panel/result_item_slot": { "file": "ui/cartography_screen.json", "type": "panel", "extend": { "name": "cartography_item_slot", "namespace": "cartography" } }, "top_half_panel": { "file": "ui/cartography_screen.json", "type": "stack_panel", "children": [ "padding1", "title_panel", "padding2", "text_box_panel", "padding3", "padding4", "main_panel_wrap", "output_description_label", "padding5" ] }, "top_half_panel/padding1": { "file": "ui/cartography_screen.json", "type": "panel" }, "top_half_panel/title_panel": { "file": "ui/cartography_screen.json", "type": "panel", "children": [ "title_label" ] }, "top_half_panel/title_panel/title_label": { "file": "ui/cartography_screen.json", "type": "label", "extend": { "name": "title_label", "namespace": "cartography" } }, "top_half_panel/padding2": { "file": "ui/cartography_screen.json", "type": "panel" }, "top_half_panel/text_box_panel": { "file": "ui/cartography_screen.json", "type": "stack_panel", "extend": { "name": "text_box_panel", "namespace": "cartography" } }, "top_half_panel/padding3": { "file": "ui/cartography_screen.json", "type": "panel" }, "top_half_panel/padding4": { "file": "ui/cartography_screen.json", "type": "panel" }, "top_half_panel/main_panel_wrap": { "file": "ui/cartography_screen.json", "type": "panel", "children": [ "main_panel" ] }, "top_half_panel/main_panel_wrap/main_panel": { "file": "ui/cartography_screen.json", "type": "panel", "extend": { "name": "main_panel", "namespace": "cartography" } }, "top_half_panel/output_description_label": { "file": "ui/cartography_screen.json", "type": "label", "extend": { "name": "output_description_label", "namespace": "cartography" } }, "top_half_panel/padding5": { "file": "ui/cartography_screen.json", "type": "panel" }, "cartography_panel": { "file": "ui/cartography_screen.json", "type": "panel", "children": [ "container_gamepad_helpers", "selected_item_details_factory", "item_lock_notification_factory", "root_panel", "flying_item_renderer" ] }, "cartography_panel/container_gamepad_helpers": { "file": "ui/cartography_screen.json", "type": "stack_panel", "extend": { "name": "container_gamepad_helpers", "namespace": "common" } }, "cartography_panel/selected_item_details_factory": { "file": "ui/cartography_screen.json", "type": "factory", "extend": { "name": "selected_item_details_factory", "namespace": "common" } }, "cartography_panel/item_lock_notification_factory": { "file": "ui/cartography_screen.json", "type": "factory", "extend": { "name": "item_lock_notification_factory", "namespace": "common" } }, "cartography_panel/root_panel": { "file": "ui/cartography_screen.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "common_panel", "cartography_screen_inventory", "inventory_selected_icon_button", "gamepad_cursor", "tab_close_and_help_button" ] }, "cartography_panel/root_panel/common_panel": { "file": "ui/cartography_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "cartography_panel/root_panel/cartography_screen_inventory": { "file": "ui/cartography_screen.json", "type": "panel", "children": [ "top_half_panel", "inventory_panel_bottom_half_with_label", "hotbar_grid", "inventory_take_progress_icon_button" ] }, "cartography_panel/root_panel/cartography_screen_inventory/top_half_panel": { "file": "ui/cartography_screen.json", "type": "stack_panel", "extend": { "name": "top_half_panel", "namespace": "cartography" } }, "cartography_panel/root_panel/cartography_screen_inventory/inventory_panel_bottom_half_with_label": { "file": "ui/cartography_screen.json", "type": "panel", "extend": { "name": "inventory_panel_bottom_half_with_label", "namespace": "common" } }, "cartography_panel/root_panel/cartography_screen_inventory/hotbar_grid": { "file": "ui/cartography_screen.json", "type": "grid", "extend": { "name": "hotbar_grid_template", "namespace": "common" } }, "cartography_panel/root_panel/cartography_screen_inventory/inventory_take_progress_icon_button": { "file": "ui/cartography_screen.json", "type": "button", "extend": { "name": "inventory_take_progress_icon_button", "namespace": "common" } }, "cartography_panel/root_panel/inventory_selected_icon_button": { "file": "ui/cartography_screen.json", "type": "button", "extend": { "name": "inventory_selected_icon_button", "namespace": "common" } }, "cartography_panel/root_panel/gamepad_cursor": { "file": "ui/cartography_screen.json", "type": "button", "extend": { "name": "gamepad_cursor_button", "namespace": "common" } }, "cartography_panel/root_panel/tab_close_and_help_button": { "file": "ui/cartography_screen.json", "type": "image", "extend": { "name": "tab_close_and_help_button", "namespace": "common_tabs" } }, "cartography_panel/flying_item_renderer": { "file": "ui/cartography_screen.json", "type": "custom", "extend": { "name": "flying_item_renderer", "namespace": "common" } }, "cartography_screen": { "file": "ui/cartography_screen.json", "type": "screen", "extend": { "name": "inventory_screen_common", "namespace": "common" } } }, "cartography_pocket": { "vertical_arrow_icon": { "file": "ui/cartography_screen_pocket.json", "type": "image" }, "chest_item_renderer": { "file": "ui/cartography_screen_pocket.json", "type": "custom" }, "cartography_item_renderer": { "file": "ui/cartography_screen_pocket.json", "type": "custom" }, "input_item_slot": { "file": "ui/cartography_screen_pocket.json", "type": "input_panel", "extend": { "name": "pocket_ui_container_item", "namespace": "common" } }, "additional_item_slot": { "file": "ui/cartography_screen_pocket.json", "type": "input_panel", "extend": { "name": "pocket_ui_container_item", "namespace": "common" } }, "result_item_slot": { "file": "ui/cartography_screen_pocket.json", "type": "input_panel", "extend": { "name": "pocket_ui_container_item", "namespace": "common" } }, "right_panel": { "file": "ui/cartography_screen_pocket.json", "type": "stack_panel", "children": [ "content", "navigation_tabs_holder" ] }, "right_panel/content": { "file": "ui/cartography_screen_pocket.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "bg", "cartography_content_stack_panel" ] }, "right_panel/content/bg": { "file": "ui/cartography_screen_pocket.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "right_panel/content/cartography_content_stack_panel": { "file": "ui/cartography_screen_pocket.json", "type": "stack_panel", "extend": { "name": "cartography_content_stack_panel", "namespace": "cartography_pocket" } }, "right_panel/navigation_tabs_holder": { "file": "ui/cartography_screen_pocket.json", "type": "panel", "children": [ "right_navigation_tabs" ] }, "right_panel/navigation_tabs_holder/right_navigation_tabs": { "file": "ui/cartography_screen_pocket.json", "type": "stack_panel", "extend": { "name": "right_navigation_tabs", "namespace": "cartography_pocket" } }, "right_tab_cartography": { "file": "ui/cartography_screen_pocket.json", "type": "panel", "extend": { "name": "pocket_tab_right", "namespace": "common_tabs" } }, "right_navigation_tabs": { "file": "ui/cartography_screen_pocket.json", "type": "stack_panel", "children": [ "pocket_tab_close_and_help_button", "fill", "right_tab_cartography" ] }, "right_navigation_tabs/pocket_tab_close_and_help_button": { "file": "ui/cartography_screen_pocket.json", "type": "image", "extend": { "name": "pocket_tab_close_and_help_button", "namespace": "common_tabs" } }, "right_navigation_tabs/fill": { "file": "ui/cartography_screen_pocket.json", "type": "panel" }, "right_navigation_tabs/right_tab_cartography": { "file": "ui/cartography_screen_pocket.json", "type": "panel", "extend": { "name": "right_tab_cartography", "namespace": "cartography_pocket" } }, "input_slots_stack_panel": { "file": "ui/cartography_screen_pocket.json", "type": "stack_panel", "children": [ "input_item_slot" ] }, "input_slots_stack_panel/input_item_slot": { "file": "ui/cartography_screen_pocket.json", "type": "input_panel", "extend": { "name": "input_item_slot", "namespace": "cartography_pocket" } }, "input_slots": { "file": "ui/cartography_screen_pocket.json", "type": "stack_panel", "children": [ "input_item_slot", "plus_centerer", "additional_item_slot" ] }, "input_slots/input_item_slot": { "file": "ui/cartography_screen_pocket.json", "type": "input_panel", "extend": { "name": "input_item_slot", "namespace": "cartography_pocket" } }, "input_slots/plus_centerer": { "file": "ui/cartography_screen_pocket.json", "type": "panel", "children": [ "plus_sign_icon" ] }, "input_slots/plus_centerer/plus_sign_icon": { "file": "ui/cartography_screen_pocket.json", "type": "image", "extend": { "name": "plus_sign_icon", "namespace": "cartography" } }, "input_slots/additional_item_slot": { "file": "ui/cartography_screen_pocket.json", "type": "input_panel", "extend": { "name": "additional_item_slot", "namespace": "cartography_pocket" } }, "cartography_content_stack_panel": { "file": "ui/cartography_screen_pocket.json", "type": "stack_panel", "children": [ "label_holder", "padding_1", "panel", "padding_2", "map_centerer", "description_centerer", "padding_3", "arrow_centerer", "padding_4", "result_centerer", "filling_panel", "text_box_panel" ] }, "cartography_content_stack_panel/label_holder": { "file": "ui/cartography_screen_pocket.json", "type": "panel", "children": [ "cartography_label" ] }, "cartography_content_stack_panel/label_holder/cartography_label": { "file": "ui/cartography_screen_pocket.json", "type": "label", "extend": { "name": "title_label", "namespace": "cartography" } }, "cartography_content_stack_panel/padding_1": { "file": "ui/cartography_screen_pocket.json", "type": "panel" }, "cartography_content_stack_panel/panel": { "file": "ui/cartography_screen_pocket.json", "type": "panel", "children": [ "input_slots" ] }, "cartography_content_stack_panel/panel/input_slots": { "file": "ui/cartography_screen_pocket.json", "type": "stack_panel", "extend": { "name": "input_slots", "namespace": "cartography_pocket" } }, "cartography_content_stack_panel/padding_2": { "file": "ui/cartography_screen_pocket.json", "type": "panel" }, "cartography_content_stack_panel/map_centerer": { "file": "ui/cartography_screen_pocket.json", "type": "panel", "children": [ "map_image_panel" ] }, "cartography_content_stack_panel/map_centerer/map_image_panel": { "file": "ui/cartography_screen_pocket.json", "type": "panel", "extend": { "name": "map_image_panel", "namespace": "cartography" } }, "cartography_content_stack_panel/description_centerer": { "file": "ui/cartography_screen_pocket.json", "type": "panel", "children": [ "output_description_label" ] }, "cartography_content_stack_panel/description_centerer/output_description_label": { "file": "ui/cartography_screen_pocket.json", "type": "label", "extend": { "name": "output_description_label", "namespace": "cartography" } }, "cartography_content_stack_panel/padding_3": { "file": "ui/cartography_screen_pocket.json", "type": "panel" }, "cartography_content_stack_panel/arrow_centerer": { "file": "ui/cartography_screen_pocket.json", "type": "panel", "children": [ "vertical_arrow_icon" ] }, "cartography_content_stack_panel/arrow_centerer/vertical_arrow_icon": { "file": "ui/cartography_screen_pocket.json", "type": "image", "extend": { "name": "vertical_arrow_icon", "namespace": "cartography_pocket" } }, "cartography_content_stack_panel/padding_4": { "file": "ui/cartography_screen_pocket.json", "type": "panel" }, "cartography_content_stack_panel/result_centerer": { "file": "ui/cartography_screen_pocket.json", "type": "panel", "children": [ "result_item_slot" ] }, "cartography_content_stack_panel/result_centerer/result_item_slot": { "file": "ui/cartography_screen_pocket.json", "type": "input_panel", "extend": { "name": "result_item_slot", "namespace": "cartography_pocket" } }, "cartography_content_stack_panel/filling_panel": { "file": "ui/cartography_screen_pocket.json", "type": "panel" }, "cartography_content_stack_panel/text_box_panel": { "file": "ui/cartography_screen_pocket.json", "type": "stack_panel", "extend": { "name": "text_box_panel", "namespace": "cartography" } }, "inventory_panel": { "file": "ui/cartography_screen_pocket.json", "type": "stack_panel", "children": [ "inventory_title_label_centerer", "inventory_scroll_panel" ] }, "inventory_panel/inventory_title_label_centerer": { "file": "ui/cartography_screen_pocket.json", "type": "panel", "children": [ "inventory_title_label" ] }, "inventory_panel/inventory_title_label_centerer/inventory_title_label": { "file": "ui/cartography_screen_pocket.json", "type": "label" }, "inventory_panel/inventory_scroll_panel": { "file": "ui/cartography_screen_pocket.json", "type": "panel", "extend": { "name": "inventory_scroll_panel", "namespace": "cartography_pocket" } }, "inventory_scroll_panel": { "file": "ui/cartography_screen_pocket.json", "type": "panel", "extend": { "name": "container_scroll_panel", "namespace": "common" } }, "pattern_button": { "file": "ui/cartography_screen_pocket.json", "type": "unknown", "extend": { "name": "stone_button", "namespace": "cartography" } }, "pattern_scroll_panel": { "file": "ui/cartography_screen_pocket.json", "type": "unknown", "extend": { "name": "scroll_panel", "namespace": "cartography" } }, "left_panel": { "file": "ui/cartography_screen_pocket.json", "type": "stack_panel", "children": [ "gamepad_helpers_and_tabs_holder", "content" ] }, "left_panel/gamepad_helpers_and_tabs_holder": { "file": "ui/cartography_screen_pocket.json", "type": "panel", "children": [ "tabs_left_gamepad_helpers", "navigation_tabs_holder" ] }, "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": { "file": "ui/cartography_screen_pocket.json", "type": "panel", "extend": { "name": "tabs_left_gamepad_helpers", "namespace": "common" } }, "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": { "file": "ui/cartography_screen_pocket.json", "type": "panel", "children": [ "left_navigation_tabs" ] }, "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": { "file": "ui/cartography_screen_pocket.json", "type": "stack_panel", "extend": { "name": "left_navigation_tabs", "namespace": "cartography_pocket" } }, "left_panel/content": { "file": "ui/cartography_screen_pocket.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "bg", "inventory_panel" ] }, "left_panel/content/bg": { "file": "ui/cartography_screen_pocket.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "left_panel/content/inventory_panel": { "file": "ui/cartography_screen_pocket.json", "type": "stack_panel", "extend": { "name": "inventory_panel", "namespace": "cartography_pocket" } }, "left_tab_inventory": { "file": "ui/cartography_screen_pocket.json", "type": "panel", "extend": { "name": "pocket_tab_left", "namespace": "common_tabs" } }, "left_navigation_tabs": { "file": "ui/cartography_screen_pocket.json", "type": "stack_panel", "children": [ "padding", "left_tab_inventory" ] }, "left_navigation_tabs/padding": { "file": "ui/cartography_screen_pocket.json", "type": "panel" }, "left_navigation_tabs/left_tab_inventory": { "file": "ui/cartography_screen_pocket.json", "type": "panel", "extend": { "name": "left_tab_inventory", "namespace": "cartography_pocket" } }, "pocket_hotbar_and_content_panels": { "file": "ui/cartography_screen_pocket.json", "type": "stack_panel", "extend": { "name": "pocket_hotbar_and_content_panels", "namespace": "common" } }, "cartography_panel": { "file": "ui/cartography_screen_pocket.json", "type": "panel", "children": [ "pocket_hotbar_and_content_panels", "container_gamepad_helpers", "selected_item_details_factory", "item_lock_notification_factory", "inventory_selected_icon_button", "inventory_take_progress_icon_button", "flying_item_renderer" ] }, "cartography_panel/pocket_hotbar_and_content_panels": { "file": "ui/cartography_screen_pocket.json", "type": "stack_panel", "extend": { "name": "pocket_hotbar_and_content_panels", "namespace": "cartography_pocket" } }, "cartography_panel/container_gamepad_helpers": { "file": "ui/cartography_screen_pocket.json", "type": "stack_panel", "extend": { "name": "container_gamepad_helpers", "namespace": "common" } }, "cartography_panel/selected_item_details_factory": { "file": "ui/cartography_screen_pocket.json", "type": "factory", "extend": { "name": "selected_item_details_factory", "namespace": "common" } }, "cartography_panel/item_lock_notification_factory": { "file": "ui/cartography_screen_pocket.json", "type": "factory", "extend": { "name": "item_lock_notification_factory", "namespace": "common" } }, "cartography_panel/inventory_selected_icon_button": { "file": "ui/cartography_screen_pocket.json", "type": "button", "extend": { "name": "inventory_selected_icon_button", "namespace": "common" } }, "cartography_panel/inventory_take_progress_icon_button": { "file": "ui/cartography_screen_pocket.json", "type": "button", "extend": { "name": "inventory_take_progress_icon_button", "namespace": "common" } }, "cartography_panel/flying_item_renderer": { "file": "ui/cartography_screen_pocket.json", "type": "custom", "extend": { "name": "flying_item_renderer", "namespace": "common" } } }, "chalkboard": { "text_edit_control": { "file": "ui/chalkboard_screen.json", "type": "edit_box", "extend": { "name": "multiline_text_edit_box", "namespace": "common" } }, "locked_toggle": { "file": "ui/chalkboard_screen.json", "type": "toggle", "extend": { "name": "slider_toggle", "namespace": "edu_common" } }, "locked_label": { "file": "ui/chalkboard_screen.json", "type": "label", "extend": { "name": "dark_label", "namespace": "edu_common" } }, "lock_control": { "file": "ui/chalkboard_screen.json", "type": "stack_panel", "children": [ "toggle", "pad_wrap" ] }, "lock_control/toggle": { "file": "ui/chalkboard_screen.json", "type": "toggle", "extend": { "name": "locked_toggle", "namespace": "chalkboard" } }, "lock_control/pad_wrap": { "file": "ui/chalkboard_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "label" ] }, "lock_control/pad_wrap/label": { "file": "ui/chalkboard_screen.json", "type": "label", "extend": { "name": "locked_label", "namespace": "chalkboard" } }, "gamepad_helpers": { "file": "ui/chalkboard_screen.json", "type": "panel", "children": [ "gamepad_helper_a" ] }, "gamepad_helpers/gamepad_helper_a": { "file": "ui/chalkboard_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_a", "namespace": "common" } }, "chalkboard_screen": { "file": "ui/chalkboard_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "chalkboard_root": { "file": "ui/chalkboard_screen.json", "type": "panel", "extend": { "name": "main_panel_no_buttons", "namespace": "common_dialogs" } }, "chalkboard_content": { "file": "ui/chalkboard_screen.json", "type": "panel", "children": [ "gamepad_helpers", "edit_box", "locked_toggle" ] }, "chalkboard_content/gamepad_helpers": { "file": "ui/chalkboard_screen.json", "type": "panel", "extend": { "name": "gamepad_helpers", "namespace": "chalkboard" } }, "chalkboard_content/edit_box": { "file": "ui/chalkboard_screen.json", "type": "edit_box", "extend": { "name": "text_edit_control", "namespace": "chalkboard" } }, "chalkboard_content/locked_toggle": { "file": "ui/chalkboard_screen.json", "type": "stack_panel", "extend": { "name": "lock_control", "namespace": "chalkboard" } } }, "chat": { "down_arrow_image": { "file": "ui/chat_screen.json", "type": "image" }, "keyboard_image": { "file": "ui/chat_screen.json", "type": "image" }, "copy_image": { "file": "ui/chat_screen.json", "type": "image" }, "paste_image": { "file": "ui/chat_screen.json", "type": "image" }, "gear_image": { "file": "ui/chat_screen.json", "type": "image" }, "send_image": { "file": "ui/chat_screen.json", "type": "image" }, "send_panel": { "file": "ui/chat_screen.json", "type": "stack_panel", "children": [ "send_image_panel", "gamepad_x_button" ] }, "send_panel/send_image_panel": { "file": "ui/chat_screen.json", "type": "panel", "children": [ "send_image" ] }, "send_panel/send_image_panel/send_image": { "file": "ui/chat_screen.json", "type": "image", "extend": { "name": "send_image", "namespace": "chat" } }, "send_panel/gamepad_x_button": { "file": "ui/chat_screen.json", "type": "stack_panel", "children": [ "side_padding", "gamepad_x_button_image" ] }, "send_panel/gamepad_x_button/side_padding": { "file": "ui/chat_screen.json", "type": "panel" }, "send_panel/gamepad_x_button/gamepad_x_button_image": { "file": "ui/chat_screen.json", "type": "panel", "children": [ "icon" ] }, "send_panel/gamepad_x_button/gamepad_x_button_image/icon": { "file": "ui/chat_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_x", "namespace": "common" } }, "keyboard_image_panel": { "file": "ui/chat_screen.json", "type": "panel", "children": [ "keyboard_image", "down_arrow_image" ] }, "keyboard_image_panel/keyboard_image": { "file": "ui/chat_screen.json", "type": "image", "extend": { "name": "keyboard_image", "namespace": "chat" } }, "keyboard_image_panel/down_arrow_image": { "file": "ui/chat_screen.json", "type": "image", "extend": { "name": "down_arrow_image", "namespace": "chat" } }, "new_messages": { "file": "ui/chat_screen.json", "type": "image", "children": [ "focus_border" ] }, "new_messages/focus_border": { "file": "ui/chat_screen.json", "type": "image", "extend": { "name": "focus_border", "namespace": "common_buttons" }, "children": [ "stack" ] }, "new_messages/focus_border/stack": { "file": "ui/chat_screen.json", "type": "stack_panel", "children": [ "arrow_icon", "separator", "tooltip_text" ] }, "new_messages/focus_border/stack/arrow_icon": { "file": "ui/chat_screen.json", "type": "image" }, "new_messages/focus_border/stack/separator": { "file": "ui/chat_screen.json", "type": "panel" }, "new_messages/focus_border/stack/tooltip_text": { "file": "ui/chat_screen.json", "type": "label" }, "small_button": { "file": "ui/chat_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "keyboard_button": { "file": "ui/chat_screen.json", "type": "button", "extend": { "name": "small_button", "namespace": "chat" } }, "chat_settings_button": { "file": "ui/chat_screen.json", "type": "button", "extend": { "name": "small_button", "namespace": "chat" } }, "send_button": { "file": "ui/chat_screen.json", "type": "button", "extend": { "name": "light_text_form_fitting_button", "namespace": "common_buttons" } }, "new_messages_button": { "file": "ui/chat_screen.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "pressed", "hover" ] }, "new_messages_button/default": { "file": "ui/chat_screen.json", "type": "image", "extend": { "name": "new_messages", "namespace": "chat" } }, "new_messages_button/pressed": { "file": "ui/chat_screen.json", "type": "image", "extend": { "name": "new_messages", "namespace": "chat" } }, "new_messages_button/hover": { "file": "ui/chat_screen.json", "type": "image", "extend": { "name": "new_messages", "namespace": "chat" } }, "messages_text": { "file": "ui/chat_screen.json", "type": "panel", "children": [ "text" ] }, "messages_text/text": { "file": "ui/chat_screen.json", "type": "label" }, "message_tts_wrapper": { "file": "ui/chat_screen.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "messages_stack_panel": { "file": "ui/chat_screen.json", "type": "stack_panel" }, "messages_scrolling_panel": { "file": "ui/chat_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "text_edit_box": { "file": "ui/chat_screen.json", "type": "edit_box", "extend": { "name": "text_edit_box", "namespace": "common" } }, "commands_background": { "file": "ui/chat_screen.json", "type": "image" }, "click_autocomplete_is_focused": { "file": "ui/chat_screen.json", "type": "image" }, "auto_complete_panel_contents_with_item": { "file": "ui/chat_screen.json", "type": "panel", "children": [ "auto_complete_item_renderer", "text", "autocomplete_button" ] }, "auto_complete_panel_contents_with_item/auto_complete_item_renderer": { "file": "ui/chat_screen.json", "type": "custom", "extend": { "name": "item_renderer", "namespace": "common" } }, "auto_complete_panel_contents_with_item/text": { "file": "ui/chat_screen.json", "type": "label" }, "auto_complete_panel_contents_with_item/autocomplete_button": { "file": "ui/chat_screen.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed" ] }, "auto_complete_panel_contents_with_item/autocomplete_button/default": { "file": "ui/chat_screen.json", "type": "panel" }, "auto_complete_panel_contents_with_item/autocomplete_button/hover": { "file": "ui/chat_screen.json", "type": "image", "extend": { "name": "click_autocomplete_is_focused", "namespace": "chat" } }, "auto_complete_panel_contents_with_item/autocomplete_button/pressed": { "file": "ui/chat_screen.json", "type": "image", "extend": { "name": "click_autocomplete_is_focused", "namespace": "chat" } }, "auto_complete_panel": { "file": "ui/chat_screen.json", "type": "panel", "children": [ "panel" ] }, "auto_complete_panel/panel": { "file": "ui/chat_screen.json", "type": "panel", "children": [ "auto_complete_grid" ] }, "auto_complete_panel/panel/auto_complete_grid": { "file": "ui/chat_screen.json", "type": "grid" }, "commands_panel": { "file": "ui/chat_screen.json", "type": "panel", "children": [ "auto_complete_panel" ] }, "commands_panel/auto_complete_panel": { "file": "ui/chat_screen.json", "type": "panel", "extend": { "name": "auto_complete_panel", "namespace": "chat" } }, "chat_bottom_panel": { "file": "ui/chat_screen.json", "type": "stack_panel", "children": [ "keyboard_button", "host_main_button", "chat_settings", "text_box", "send_button" ] }, "chat_bottom_panel/keyboard_button": { "file": "ui/chat_screen.json", "type": "button", "extend": { "name": "keyboard_button", "namespace": "chat" } }, "chat_bottom_panel/host_main_button": { "file": "ui/chat_screen.json", "type": "button", "extend": { "name": "host_main_button", "namespace": "host_options" } }, "chat_bottom_panel/chat_settings": { "file": "ui/chat_screen.json", "type": "button", "extend": { "name": "chat_settings_button", "namespace": "chat" } }, "chat_bottom_panel/text_box": { "file": "ui/chat_screen.json", "type": "edit_box", "extend": { "name": "text_edit_box", "namespace": "chat" } }, "chat_bottom_panel/send_button": { "file": "ui/chat_screen.json", "type": "button", "extend": { "name": "send_button", "namespace": "chat" } }, "title_text": { "file": "ui/chat_screen.json", "type": "panel", "children": [ "title_panel" ] }, "title_text/title_panel": { "file": "ui/chat_screen.json", "type": "label" }, "back_content_panel": { "file": "ui/chat_screen.json", "type": "panel", "children": [ "back_button", "gamepad_back_helper" ] }, "back_content_panel/back_button": { "file": "ui/chat_screen.json", "type": "button", "extend": { "name": "back_button", "namespace": "common" } }, "back_content_panel/gamepad_back_helper": { "file": "ui/chat_screen.json", "type": "input_panel", "children": [ "gamepad_helper_button" ] }, "back_content_panel/gamepad_back_helper/gamepad_helper_button": { "file": "ui/chat_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_b", "namespace": "common" } }, "coordinate_dropdown_content": { "file": "ui/chat_screen.json", "type": "stack_panel", "children": [ "top_padding", "my_position", "block_position", "bottom_padding" ] }, "coordinate_dropdown_content/top_padding": { "file": "ui/chat_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "coordinate_dropdown_content/my_position": { "file": "ui/chat_screen.json", "type": "panel", "extend": { "name": "radio_item_with_label_and_content", "namespace": "settings_common" } }, "coordinate_dropdown_content/block_position": { "file": "ui/chat_screen.json", "type": "panel", "extend": { "name": "radio_item_with_label_and_content", "namespace": "settings_common" } }, "coordinate_dropdown_content/bottom_padding": { "file": "ui/chat_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "coordinate_dropdown": { "file": "ui/chat_screen.json", "type": "panel", "extend": { "name": "option_dropdown_no_scroll", "namespace": "settings_common" } }, "popup_toast": { "file": "ui/chat_screen.json", "type": "input_panel", "extend": { "name": "popup_common", "namespace": "persona_popups" } }, "copy_coordinate_button": { "file": "ui/chat_screen.json", "type": "button", "extend": { "name": "small_button", "namespace": "chat" } }, "paste_button": { "file": "ui/chat_screen.json", "type": "button", "extend": { "name": "small_button", "namespace": "chat" } }, "chat_header": { "file": "ui/chat_screen.json", "type": "image", "extend": { "name": "store_top_bar", "namespace": "common_store" }, "children": [ "title_panel" ] }, "chat_header/title_panel": { "file": "ui/chat_screen.json", "type": "panel", "children": [ "back_button_content_panel", "title", "popup_dialog_factory", "chat_header_content_area" ] }, "chat_header/title_panel/back_button_content_panel": { "file": "ui/chat_screen.json", "type": "panel", "extend": { "name": "back_content_panel", "namespace": "chat" } }, "chat_header/title_panel/title": { "file": "ui/chat_screen.json", "type": "panel", "extend": { "name": "title_text", "namespace": "chat" } }, "chat_header/title_panel/popup_dialog_factory": { "file": "ui/chat_screen.json", "type": "factory" }, "chat_header/title_panel/chat_header_content_area": { "file": "ui/chat_screen.json", "type": "stack_panel", "children": [ "coordinate_dropdown", "coordinates_panel", "copy_coordinate_button", "icon", "paste_button" ] }, "chat_header/title_panel/chat_header_content_area/coordinate_dropdown": { "file": "ui/chat_screen.json", "type": "panel", "extend": { "name": "coordinate_dropdown", "namespace": "chat" } }, "chat_header/title_panel/chat_header_content_area/coordinates_panel": { "file": "ui/chat_screen.json", "type": "panel", "children": [ "coordinates_background_image" ] }, "chat_header/title_panel/chat_header_content_area/coordinates_panel/coordinates_background_image": { "file": "ui/chat_screen.json", "type": "image", "children": [ "coordinates_text" ] }, "chat_header/title_panel/chat_header_content_area/coordinates_panel/coordinates_background_image/coordinates_text": { "file": "ui/chat_screen.json", "type": "label" }, "chat_header/title_panel/chat_header_content_area/copy_coordinate_button": { "file": "ui/chat_screen.json", "type": "button", "extend": { "name": "copy_coordinate_button", "namespace": "chat" } }, "chat_header/title_panel/chat_header_content_area/icon": { "file": "ui/chat_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_y", "namespace": "common" } }, "chat_header/title_panel/chat_header_content_area/paste_button": { "file": "ui/chat_screen.json", "type": "button", "extend": { "name": "paste_button", "namespace": "chat" } }, "chat_screen": { "file": "ui/chat_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "chat_screen_content": { "file": "ui/chat_screen.json", "type": "panel", "children": [ "messages_panel", "chat_bottom_panel", "chat_top_panel", "new_messages_button", "autocomplete_commands_panel", "host_main_panel", "popup_factory" ] }, "chat_screen_content/messages_panel": { "file": "ui/chat_screen.json", "type": "panel", "extend": { "name": "messages_scrolling_panel", "namespace": "chat" } }, "chat_screen_content/chat_bottom_panel": { "file": "ui/chat_screen.json", "type": "stack_panel", "extend": { "name": "chat_bottom_panel", "namespace": "chat" } }, "chat_screen_content/chat_top_panel": { "file": "ui/chat_screen.json", "type": "image", "extend": { "name": "chat_header", "namespace": "chat" } }, "chat_screen_content/new_messages_button": { "file": "ui/chat_screen.json", "type": "button", "extend": { "name": "new_messages_button", "namespace": "chat" } }, "chat_screen_content/autocomplete_commands_panel": { "file": "ui/chat_screen.json", "type": "panel", "extend": { "name": "commands_panel", "namespace": "chat" } }, "chat_screen_content/host_main_panel": { "file": "ui/chat_screen.json", "type": "panel", "extend": { "name": "host_panel", "namespace": "host_options" } }, "chat_screen_content/popup_factory": { "file": "ui/chat_screen.json", "type": "factory", "extend": { "name": "popup_factory", "namespace": "chat_settings" } }, "chat_background": { "file": "ui/chat_screen.json", "type": "image" } }, "chat_settings": { "mute_all_toggle": { "file": "ui/chat_settings_menu_screen.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "mute_emote_chat_toggle": { "file": "ui/chat_settings_menu_screen.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "chat_tts_toggle": { "file": "ui/chat_settings_menu_screen.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "reset_button": { "file": "ui/chat_settings_menu_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "typeface_dropdown_content": { "file": "ui/chat_settings_menu_screen.json", "type": "stack_panel", "children": [ "top_padding", "mojangles", "noto_sans", "bottom_padding" ] }, "typeface_dropdown_content/top_padding": { "file": "ui/chat_settings_menu_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "typeface_dropdown_content/mojangles": { "file": "ui/chat_settings_menu_screen.json", "type": "panel", "extend": { "name": "radio_item_with_label_and_content", "namespace": "settings_common" } }, "typeface_dropdown_content/noto_sans": { "file": "ui/chat_settings_menu_screen.json", "type": "panel", "extend": { "name": "radio_item_with_label_and_content", "namespace": "settings_common" } }, "typeface_dropdown_content/bottom_padding": { "file": "ui/chat_settings_menu_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "typeface_dropdown": { "file": "ui/chat_settings_menu_screen.json", "type": "panel", "extend": { "name": "option_dropdown_no_scroll", "namespace": "settings_common" } }, "chat_color_dropdown_content": { "file": "ui/chat_settings_menu_screen.json", "type": "stack_panel", "children": [ "top_padding", "0", "1", "2", "3", "4", "5", "6", "bottom_padding" ] }, "chat_color_dropdown_content/top_padding": { "file": "ui/chat_settings_menu_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "chat_color_dropdown_content/0": { "file": "ui/chat_settings_menu_screen.json", "type": "panel", "extend": { "name": "radio_item_with_label_and_content", "namespace": "settings_common" } }, "chat_color_dropdown_content/1": { "file": "ui/chat_settings_menu_screen.json", "type": "panel", "extend": { "name": "radio_item_with_label_and_content", "namespace": "settings_common" } }, "chat_color_dropdown_content/2": { "file": "ui/chat_settings_menu_screen.json", "type": "panel", "extend": { "name": "radio_item_with_label_and_content", "namespace": "settings_common" } }, "chat_color_dropdown_content/3": { "file": "ui/chat_settings_menu_screen.json", "type": "panel", "extend": { "name": "radio_item_with_label_and_content", "namespace": "settings_common" } }, "chat_color_dropdown_content/4": { "file": "ui/chat_settings_menu_screen.json", "type": "panel", "extend": { "name": "radio_item_with_label_and_content", "namespace": "settings_common" } }, "chat_color_dropdown_content/5": { "file": "ui/chat_settings_menu_screen.json", "type": "panel", "extend": { "name": "radio_item_with_label_and_content", "namespace": "settings_common" } }, "chat_color_dropdown_content/6": { "file": "ui/chat_settings_menu_screen.json", "type": "panel", "extend": { "name": "radio_item_with_label_and_content", "namespace": "settings_common" } }, "chat_color_dropdown_content/bottom_padding": { "file": "ui/chat_settings_menu_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "colors_dropdown_base": { "file": "ui/chat_settings_menu_screen.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "chat_color_dropdown": { "file": "ui/chat_settings_menu_screen.json", "type": "panel", "extend": { "name": "colors_dropdown_base", "namespace": "chat_settings" } }, "mentions_color_dropdown": { "file": "ui/chat_settings_menu_screen.json", "type": "panel", "extend": { "name": "colors_dropdown_base", "namespace": "chat_settings" } }, "font_size_slider": { "file": "ui/chat_settings_menu_screen.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "line_spacing_slider": { "file": "ui/chat_settings_menu_screen.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "colored_icon_panel": { "file": "ui/chat_settings_menu_screen.json", "type": "panel", "children": [ "icon", "icon_overlay" ] }, "colored_icon_panel/icon": { "file": "ui/chat_settings_menu_screen.json", "type": "image" }, "colored_icon_panel/icon_overlay": { "file": "ui/chat_settings_menu_screen.json", "type": "image" }, "paintbrush": { "file": "ui/chat_settings_menu_screen.json", "type": "panel", "extend": { "name": "colored_icon_panel", "namespace": "chat_settings" } }, "line_break": { "file": "ui/chat_settings_menu_screen.json", "type": "panel", "children": [ "line_break_image" ] }, "line_break/line_break_image": { "file": "ui/chat_settings_menu_screen.json", "type": "image" }, "chat_settings_scrolling_content": { "file": "ui/chat_settings_menu_screen.json", "type": "panel", "children": [ "chat_settings_content_area" ] }, "chat_settings_scrolling_content/chat_settings_content_area": { "file": "ui/chat_settings_menu_screen.json", "type": "stack_panel", "children": [ "mute_all_toggle", "mute_emote_chat_toggle", "chat_tts_toggle", "toggles_to_font_shape", "typeface_dropdown", "font_size", "line_spacing", "font_shape_to_font_colors", "chat_color", "mentions_color", "reset_button" ] }, "chat_settings_scrolling_content/chat_settings_content_area/mute_all_toggle": { "file": "ui/chat_settings_menu_screen.json", "type": "panel", "extend": { "name": "mute_all_toggle", "namespace": "chat_settings" } }, "chat_settings_scrolling_content/chat_settings_content_area/mute_emote_chat_toggle": { "file": "ui/chat_settings_menu_screen.json", "type": "panel", "extend": { "name": "mute_emote_chat_toggle", "namespace": "chat_settings" } }, "chat_settings_scrolling_content/chat_settings_content_area/chat_tts_toggle": { "file": "ui/chat_settings_menu_screen.json", "type": "panel", "extend": { "name": "chat_tts_toggle", "namespace": "chat_settings" } }, "chat_settings_scrolling_content/chat_settings_content_area/toggles_to_font_shape": { "file": "ui/chat_settings_menu_screen.json", "type": "panel", "extend": { "name": "line_break", "namespace": "chat_settings" } }, "chat_settings_scrolling_content/chat_settings_content_area/typeface_dropdown": { "file": "ui/chat_settings_menu_screen.json", "type": "panel", "extend": { "name": "typeface_dropdown", "namespace": "chat_settings" } }, "chat_settings_scrolling_content/chat_settings_content_area/font_size": { "file": "ui/chat_settings_menu_screen.json", "type": "panel", "extend": { "name": "font_size_slider", "namespace": "chat_settings" } }, "chat_settings_scrolling_content/chat_settings_content_area/line_spacing": { "file": "ui/chat_settings_menu_screen.json", "type": "panel", "extend": { "name": "line_spacing_slider", "namespace": "chat_settings" } }, "chat_settings_scrolling_content/chat_settings_content_area/font_shape_to_font_colors": { "file": "ui/chat_settings_menu_screen.json", "type": "panel", "extend": { "name": "line_break", "namespace": "chat_settings" } }, "chat_settings_scrolling_content/chat_settings_content_area/chat_color": { "file": "ui/chat_settings_menu_screen.json", "type": "panel", "extend": { "name": "chat_color_dropdown", "namespace": "chat_settings" } }, "chat_settings_scrolling_content/chat_settings_content_area/mentions_color": { "file": "ui/chat_settings_menu_screen.json", "type": "panel", "extend": { "name": "mentions_color_dropdown", "namespace": "chat_settings" } }, "chat_settings_scrolling_content/chat_settings_content_area/reset_button": { "file": "ui/chat_settings_menu_screen.json", "type": "button", "extend": { "name": "reset_button", "namespace": "chat_settings" } }, "chat_setting_scrolling_panel": { "file": "ui/chat_settings_menu_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "chat_settings_popup": { "file": "ui/chat_settings_menu_screen.json", "type": "input_panel", "extend": { "name": "form_fit_modal_dialog_popup", "namespace": "popup_dialog" } }, "popup_factory": { "file": "ui/chat_settings_menu_screen.json", "type": "factory" } }, "chest": { "chest_label": { "file": "ui/chest_screen.json", "type": "label" }, "chest_grid_item": { "file": "ui/chest_screen.json", "type": "input_panel", "extend": { "name": "container_item", "namespace": "common" } }, "small_chest_grid": { "file": "ui/chest_screen.json", "type": "grid" }, "large_chest_grid": { "file": "ui/chest_screen.json", "type": "grid" }, "small_chest_panel_top_half": { "file": "ui/chest_screen.json", "type": "panel", "children": [ "chest_label", "small_chest_grid" ] }, "small_chest_panel_top_half/chest_label": { "file": "ui/chest_screen.json", "type": "label", "extend": { "name": "chest_label", "namespace": "chest" } }, "small_chest_panel_top_half/small_chest_grid": { "file": "ui/chest_screen.json", "type": "grid", "extend": { "name": "small_chest_grid", "namespace": "chest" } }, "large_chest_panel_top_half": { "file": "ui/chest_screen.json", "type": "panel", "children": [ "chest_label", "large_chest_grid" ] }, "large_chest_panel_top_half/chest_label": { "file": "ui/chest_screen.json", "type": "label", "extend": { "name": "chest_label", "namespace": "chest" } }, "large_chest_panel_top_half/large_chest_grid": { "file": "ui/chest_screen.json", "type": "grid", "extend": { "name": "large_chest_grid", "namespace": "chest" } }, "small_chest_panel": { "file": "ui/chest_screen.json", "type": "panel", "children": [ "container_gamepad_helpers", "selected_item_details_factory", "item_lock_notification_factory", "root_panel" ] }, "small_chest_panel/container_gamepad_helpers": { "file": "ui/chest_screen.json", "type": "stack_panel", "extend": { "name": "container_gamepad_helpers", "namespace": "common" } }, "small_chest_panel/selected_item_details_factory": { "file": "ui/chest_screen.json", "type": "factory", "extend": { "name": "selected_item_details_factory", "namespace": "common" } }, "small_chest_panel/item_lock_notification_factory": { "file": "ui/chest_screen.json", "type": "factory", "extend": { "name": "item_lock_notification_factory", "namespace": "common" } }, "small_chest_panel/root_panel": { "file": "ui/chest_screen.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "common_panel", "chest_panel", "inventory_selected_icon_button", "gamepad_cursor" ] }, "small_chest_panel/root_panel/common_panel": { "file": "ui/chest_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "small_chest_panel/root_panel/chest_panel": { "file": "ui/chest_screen.json", "type": "panel", "children": [ "small_chest_panel_top_half", "inventory_panel_bottom_half_with_label", "hotbar_grid", "inventory_take_progress_icon_button", "flying_item_renderer" ] }, "small_chest_panel/root_panel/chest_panel/small_chest_panel_top_half": { "file": "ui/chest_screen.json", "type": "panel", "extend": { "name": "small_chest_panel_top_half", "namespace": "chest" } }, "small_chest_panel/root_panel/chest_panel/inventory_panel_bottom_half_with_label": { "file": "ui/chest_screen.json", "type": "panel", "extend": { "name": "inventory_panel_bottom_half_with_label", "namespace": "common" } }, "small_chest_panel/root_panel/chest_panel/hotbar_grid": { "file": "ui/chest_screen.json", "type": "grid", "extend": { "name": "hotbar_grid_template", "namespace": "common" } }, "small_chest_panel/root_panel/chest_panel/inventory_take_progress_icon_button": { "file": "ui/chest_screen.json", "type": "button", "extend": { "name": "inventory_take_progress_icon_button", "namespace": "common" } }, "small_chest_panel/root_panel/chest_panel/flying_item_renderer": { "file": "ui/chest_screen.json", "type": "custom", "extend": { "name": "flying_item_renderer", "namespace": "common" } }, "small_chest_panel/root_panel/inventory_selected_icon_button": { "file": "ui/chest_screen.json", "type": "button", "extend": { "name": "inventory_selected_icon_button", "namespace": "common" } }, "small_chest_panel/root_panel/gamepad_cursor": { "file": "ui/chest_screen.json", "type": "button", "extend": { "name": "gamepad_cursor_button", "namespace": "common" } }, "selected_item_details": { "file": "ui/chest_screen.json", "type": "panel", "extend": { "name": "selected_item_details", "namespace": "common" } }, "large_chest_panel": { "file": "ui/chest_screen.json", "type": "panel", "children": [ "container_gamepad_helpers", "selected_item_details_factory", "item_lock_notification_factory", "root_panel" ] }, "large_chest_panel/container_gamepad_helpers": { "file": "ui/chest_screen.json", "type": "stack_panel", "extend": { "name": "container_gamepad_helpers", "namespace": "common" } }, "large_chest_panel/selected_item_details_factory": { "file": "ui/chest_screen.json", "type": "factory", "extend": { "name": "selected_item_details_factory", "namespace": "common" } }, "large_chest_panel/item_lock_notification_factory": { "file": "ui/chest_screen.json", "type": "factory", "extend": { "name": "item_lock_notification_factory", "namespace": "common" } }, "large_chest_panel/root_panel": { "file": "ui/chest_screen.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "common_panel", "chest_panel", "inventory_selected_icon_button", "gamepad_cursor" ] }, "large_chest_panel/root_panel/common_panel": { "file": "ui/chest_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "large_chest_panel/root_panel/chest_panel": { "file": "ui/chest_screen.json", "type": "panel", "children": [ "large_chest_panel_top_half", "inventory_panel_bottom_half_with_label", "hotbar_grid", "inventory_take_progress_icon_button", "flying_item_renderer" ] }, "large_chest_panel/root_panel/chest_panel/large_chest_panel_top_half": { "file": "ui/chest_screen.json", "type": "panel", "extend": { "name": "large_chest_panel_top_half", "namespace": "chest" } }, "large_chest_panel/root_panel/chest_panel/inventory_panel_bottom_half_with_label": { "file": "ui/chest_screen.json", "type": "panel", "extend": { "name": "inventory_panel_bottom_half_with_label", "namespace": "common" } }, "large_chest_panel/root_panel/chest_panel/hotbar_grid": { "file": "ui/chest_screen.json", "type": "grid", "extend": { "name": "hotbar_grid_template", "namespace": "common" } }, "large_chest_panel/root_panel/chest_panel/inventory_take_progress_icon_button": { "file": "ui/chest_screen.json", "type": "button", "extend": { "name": "inventory_take_progress_icon_button", "namespace": "common" } }, "large_chest_panel/root_panel/chest_panel/flying_item_renderer": { "file": "ui/chest_screen.json", "type": "custom", "extend": { "name": "flying_item_renderer", "namespace": "common" } }, "large_chest_panel/root_panel/inventory_selected_icon_button": { "file": "ui/chest_screen.json", "type": "button", "extend": { "name": "inventory_selected_icon_button", "namespace": "common" } }, "large_chest_panel/root_panel/gamepad_cursor": { "file": "ui/chest_screen.json", "type": "button", "extend": { "name": "gamepad_cursor_button", "namespace": "common" } }, "ender_chest_panel": { "file": "ui/chest_screen.json", "type": "panel", "extend": { "name": "small_chest_panel", "namespace": "chest" } }, "shulker_box_panel": { "file": "ui/chest_screen.json", "type": "panel", "extend": { "name": "small_chest_panel", "namespace": "chest" } }, "barrel_panel": { "file": "ui/chest_screen.json", "type": "panel", "extend": { "name": "small_chest_panel", "namespace": "chest" } }, "small_chest_screen": { "file": "ui/chest_screen.json", "type": "screen", "extend": { "name": "inventory_screen_common", "namespace": "common" } }, "large_chest_screen": { "file": "ui/chest_screen.json", "type": "screen", "extend": { "name": "inventory_screen_common", "namespace": "common" } }, "ender_chest_screen": { "file": "ui/chest_screen.json", "type": "screen", "extend": { "name": "inventory_screen_common", "namespace": "common" } }, "shulker_box_screen": { "file": "ui/chest_screen.json", "type": "screen", "extend": { "name": "small_chest_screen", "namespace": "chest" } }, "barrel_screen": { "file": "ui/chest_screen.json", "type": "screen", "extend": { "name": "small_chest_screen", "namespace": "chest" } } }, "choose_realm": { "realm_screenshot": { "file": "ui/choose_realm_screen.json", "type": "image", "children": [ "picture" ] }, "realm_screenshot/picture": { "file": "ui/choose_realm_screen.json", "type": "image" }, "realms_scroll_content": { "file": "ui/choose_realm_screen.json", "type": "input_panel", "children": [ "scrolling_panel" ] }, "realms_scroll_content/scrolling_panel": { "file": "ui/choose_realm_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "realms_scroll_panel": { "file": "ui/choose_realm_screen.json", "type": "panel", "children": [ "realms_stack_panel" ] }, "realms_scroll_panel/realms_stack_panel": { "file": "ui/choose_realm_screen.json", "type": "stack_panel", "children": [ "realms_world_item_grid", "padding_0", "add_realm_button", "ten_player_button", "padding_1", "two_player_button" ] }, "realms_scroll_panel/realms_stack_panel/realms_world_item_grid": { "file": "ui/choose_realm_screen.json", "type": "grid", "extend": { "name": "realms_world_item_grid", "namespace": "choose_realm" } }, "realms_scroll_panel/realms_stack_panel/padding_0": { "file": "ui/choose_realm_screen.json", "type": "panel" }, "realms_scroll_panel/realms_stack_panel/add_realm_button": { "file": "ui/choose_realm_screen.json", "type": "button", "extend": { "name": "add_realm_button", "namespace": "choose_realm" } }, "realms_scroll_panel/realms_stack_panel/ten_player_button": { "file": "ui/choose_realm_screen.json", "type": "button", "extend": { "name": "ten_player_button", "namespace": "choose_realm" } }, "realms_scroll_panel/realms_stack_panel/padding_1": { "file": "ui/choose_realm_screen.json", "type": "panel" }, "realms_scroll_panel/realms_stack_panel/two_player_button": { "file": "ui/choose_realm_screen.json", "type": "button", "extend": { "name": "two_player_button", "namespace": "choose_realm" } }, "realms_world_item_grid": { "file": "ui/choose_realm_screen.json", "type": "grid" }, "realms_world_item": { "file": "ui/choose_realm_screen.json", "type": "stack_panel", "children": [ "realms_world_item_button" ] }, "realms_world_item/realms_world_item_button": { "file": "ui/choose_realm_screen.json", "type": "button", "extend": { "name": "realms_world_item_button", "namespace": "choose_realm" } }, "realms_world_item_button": { "file": "ui/choose_realm_screen.json", "type": "button", "extend": { "name": "dark_content_button", "namespace": "common_buttons" } }, "add_realm_button": { "file": "ui/choose_realm_screen.json", "type": "button", "extend": { "name": "action_button_dark_text", "namespace": "settings_common" } }, "ten_player_button": { "file": "ui/choose_realm_screen.json", "type": "button", "extend": { "name": "action_button_dark_text", "namespace": "settings_common" } }, "two_player_button": { "file": "ui/choose_realm_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "realms_world_content_panel": { "file": "ui/choose_realm_screen.json", "type": "stack_panel", "children": [ "realm_screenshot", "padding", "realms_world_content_text_area_panel", "realms_world_content_status_area_panel" ] }, "realms_world_content_panel/realm_screenshot": { "file": "ui/choose_realm_screen.json", "type": "image", "extend": { "name": "realm_screenshot", "namespace": "choose_realm" } }, "realms_world_content_panel/padding": { "file": "ui/choose_realm_screen.json", "type": "panel" }, "realms_world_content_panel/realms_world_content_text_area_panel": { "file": "ui/choose_realm_screen.json", "type": "panel", "children": [ "realms_world_text_panel" ] }, "realms_world_content_panel/realms_world_content_text_area_panel/realms_world_text_panel": { "file": "ui/choose_realm_screen.json", "type": "panel", "children": [ "realms_world_header" ] }, "realms_world_content_panel/realms_world_content_text_area_panel/realms_world_text_panel/realms_world_header": { "file": "ui/choose_realm_screen.json", "type": "label" }, "realms_world_content_panel/realms_world_content_status_area_panel": { "file": "ui/choose_realm_screen.json", "type": "stack_panel", "extend": { "name": "realms_world_content_status_area_panel", "namespace": "play" }, "children": [ "world_player_count_text_panel", "realms_world_game_status_icon" ] }, "realms_world_content_panel/realms_world_content_status_area_panel/world_player_count_text_panel": { "file": "ui/choose_realm_screen.json", "type": "panel", "children": [ "realms_world_player_count" ] }, "realms_world_content_panel/realms_world_content_status_area_panel/world_player_count_text_panel/realms_world_player_count": { "file": "ui/choose_realm_screen.json", "type": "label", "extend": { "name": "realms_world_player_count", "namespace": "play" } }, "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon": { "file": "ui/choose_realm_screen.json", "type": "panel", "children": [ "game_online_icon", "game_unavailable_icon", "game_offline_icon" ] }, "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_online_icon": { "file": "ui/choose_realm_screen.json", "type": "image" }, "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_unavailable_icon": { "file": "ui/choose_realm_screen.json", "type": "image" }, "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_game_status_icon/game_offline_icon": { "file": "ui/choose_realm_screen.json", "type": "image" }, "main_panel": { "file": "ui/choose_realm_screen.json", "type": "panel", "children": [ "progress_loading_bars", "realms_scroll_content" ] }, "main_panel/progress_loading_bars": { "file": "ui/choose_realm_screen.json", "type": "image", "extend": { "name": "progress_loading_bars", "namespace": "progress" } }, "main_panel/realms_scroll_content": { "file": "ui/choose_realm_screen.json", "type": "input_panel", "extend": { "name": "realms_scroll_content", "namespace": "choose_realm" } }, "slots_scroll_panel": { "file": "ui/choose_realm_screen.json", "type": "panel", "children": [ "slots_stack_panel" ] }, "slots_scroll_panel/slots_stack_panel": { "file": "ui/choose_realm_screen.json", "type": "stack_panel", "children": [ "padding_0", "choose_slot_text", "padding_1", "slots_grid" ] }, "slots_scroll_panel/slots_stack_panel/padding_0": { "file": "ui/choose_realm_screen.json", "type": "panel" }, "slots_scroll_panel/slots_stack_panel/choose_slot_text": { "file": "ui/choose_realm_screen.json", "type": "label" }, "slots_scroll_panel/slots_stack_panel/padding_1": { "file": "ui/choose_realm_screen.json", "type": "panel" }, "slots_scroll_panel/slots_stack_panel/slots_grid": { "file": "ui/choose_realm_screen.json", "type": "stack_panel", "extend": { "name": "slots_grid", "namespace": "choose_realm" } }, "slots_grid": { "file": "ui/choose_realm_screen.json", "type": "stack_panel", "children": [ "slot_1", "padding_0", "slot_2", "padding_1", "slot_3" ] }, "slots_grid/slot_1": { "file": "ui/choose_realm_screen.json", "type": "button", "extend": { "name": "dark_content_button", "namespace": "common_buttons" } }, "slots_grid/padding_0": { "file": "ui/choose_realm_screen.json", "type": "panel" }, "slots_grid/slot_2": { "file": "ui/choose_realm_screen.json", "type": "button", "extend": { "name": "dark_content_button", "namespace": "common_buttons" } }, "slots_grid/padding_1": { "file": "ui/choose_realm_screen.json", "type": "panel" }, "slots_grid/slot_3": { "file": "ui/choose_realm_screen.json", "type": "button", "extend": { "name": "dark_content_button", "namespace": "common_buttons" } }, "slot_content_panel": { "file": "ui/choose_realm_screen.json", "type": "stack_panel", "children": [ "world_slot_top", "world_slot_bottom" ] }, "slot_content_panel/world_slot_top": { "file": "ui/choose_realm_screen.json", "type": "panel", "children": [ "plus_image", "world_thumbnail" ] }, "slot_content_panel/world_slot_top/plus_image": { "file": "ui/choose_realm_screen.json", "type": "image", "extend": { "name": "plus", "namespace": "realms_slots" } }, "slot_content_panel/world_slot_top/world_thumbnail": { "file": "ui/choose_realm_screen.json", "type": "image" }, "slot_content_panel/world_slot_bottom": { "file": "ui/choose_realm_screen.json", "type": "panel", "children": [ "white_line_hover", "world_text_panel" ] }, "slot_content_panel/world_slot_bottom/white_line_hover": { "file": "ui/choose_realm_screen.json", "type": "image" }, "slot_content_panel/world_slot_bottom/world_text_panel": { "file": "ui/choose_realm_screen.json", "type": "panel", "children": [ "background_grey", "background_green", "world_text" ] }, "slot_content_panel/world_slot_bottom/world_text_panel/background_grey": { "file": "ui/choose_realm_screen.json", "type": "image" }, "slot_content_panel/world_slot_bottom/world_text_panel/background_green": { "file": "ui/choose_realm_screen.json", "type": "image" }, "slot_content_panel/world_slot_bottom/world_text_panel/world_text": { "file": "ui/choose_realm_screen.json", "type": "label" }, "slot_panel": { "file": "ui/choose_realm_screen.json", "type": "panel", "children": [ "slots_scroll_content" ] }, "slot_panel/slots_scroll_content": { "file": "ui/choose_realm_screen.json", "type": "input_panel", "children": [ "scrolling_panel" ] }, "slot_panel/slots_scroll_content/scrolling_panel": { "file": "ui/choose_realm_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "choose_realm_screen": { "file": "ui/choose_realm_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "choose_realm_screen_content": { "file": "ui/choose_realm_screen.json", "type": "panel", "children": [ "realm_dialog", "slot_dialog" ] }, "choose_realm_screen_content/realm_dialog": { "file": "ui/choose_realm_screen.json", "type": "panel", "extend": { "name": "main_panel_no_buttons", "namespace": "common_dialogs" } }, "choose_realm_screen_content/slot_dialog": { "file": "ui/choose_realm_screen.json", "type": "panel", "extend": { "name": "main_panel_no_buttons", "namespace": "common_dialogs" } }, "background": { "file": "ui/choose_realm_screen.json", "type": "image", "extend": { "name": "screen_background", "namespace": "common" } } }, "coin_purchase": { "black_image": { "file": "ui/coin_purchase_screen.json", "type": "image" }, "banner_fill": { "file": "ui/coin_purchase_screen.json", "type": "image" }, "coins_stack_panel": { "file": "ui/coin_purchase_screen.json", "type": "stack_panel", "children": [ "coin", "coin_padding", "text_padding" ] }, "coins_stack_panel/coin": { "file": "ui/coin_purchase_screen.json", "type": "image", "extend": { "name": "coin_icon", "namespace": "common_store" } }, "coins_stack_panel/coin_padding": { "file": "ui/coin_purchase_screen.json", "type": "panel" }, "coins_stack_panel/text_padding": { "file": "ui/coin_purchase_screen.json", "type": "panel", "children": [ "coins_without_bonus" ] }, "coins_stack_panel/text_padding/coins_without_bonus": { "file": "ui/coin_purchase_screen.json", "type": "label" }, "call_out_coins_stack_panel": { "file": "ui/coin_purchase_screen.json", "type": "stack_panel", "children": [ "coin", "coin_padding", "text_padding" ] }, "call_out_coins_stack_panel/coin": { "file": "ui/coin_purchase_screen.json", "type": "image", "extend": { "name": "coin_icon", "namespace": "common_store" } }, "call_out_coins_stack_panel/coin_padding": { "file": "ui/coin_purchase_screen.json", "type": "panel" }, "call_out_coins_stack_panel/text_padding": { "file": "ui/coin_purchase_screen.json", "type": "panel", "children": [ "coins_without_bonus" ] }, "call_out_coins_stack_panel/text_padding/coins_without_bonus": { "file": "ui/coin_purchase_screen.json", "type": "label" }, "button_content": { "file": "ui/coin_purchase_screen.json", "type": "panel", "children": [ "bonus_coins_stack", "call_out_background" ] }, "button_content/bonus_coins_stack": { "file": "ui/coin_purchase_screen.json", "type": "stack_panel", "extend": { "name": "bonus_coins_stack", "namespace": "coin_purchase" } }, "button_content/call_out_background": { "file": "ui/coin_purchase_screen.json", "type": "image", "children": [ "bevel" ] }, "button_content/call_out_background/bevel": { "file": "ui/coin_purchase_screen.json", "type": "image" }, "call_out_button_content": { "file": "ui/coin_purchase_screen.json", "type": "panel", "children": [ "call_out_header", "call_out_bonus_coins_stack", "call_out_background" ] }, "call_out_button_content/call_out_header": { "file": "ui/coin_purchase_screen.json", "type": "panel", "extend": { "name": "call_out_header", "namespace": "coin_purchase" } }, "call_out_button_content/call_out_bonus_coins_stack": { "file": "ui/coin_purchase_screen.json", "type": "stack_panel", "extend": { "name": "call_out_bonus_coins_stack", "namespace": "coin_purchase" } }, "call_out_button_content/call_out_background": { "file": "ui/coin_purchase_screen.json", "type": "image", "children": [ "call_out_border" ] }, "call_out_button_content/call_out_background/call_out_border": { "file": "ui/coin_purchase_screen.json", "type": "image" }, "call_out_header": { "file": "ui/coin_purchase_screen.json", "type": "panel", "children": [ "call_out_banner", "call_out_label" ] }, "call_out_header/call_out_banner": { "file": "ui/coin_purchase_screen.json", "type": "image" }, "call_out_header/call_out_label": { "file": "ui/coin_purchase_screen.json", "type": "label" }, "bonus_coins_stack": { "file": "ui/coin_purchase_screen.json", "type": "stack_panel", "children": [ "image_padding", "image_panel", "non_bonus_padding_0", "price_panel", "plus_label", "non_bonus_padding_1", "bonus_label_panel", "padding_0", "bonus_price_panel", "padding_1", "currency_panel", "padding_2" ] }, "bonus_coins_stack/image_padding": { "file": "ui/coin_purchase_screen.json", "type": "panel" }, "bonus_coins_stack/image_panel": { "file": "ui/coin_purchase_screen.json", "type": "panel", "children": [ "image" ] }, "bonus_coins_stack/image_panel/image": { "file": "ui/coin_purchase_screen.json", "type": "image" }, "bonus_coins_stack/non_bonus_padding_0": { "file": "ui/coin_purchase_screen.json", "type": "panel" }, "bonus_coins_stack/price_panel": { "file": "ui/coin_purchase_screen.json", "type": "panel", "children": [ "coins_stack_panel" ] }, "bonus_coins_stack/price_panel/coins_stack_panel": { "file": "ui/coin_purchase_screen.json", "type": "stack_panel", "extend": { "name": "coins_stack_panel", "namespace": "coin_purchase" } }, "bonus_coins_stack/plus_label": { "file": "ui/coin_purchase_screen.json", "type": "panel", "children": [ "plus_label" ] }, "bonus_coins_stack/plus_label/plus_label": { "file": "ui/coin_purchase_screen.json", "type": "label" }, "bonus_coins_stack/non_bonus_padding_1": { "file": "ui/coin_purchase_screen.json", "type": "panel" }, "bonus_coins_stack/bonus_label_panel": { "file": "ui/coin_purchase_screen.json", "type": "panel", "children": [ "bonus_label" ] }, "bonus_coins_stack/bonus_label_panel/bonus_label": { "file": "ui/coin_purchase_screen.json", "type": "label" }, "bonus_coins_stack/padding_0": { "file": "ui/coin_purchase_screen.json", "type": "panel" }, "bonus_coins_stack/bonus_price_panel": { "file": "ui/coin_purchase_screen.json", "type": "panel", "children": [ "coins_stack_panel" ] }, "bonus_coins_stack/bonus_price_panel/coins_stack_panel": { "file": "ui/coin_purchase_screen.json", "type": "stack_panel", "extend": { "name": "coins_stack_panel", "namespace": "coin_purchase" } }, "bonus_coins_stack/padding_1": { "file": "ui/coin_purchase_screen.json", "type": "panel" }, "bonus_coins_stack/currency_panel": { "file": "ui/coin_purchase_screen.json", "type": "panel", "children": [ "currency_price_panel" ] }, "bonus_coins_stack/currency_panel/currency_price_panel": { "file": "ui/coin_purchase_screen.json", "type": "image", "children": [ "price", "debug_price" ] }, "bonus_coins_stack/currency_panel/currency_price_panel/price": { "file": "ui/coin_purchase_screen.json", "type": "label", "extend": { "name": "price", "namespace": "coin_purchase" } }, "bonus_coins_stack/currency_panel/currency_price_panel/debug_price": { "file": "ui/coin_purchase_screen.json", "type": "label", "extend": { "name": "price", "namespace": "coin_purchase" } }, "bonus_coins_stack/padding_2": { "file": "ui/coin_purchase_screen.json", "type": "panel" }, "call_out_bonus_coins_stack": { "file": "ui/coin_purchase_screen.json", "type": "stack_panel", "children": [ "image_padding", "image_panel", "non_bonus_padding_0", "price_panel", "plus_label", "non_bonus_padding", "bonus_label_panel", "padding_0", "bonus_coin_panel", "padding_1", "currency_panel", "padding_2" ] }, "call_out_bonus_coins_stack/image_padding": { "file": "ui/coin_purchase_screen.json", "type": "panel" }, "call_out_bonus_coins_stack/image_panel": { "file": "ui/coin_purchase_screen.json", "type": "panel", "children": [ "image" ] }, "call_out_bonus_coins_stack/image_panel/image": { "file": "ui/coin_purchase_screen.json", "type": "image" }, "call_out_bonus_coins_stack/non_bonus_padding_0": { "file": "ui/coin_purchase_screen.json", "type": "panel" }, "call_out_bonus_coins_stack/price_panel": { "file": "ui/coin_purchase_screen.json", "type": "panel", "children": [ "call_out_coins_stack_panel" ] }, "call_out_bonus_coins_stack/price_panel/call_out_coins_stack_panel": { "file": "ui/coin_purchase_screen.json", "type": "stack_panel", "extend": { "name": "call_out_coins_stack_panel", "namespace": "coin_purchase" } }, "call_out_bonus_coins_stack/plus_label": { "file": "ui/coin_purchase_screen.json", "type": "panel", "children": [ "plus_label" ] }, "call_out_bonus_coins_stack/plus_label/plus_label": { "file": "ui/coin_purchase_screen.json", "type": "label" }, "call_out_bonus_coins_stack/non_bonus_padding": { "file": "ui/coin_purchase_screen.json", "type": "panel" }, "call_out_bonus_coins_stack/bonus_label_panel": { "file": "ui/coin_purchase_screen.json", "type": "panel", "children": [ "bonus_label" ] }, "call_out_bonus_coins_stack/bonus_label_panel/bonus_label": { "file": "ui/coin_purchase_screen.json", "type": "label" }, "call_out_bonus_coins_stack/padding_0": { "file": "ui/coin_purchase_screen.json", "type": "panel" }, "call_out_bonus_coins_stack/bonus_coin_panel": { "file": "ui/coin_purchase_screen.json", "type": "stack_panel", "children": [ "fill_panel_0", "coin_panel", "coin_padding", "bonus_coin_label_panel", "fill_panel_1" ] }, "call_out_bonus_coins_stack/bonus_coin_panel/fill_panel_0": { "file": "ui/coin_purchase_screen.json", "type": "panel" }, "call_out_bonus_coins_stack/bonus_coin_panel/coin_panel": { "file": "ui/coin_purchase_screen.json", "type": "panel", "children": [ "coin" ] }, "call_out_bonus_coins_stack/bonus_coin_panel/coin_panel/coin": { "file": "ui/coin_purchase_screen.json", "type": "image", "extend": { "name": "coin_icon", "namespace": "common_store" } }, "call_out_bonus_coins_stack/bonus_coin_panel/coin_padding": { "file": "ui/coin_purchase_screen.json", "type": "panel" }, "call_out_bonus_coins_stack/bonus_coin_panel/bonus_coin_label_panel": { "file": "ui/coin_purchase_screen.json", "type": "panel", "children": [ "bonus_coins" ] }, "call_out_bonus_coins_stack/bonus_coin_panel/bonus_coin_label_panel/bonus_coins": { "file": "ui/coin_purchase_screen.json", "type": "label" }, "call_out_bonus_coins_stack/bonus_coin_panel/fill_panel_1": { "file": "ui/coin_purchase_screen.json", "type": "panel" }, "call_out_bonus_coins_stack/padding_1": { "file": "ui/coin_purchase_screen.json", "type": "panel" }, "call_out_bonus_coins_stack/currency_panel": { "file": "ui/coin_purchase_screen.json", "type": "panel", "children": [ "currency_price_panel" ] }, "call_out_bonus_coins_stack/currency_panel/currency_price_panel": { "file": "ui/coin_purchase_screen.json", "type": "image", "children": [ "price", "debug_price" ] }, "call_out_bonus_coins_stack/currency_panel/currency_price_panel/price": { "file": "ui/coin_purchase_screen.json", "type": "label", "extend": { "name": "price", "namespace": "coin_purchase" } }, "call_out_bonus_coins_stack/currency_panel/currency_price_panel/debug_price": { "file": "ui/coin_purchase_screen.json", "type": "label", "extend": { "name": "price", "namespace": "coin_purchase" } }, "call_out_bonus_coins_stack/padding_2": { "file": "ui/coin_purchase_screen.json", "type": "panel" }, "price": { "file": "ui/coin_purchase_screen.json", "type": "label" }, "offer_panel": { "file": "ui/coin_purchase_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "call_out_offer_panel": { "file": "ui/coin_purchase_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "offer_item": { "file": "ui/coin_purchase_screen.json", "type": "panel", "children": [ "offer_panel", "call_out_offer_panel" ] }, "offer_item/offer_panel": { "file": "ui/coin_purchase_screen.json", "type": "button", "extend": { "name": "offer_panel", "namespace": "coin_purchase" } }, "offer_item/call_out_offer_panel": { "file": "ui/coin_purchase_screen.json", "type": "button", "extend": { "name": "call_out_offer_panel", "namespace": "coin_purchase" } }, "offer_grid_item": { "file": "ui/coin_purchase_screen.json", "type": "panel", "children": [ "offer_item" ] }, "offer_grid_item/offer_item": { "file": "ui/coin_purchase_screen.json", "type": "panel", "extend": { "name": "offer_item", "namespace": "coin_purchase" } }, "not_enough_coins": { "file": "ui/coin_purchase_screen.json", "type": "label" }, "faq_button": { "file": "ui/coin_purchase_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "divider_panel": { "file": "ui/coin_purchase_screen.json", "type": "panel", "children": [ "divider" ] }, "divider_panel/divider": { "file": "ui/coin_purchase_screen.json", "type": "image" }, "coin_purchase_panel": { "file": "ui/coin_purchase_screen.json", "type": "stack_panel", "children": [ "padding_0", "not_enough_coins_panel", "padding_1", "coin_purchase_grid", "divider_panel", "faq_button" ] }, "coin_purchase_panel/padding_0": { "file": "ui/coin_purchase_screen.json", "type": "panel" }, "coin_purchase_panel/not_enough_coins_panel": { "file": "ui/coin_purchase_screen.json", "type": "panel", "children": [ "not_enough_coins" ] }, "coin_purchase_panel/not_enough_coins_panel/not_enough_coins": { "file": "ui/coin_purchase_screen.json", "type": "label", "extend": { "name": "not_enough_coins", "namespace": "coin_purchase" } }, "coin_purchase_panel/padding_1": { "file": "ui/coin_purchase_screen.json", "type": "panel" }, "coin_purchase_panel/coin_purchase_grid": { "file": "ui/coin_purchase_screen.json", "type": "grid" }, "coin_purchase_panel/divider_panel": { "file": "ui/coin_purchase_screen.json", "type": "panel", "extend": { "name": "divider_panel", "namespace": "coin_purchase" } }, "coin_purchase_panel/faq_button": { "file": "ui/coin_purchase_screen.json", "type": "button", "extend": { "name": "faq_button", "namespace": "coin_purchase" } }, "main_panel": { "file": "ui/coin_purchase_screen.json", "type": "panel", "children": [ "coin_purchase_panel", "loading_background", "progress_loading_spinner", "no_offers_panel" ] }, "main_panel/coin_purchase_panel": { "file": "ui/coin_purchase_screen.json", "type": "stack_panel", "extend": { "name": "coin_purchase_panel", "namespace": "coin_purchase" } }, "main_panel/loading_background": { "file": "ui/coin_purchase_screen.json", "type": "image" }, "main_panel/progress_loading_spinner": { "file": "ui/coin_purchase_screen.json", "type": "image", "extend": { "name": "progress_loading_spinner", "namespace": "common_store" } }, "main_panel/no_offers_panel": { "file": "ui/coin_purchase_screen.json", "type": "label" }, "background": { "file": "ui/coin_purchase_screen.json", "type": "image", "extend": { "name": "screen_background", "namespace": "common" } }, "bundle_description": { "file": "ui/coin_purchase_screen.json", "type": "panel", "extend": { "name": "text_style_label", "namespace": "common_store" } }, "bundle_description_left": { "file": "ui/coin_purchase_screen.json", "type": "panel", "extend": { "name": "bundle_description", "namespace": "coin_purchase" } }, "bundle_description_center": { "file": "ui/coin_purchase_screen.json", "type": "panel", "extend": { "name": "bundle_description", "namespace": "coin_purchase" } }, "bundle_description_right": { "file": "ui/coin_purchase_screen.json", "type": "panel", "extend": { "name": "bundle_description", "namespace": "coin_purchase" } }, "bundle_coins_stack": { "file": "ui/coin_purchase_screen.json", "type": "stack_panel", "children": [ "content_panel", "padding_0", "currency_panel", "padding_2" ] }, "bundle_coins_stack/content_panel": { "file": "ui/coin_purchase_screen.json", "type": "stack_panel", "children": [ "text_stack", "thumbnail_panel", "padding_0" ] }, "bundle_coins_stack/content_panel/text_stack": { "file": "ui/coin_purchase_screen.json", "type": "stack_panel", "children": [ "title_label", "padding_1", "description_section_factory" ] }, "bundle_coins_stack/content_panel/text_stack/title_label": { "file": "ui/coin_purchase_screen.json", "type": "label" }, "bundle_coins_stack/content_panel/text_stack/padding_1": { "file": "ui/coin_purchase_screen.json", "type": "panel" }, "bundle_coins_stack/content_panel/text_stack/description_section_factory": { "file": "ui/coin_purchase_screen.json", "type": "stack_panel" }, "bundle_coins_stack/content_panel/thumbnail_panel": { "file": "ui/coin_purchase_screen.json", "type": "panel", "children": [ "thumbnail" ] }, "bundle_coins_stack/content_panel/thumbnail_panel/thumbnail": { "file": "ui/coin_purchase_screen.json", "type": "image", "children": [ "coin_image" ] }, "bundle_coins_stack/content_panel/thumbnail_panel/thumbnail/coin_image": { "file": "ui/coin_purchase_screen.json", "type": "image" }, "bundle_coins_stack/content_panel/padding_0": { "file": "ui/coin_purchase_screen.json", "type": "panel" }, "bundle_coins_stack/padding_0": { "file": "ui/coin_purchase_screen.json", "type": "panel" }, "bundle_coins_stack/currency_panel": { "file": "ui/coin_purchase_screen.json", "type": "panel", "children": [ "currency_price_panel" ] }, "bundle_coins_stack/currency_panel/currency_price_panel": { "file": "ui/coin_purchase_screen.json", "type": "image", "children": [ "price", "debug_price" ] }, "bundle_coins_stack/currency_panel/currency_price_panel/price": { "file": "ui/coin_purchase_screen.json", "type": "label", "extend": { "name": "price", "namespace": "coin_purchase" } }, "bundle_coins_stack/currency_panel/currency_price_panel/debug_price": { "file": "ui/coin_purchase_screen.json", "type": "label", "extend": { "name": "price", "namespace": "coin_purchase" } }, "bundle_coins_stack/padding_2": { "file": "ui/coin_purchase_screen.json", "type": "panel" }, "bundle_button_content": { "file": "ui/coin_purchase_screen.json", "type": "panel", "children": [ "bundle_coins_stack", "call_out_background" ] }, "bundle_button_content/bundle_coins_stack": { "file": "ui/coin_purchase_screen.json", "type": "stack_panel", "extend": { "name": "bundle_coins_stack", "namespace": "coin_purchase" } }, "bundle_button_content/call_out_background": { "file": "ui/coin_purchase_screen.json", "type": "image", "children": [ "bevel" ] }, "bundle_button_content/call_out_background/bevel": { "file": "ui/coin_purchase_screen.json", "type": "image" }, "bundle_offer_panel": { "file": "ui/coin_purchase_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "bundle_offer_item": { "file": "ui/coin_purchase_screen.json", "type": "panel", "children": [ "offer_panel" ] }, "bundle_offer_item/offer_panel": { "file": "ui/coin_purchase_screen.json", "type": "button", "extend": { "name": "bundle_offer_panel", "namespace": "coin_purchase" } }, "bundle_offer_grid_item": { "file": "ui/coin_purchase_screen.json", "type": "panel", "children": [ "offer_item" ] }, "bundle_offer_grid_item/offer_item": { "file": "ui/coin_purchase_screen.json", "type": "panel", "extend": { "name": "bundle_offer_item", "namespace": "coin_purchase" } }, "bundle_stack_factory": { "file": "ui/coin_purchase_screen.json", "type": "stack_panel" }, "bundle_factory_panel": { "file": "ui/coin_purchase_screen.json", "type": "panel", "children": [ "bundle_stack_factory" ] }, "bundle_factory_panel/bundle_stack_factory": { "file": "ui/coin_purchase_screen.json", "type": "stack_panel", "extend": { "name": "bundle_stack_factory", "namespace": "coin_purchase" } }, "bundle_panel": { "file": "ui/coin_purchase_screen.json", "type": "panel", "children": [ "progress_loading_spinner", "loading_background", "bundle_stack_factory" ] }, "bundle_panel/progress_loading_spinner": { "file": "ui/coin_purchase_screen.json", "type": "image", "extend": { "name": "progress_loading_spinner", "namespace": "common_store" } }, "bundle_panel/loading_background": { "file": "ui/coin_purchase_screen.json", "type": "image" }, "bundle_panel/bundle_stack_factory": { "file": "ui/coin_purchase_screen.json", "type": "panel", "extend": { "name": "bundle_factory_panel", "namespace": "coin_purchase" } } }, "command_block": { "plus_icon": { "file": "ui/command_block_screen.json", "type": "image" }, "paste_icon": { "file": "ui/command_block_screen.json", "type": "image" }, "plus_button": { "file": "ui/command_block_screen.json", "type": "button", "extend": { "name": "light_glyph_button", "namespace": "common_buttons" } }, "paste_button": { "file": "ui/command_block_screen.json", "type": "button", "extend": { "name": "light_glyph_button", "namespace": "common_buttons" } }, "icon_dropdown_toggle_button_state_content": { "file": "ui/command_block_screen.json", "type": "stack_panel", "children": [ "icon_panel", "spacer", "label_panel", "arrow_panel" ] }, "icon_dropdown_toggle_button_state_content/icon_panel": { "file": "ui/command_block_screen.json", "type": "panel", "children": [ "dropdown_contents_icon" ] }, "icon_dropdown_toggle_button_state_content/icon_panel/dropdown_contents_icon": { "file": "ui/command_block_screen.json", "type": "image" }, "icon_dropdown_toggle_button_state_content/spacer": { "file": "ui/command_block_screen.json", "type": "panel" }, "icon_dropdown_toggle_button_state_content/label_panel": { "file": "ui/command_block_screen.json", "type": "panel", "children": [ "label" ] }, "icon_dropdown_toggle_button_state_content/label_panel/label": { "file": "ui/command_block_screen.json", "type": "label", "extend": { "name": "new_button_label", "namespace": "common" } }, "icon_dropdown_toggle_button_state_content/arrow_panel": { "file": "ui/command_block_screen.json", "type": "panel", "children": [ "arrow" ] }, "icon_dropdown_toggle_button_state_content/arrow_panel/arrow": { "file": "ui/command_block_screen.json", "type": "image", "extend": { "name": "arrow_image", "namespace": "settings_common" } }, "command_block_multiline_text_edit_box": { "file": "ui/command_block_screen.json", "type": "edit_box", "extend": { "name": "multiline_text_edit_box", "namespace": "common" } }, "command_block_text_edit_box": { "file": "ui/command_block_screen.json", "type": "edit_box", "extend": { "name": "command_block_multiline_text_edit_box", "namespace": "command_block" } }, "command_block_helper_stack": { "file": "ui/command_block_screen.json", "type": "stack_panel", "children": [ "offset", "text_" ] }, "command_block_helper_stack/offset": { "file": "ui/command_block_screen.json", "type": "panel" }, "command_block_helper_stack/text_": { "file": "ui/command_block_screen.json", "type": "label" }, "previous_command_block_info_stack": { "file": "ui/command_block_screen.json", "type": "stack_panel", "children": [ "offset", "start_label", "offset1", "start_label_dynamic_text" ] }, "previous_command_block_info_stack/offset": { "file": "ui/command_block_screen.json", "type": "panel" }, "previous_command_block_info_stack/start_label": { "file": "ui/command_block_screen.json", "type": "label" }, "previous_command_block_info_stack/offset1": { "file": "ui/command_block_screen.json", "type": "panel" }, "previous_command_block_info_stack/start_label_dynamic_text": { "file": "ui/command_block_screen.json", "type": "label" }, "cancel_button": { "file": "ui/command_block_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "blocktype_dropdown_content": { "file": "ui/command_block_screen.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "block_type_panel": { "file": "ui/command_block_screen.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "condition_dropdown_content": { "file": "ui/command_block_screen.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "condition_mode_panel": { "file": "ui/command_block_screen.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "redstone_dropdown_content": { "file": "ui/command_block_screen.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "redstone_mode_panel": { "file": "ui/command_block_screen.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "left_scrolling_panel": { "file": "ui/command_block_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "left_scroll_panel_content": { "file": "ui/command_block_screen.json", "type": "panel", "children": [ "content_stack_panel" ] }, "left_scroll_panel_content/content_stack_panel": { "file": "ui/command_block_screen.json", "type": "stack_panel", "children": [ "offset1", "offset2", "offset3", "block_type_mode_panel", "offset4", "condition_mode_panel", "offset5", "redstone_mode_panel", "offset_execute_on_first_tick", "option_label_execute_on_first_tick", "execute_on_first_tick_toggle", "offset_tick_delay", "option_label_tick_delay", "tick_delay_text", "offset7", "cancel", "offset8" ] }, "left_scroll_panel_content/content_stack_panel/offset1": { "file": "ui/command_block_screen.json", "type": "panel" }, "left_scroll_panel_content/content_stack_panel/offset2": { "file": "ui/command_block_screen.json", "type": "panel", "children": [ "hover_note_text" ] }, "left_scroll_panel_content/content_stack_panel/offset2/hover_note_text": { "file": "ui/command_block_screen.json", "type": "edit_box", "extend": { "name": "text_edit_box", "namespace": "common" } }, "left_scroll_panel_content/content_stack_panel/offset3": { "file": "ui/command_block_screen.json", "type": "panel" }, "left_scroll_panel_content/content_stack_panel/block_type_mode_panel": { "file": "ui/command_block_screen.json", "type": "panel", "extend": { "name": "block_type_panel", "namespace": "command_block" } }, "left_scroll_panel_content/content_stack_panel/offset4": { "file": "ui/command_block_screen.json", "type": "panel" }, "left_scroll_panel_content/content_stack_panel/condition_mode_panel": { "file": "ui/command_block_screen.json", "type": "panel", "extend": { "name": "condition_mode_panel", "namespace": "command_block" } }, "left_scroll_panel_content/content_stack_panel/offset5": { "file": "ui/command_block_screen.json", "type": "panel" }, "left_scroll_panel_content/content_stack_panel/redstone_mode_panel": { "file": "ui/command_block_screen.json", "type": "panel", "extend": { "name": "redstone_mode_panel", "namespace": "command_block" } }, "left_scroll_panel_content/content_stack_panel/offset_execute_on_first_tick": { "file": "ui/command_block_screen.json", "type": "panel" }, "left_scroll_panel_content/content_stack_panel/option_label_execute_on_first_tick": { "file": "ui/command_block_screen.json", "type": "label" }, "left_scroll_panel_content/content_stack_panel/execute_on_first_tick_toggle": { "file": "ui/command_block_screen.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "left_scroll_panel_content/content_stack_panel/offset_tick_delay": { "file": "ui/command_block_screen.json", "type": "panel" }, "left_scroll_panel_content/content_stack_panel/option_label_tick_delay": { "file": "ui/command_block_screen.json", "type": "label" }, "left_scroll_panel_content/content_stack_panel/tick_delay_text": { "file": "ui/command_block_screen.json", "type": "edit_box", "extend": { "name": "text_edit_box", "namespace": "common" } }, "left_scroll_panel_content/content_stack_panel/offset7": { "file": "ui/command_block_screen.json", "type": "panel" }, "left_scroll_panel_content/content_stack_panel/cancel": { "file": "ui/command_block_screen.json", "type": "button", "extend": { "name": "cancel_button", "namespace": "command_block" } }, "left_scroll_panel_content/content_stack_panel/offset8": { "file": "ui/command_block_screen.json", "type": "panel" }, "left_divider_content": { "file": "ui/command_block_screen.json", "type": "panel", "children": [ "left_scrolling_panel" ] }, "left_divider_content/left_scrolling_panel": { "file": "ui/command_block_screen.json", "type": "panel", "extend": { "name": "left_scrolling_panel", "namespace": "command_block" } }, "right_scrolling_panel": { "file": "ui/command_block_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "right_scroll_panel_content": { "file": "ui/command_block_screen.json", "type": "stack_panel", "children": [ "command_block_commands_panel", "switch_warning_panel", "self_label", "self_label_offset", "nearest_player_label", "nearest_player_label_offset", "random_player_label", "random_player_label_offset", "all_players_label", "all_players_label_offset", "all_entities_label", "all_entities_label_offset", "nearest_label", "nearest_label_offset", "command_block_previous_output_panel", "previous_block_type_text", "offset4", "previous_conditional_mode_text", "offset5", "previous_redstone_mode_text" ] }, "right_scroll_panel_content/command_block_commands_panel": { "file": "ui/command_block_screen.json", "type": "stack_panel", "children": [ "spacer1", "centering_panel", "spacer2", "centering_panel1" ] }, "right_scroll_panel_content/command_block_commands_panel/spacer1": { "file": "ui/command_block_screen.json", "type": "panel" }, "right_scroll_panel_content/command_block_commands_panel/centering_panel": { "file": "ui/command_block_screen.json", "type": "panel", "children": [ "option_label" ] }, "right_scroll_panel_content/command_block_commands_panel/centering_panel/option_label": { "file": "ui/command_block_screen.json", "type": "label" }, "right_scroll_panel_content/command_block_commands_panel/spacer2": { "file": "ui/command_block_screen.json", "type": "panel" }, "right_scroll_panel_content/command_block_commands_panel/centering_panel1": { "file": "ui/command_block_screen.json", "type": "panel", "children": [ "command_block_commands_panel" ] }, "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel": { "file": "ui/command_block_screen.json", "type": "stack_panel", "children": [ "offset", "paste_button", "plus_button" ] }, "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/offset": { "file": "ui/command_block_screen.json", "type": "panel", "children": [ "command_block_commands_text" ] }, "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/offset/command_block_commands_text": { "file": "ui/command_block_screen.json", "type": "edit_box", "extend": { "name": "command_block_text_edit_box", "namespace": "command_block" } }, "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/paste_button": { "file": "ui/command_block_screen.json", "type": "button", "extend": { "name": "paste_button", "namespace": "command_block" } }, "right_scroll_panel_content/command_block_commands_panel/centering_panel1/command_block_commands_panel/plus_button": { "file": "ui/command_block_screen.json", "type": "button", "extend": { "name": "plus_button", "namespace": "command_block" } }, "right_scroll_panel_content/switch_warning_panel": { "file": "ui/command_block_screen.json", "type": "panel", "children": [ "switch_warning_label" ] }, "right_scroll_panel_content/switch_warning_panel/switch_warning_label": { "file": "ui/command_block_screen.json", "type": "label" }, "right_scroll_panel_content/self_label": { "file": "ui/command_block_screen.json", "type": "stack_panel", "extend": { "name": "command_block_helper_stack", "namespace": "command_block" } }, "right_scroll_panel_content/self_label_offset": { "file": "ui/command_block_screen.json", "type": "panel" }, "right_scroll_panel_content/nearest_player_label": { "file": "ui/command_block_screen.json", "type": "stack_panel", "extend": { "name": "command_block_helper_stack", "namespace": "command_block" } }, "right_scroll_panel_content/nearest_player_label_offset": { "file": "ui/command_block_screen.json", "type": "panel" }, "right_scroll_panel_content/random_player_label": { "file": "ui/command_block_screen.json", "type": "stack_panel", "extend": { "name": "command_block_helper_stack", "namespace": "command_block" } }, "right_scroll_panel_content/random_player_label_offset": { "file": "ui/command_block_screen.json", "type": "panel" }, "right_scroll_panel_content/all_players_label": { "file": "ui/command_block_screen.json", "type": "stack_panel", "extend": { "name": "command_block_helper_stack", "namespace": "command_block" } }, "right_scroll_panel_content/all_players_label_offset": { "file": "ui/command_block_screen.json", "type": "panel" }, "right_scroll_panel_content/all_entities_label": { "file": "ui/command_block_screen.json", "type": "stack_panel", "extend": { "name": "command_block_helper_stack", "namespace": "command_block" } }, "right_scroll_panel_content/all_entities_label_offset": { "file": "ui/command_block_screen.json", "type": "panel" }, "right_scroll_panel_content/nearest_label": { "file": "ui/command_block_screen.json", "type": "stack_panel", "extend": { "name": "command_block_helper_stack", "namespace": "command_block" } }, "right_scroll_panel_content/nearest_label_offset": { "file": "ui/command_block_screen.json", "type": "panel" }, "right_scroll_panel_content/command_block_previous_output_panel": { "file": "ui/command_block_screen.json", "type": "stack_panel", "children": [ "previous_output_label_stack_centering_panel", "spacer", "command_output_text_centering_panel" ] }, "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel": { "file": "ui/command_block_screen.json", "type": "panel", "children": [ "previous_output_label_stack" ] }, "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel/previous_output_label_stack": { "file": "ui/command_block_screen.json", "type": "stack_panel", "children": [ "show_output_toggle", "option_label" ] }, "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel/previous_output_label_stack/show_output_toggle": { "file": "ui/command_block_screen.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "right_scroll_panel_content/command_block_previous_output_panel/previous_output_label_stack_centering_panel/previous_output_label_stack/option_label": { "file": "ui/command_block_screen.json", "type": "label" }, "right_scroll_panel_content/command_block_previous_output_panel/spacer": { "file": "ui/command_block_screen.json", "type": "panel" }, "right_scroll_panel_content/command_block_previous_output_panel/command_output_text_centering_panel": { "file": "ui/command_block_screen.json", "type": "panel", "children": [ "command_output_text" ] }, "right_scroll_panel_content/command_block_previous_output_panel/command_output_text_centering_panel/command_output_text": { "file": "ui/command_block_screen.json", "type": "edit_box", "extend": { "name": "command_block_multiline_text_edit_box", "namespace": "command_block" } }, "right_scroll_panel_content/previous_block_type_text": { "file": "ui/command_block_screen.json", "type": "stack_panel", "extend": { "name": "previous_command_block_info_stack", "namespace": "command_block" } }, "right_scroll_panel_content/offset4": { "file": "ui/command_block_screen.json", "type": "panel" }, "right_scroll_panel_content/previous_conditional_mode_text": { "file": "ui/command_block_screen.json", "type": "stack_panel", "extend": { "name": "previous_command_block_info_stack", "namespace": "command_block" } }, "right_scroll_panel_content/offset5": { "file": "ui/command_block_screen.json", "type": "panel" }, "right_scroll_panel_content/previous_redstone_mode_text": { "file": "ui/command_block_screen.json", "type": "stack_panel", "extend": { "name": "previous_command_block_info_stack", "namespace": "command_block" } }, "divider_content": { "file": "ui/command_block_screen.json", "type": "panel", "children": [ "left_side", "right_side" ] }, "divider_content/left_side": { "file": "ui/command_block_screen.json", "type": "panel", "extend": { "name": "left_divider_content", "namespace": "command_block" } }, "divider_content/right_side": { "file": "ui/command_block_screen.json", "type": "panel", "extend": { "name": "right_divider_content", "namespace": "command_block" } }, "command_block_screen_content": { "file": "ui/command_block_screen.json", "type": "panel", "children": [ "background_divider", "title", "content", "maximized_command_block_text" ] }, "command_block_screen_content/background_divider": { "file": "ui/command_block_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" }, "children": [ "bg_image", "dialog_divider", "header_buttons_stack_panel" ] }, "command_block_screen_content/background_divider/bg_image": { "file": "ui/command_block_screen.json", "type": "unknown" }, "command_block_screen_content/background_divider/dialog_divider": { "file": "ui/command_block_screen.json", "type": "image", "extend": { "name": "dialog_divider", "namespace": "common" } }, "command_block_screen_content/background_divider/header_buttons_stack_panel": { "file": "ui/command_block_screen.json", "type": "stack_panel", "children": [ "paste_button", "close_button_holder" ] }, "command_block_screen_content/background_divider/header_buttons_stack_panel/paste_button": { "file": "ui/command_block_screen.json", "type": "button", "extend": { "name": "paste_button", "namespace": "command_block" } }, "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder": { "file": "ui/command_block_screen.json", "type": "panel", "children": [ "close", "minimize" ] }, "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/close": { "file": "ui/command_block_screen.json", "type": "button", "extend": { "name": "close_button", "namespace": "common" } }, "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize": { "file": "ui/command_block_screen.json", "type": "button", "extend": { "name": "close_button", "namespace": "common" }, "children": [ "default", "hover", "pressed" ] }, "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/default": { "file": "ui/command_block_screen.json", "type": "unknown", "extend": { "name": "close_button_panel", "namespace": "command_block" } }, "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/hover": { "file": "ui/command_block_screen.json", "type": "unknown", "extend": { "name": "close_button_panel", "namespace": "command_block" } }, "command_block_screen_content/background_divider/header_buttons_stack_panel/close_button_holder/minimize/pressed": { "file": "ui/command_block_screen.json", "type": "unknown", "extend": { "name": "close_button_panel", "namespace": "command_block" } }, "command_block_screen_content/title": { "file": "ui/command_block_screen.json", "type": "label" }, "command_block_screen_content/content": { "file": "ui/command_block_screen.json", "type": "panel", "extend": { "name": "divider_content", "namespace": "command_block" } }, "command_block_screen_content/maximized_command_block_text": { "file": "ui/command_block_screen.json", "type": "edit_box", "extend": { "name": "command_block_text_edit_box", "namespace": "command_block" } }, "right_divider_content": { "file": "ui/command_block_screen.json", "type": "panel", "children": [ "right_scrolling_panel" ] }, "right_divider_content/right_scrolling_panel": { "file": "ui/command_block_screen.json", "type": "panel", "extend": { "name": "right_scrolling_panel", "namespace": "command_block" } }, "command_block_screen": { "file": "ui/command_block_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } } }, "confirm_delete_account": { "horizontal_divider": { "file": "ui/confirm_delete_account_screen.json", "type": "stack_panel", "extend": { "name": "section_divider", "namespace": "common" } }, "image_panel": { "file": "ui/confirm_delete_account_screen.json", "type": "panel", "children": [ "image" ] }, "image_panel/image": { "file": "ui/confirm_delete_account_screen.json", "type": "image" }, "header_panel": { "file": "ui/confirm_delete_account_screen.json", "type": "stack_panel", "children": [ "image_panel", "padding", "text_panel" ] }, "header_panel/image_panel": { "file": "ui/confirm_delete_account_screen.json", "type": "panel", "extend": { "name": "image_panel", "namespace": "confirm_delete_account" } }, "header_panel/padding": { "file": "ui/confirm_delete_account_screen.json", "type": "panel" }, "header_panel/text_panel": { "file": "ui/confirm_delete_account_screen.json", "type": "stack_panel", "children": [ "header_text", "padding_2", "header_text_2" ] }, "header_panel/text_panel/header_text": { "file": "ui/confirm_delete_account_screen.json", "type": "label" }, "header_panel/text_panel/padding_2": { "file": "ui/confirm_delete_account_screen.json", "type": "panel" }, "header_panel/text_panel/header_text_2": { "file": "ui/confirm_delete_account_screen.json", "type": "label" }, "dialog_content": { "file": "ui/confirm_delete_account_screen.json", "type": "stack_panel", "children": [ "body_content", "padding", "button_panel" ] }, "dialog_content/body_content": { "file": "ui/confirm_delete_account_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "confirm_delete_account" } }, "dialog_content/padding": { "file": "ui/confirm_delete_account_screen.json", "type": "panel" }, "dialog_content/button_panel": { "file": "ui/confirm_delete_account_screen.json", "type": "stack_panel", "children": [ "confirm_delete_account_button", "padding", "cancel_delete_account_button" ] }, "dialog_content/button_panel/confirm_delete_account_button": { "file": "ui/confirm_delete_account_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "dialog_content/button_panel/padding": { "file": "ui/confirm_delete_account_screen.json", "type": "panel" }, "dialog_content/button_panel/cancel_delete_account_button": { "file": "ui/confirm_delete_account_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "confirm_checkbox": { "file": "ui/confirm_delete_account_screen.json", "type": "stack_panel", "children": [ "check_box_wrapper", "padding", "label_wrapper" ] }, "confirm_checkbox/check_box_wrapper": { "file": "ui/confirm_delete_account_screen.json", "type": "panel", "children": [ "check_box" ] }, "confirm_checkbox/check_box_wrapper/check_box": { "file": "ui/confirm_delete_account_screen.json", "type": "toggle", "extend": { "name": "checkbox", "namespace": "common" } }, "confirm_checkbox/padding": { "file": "ui/confirm_delete_account_screen.json", "type": "panel" }, "confirm_checkbox/label_wrapper": { "file": "ui/confirm_delete_account_screen.json", "type": "panel", "children": [ "label" ] }, "confirm_checkbox/label_wrapper/label": { "file": "ui/confirm_delete_account_screen.json", "type": "label" }, "scrolling_panel": { "file": "ui/confirm_delete_account_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "description_label_panel": { "file": "ui/confirm_delete_account_screen.json", "type": "stack_panel", "children": [ "header_label_wrapper", "padding", "divider_0", "confirm_0", "divider_1", "confirm_1", "divider_2", "confirm_2", "divider_3", "confirm_3" ] }, "description_label_panel/header_label_wrapper": { "file": "ui/confirm_delete_account_screen.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "description_label_panel/padding": { "file": "ui/confirm_delete_account_screen.json", "type": "panel" }, "description_label_panel/divider_0": { "file": "ui/confirm_delete_account_screen.json", "type": "stack_panel", "extend": { "name": "horizontal_divider", "namespace": "confirm_delete_account" } }, "description_label_panel/confirm_0": { "file": "ui/confirm_delete_account_screen.json", "type": "stack_panel", "extend": { "name": "confirm_checkbox", "namespace": "confirm_delete_account" } }, "description_label_panel/divider_1": { "file": "ui/confirm_delete_account_screen.json", "type": "stack_panel", "extend": { "name": "horizontal_divider", "namespace": "confirm_delete_account" } }, "description_label_panel/confirm_1": { "file": "ui/confirm_delete_account_screen.json", "type": "stack_panel", "extend": { "name": "confirm_checkbox", "namespace": "confirm_delete_account" } }, "description_label_panel/divider_2": { "file": "ui/confirm_delete_account_screen.json", "type": "stack_panel", "extend": { "name": "horizontal_divider", "namespace": "confirm_delete_account" } }, "description_label_panel/confirm_2": { "file": "ui/confirm_delete_account_screen.json", "type": "stack_panel", "extend": { "name": "confirm_checkbox", "namespace": "confirm_delete_account" } }, "description_label_panel/divider_3": { "file": "ui/confirm_delete_account_screen.json", "type": "stack_panel", "extend": { "name": "horizontal_divider", "namespace": "confirm_delete_account" } }, "description_label_panel/confirm_3": { "file": "ui/confirm_delete_account_screen.json", "type": "stack_panel", "extend": { "name": "confirm_checkbox", "namespace": "confirm_delete_account" } }, "confirm_delete_account_screen": { "file": "ui/confirm_delete_account_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "confirm_delete_account_screen_content": { "file": "ui/confirm_delete_account_screen.json", "type": "panel", "children": [ "root_panel" ] }, "confirm_delete_account_screen_content/root_panel": { "file": "ui/confirm_delete_account_screen.json", "type": "panel", "children": [ "dialog" ] }, "confirm_delete_account_screen_content/root_panel/dialog": { "file": "ui/confirm_delete_account_screen.json", "type": "panel", "extend": { "name": "screen_dialog", "namespace": "confirm_delete_account" } }, "screen_dialog": { "file": "ui/confirm_delete_account_screen.json", "type": "panel", "extend": { "name": "main_panel_no_buttons", "namespace": "common_dialogs" } }, "background": { "file": "ui/confirm_delete_account_screen.json", "type": "image", "extend": { "name": "screen_background", "namespace": "common" } } }, "content_log": { "content_log_label": { "file": "ui/content_log.json", "type": "label" }, "content_log_grid_item": { "file": "ui/content_log.json", "type": "panel", "children": [ "content_log_background" ] }, "content_log_grid_item/content_log_background": { "file": "ui/content_log.json", "type": "image", "children": [ "content_log_text" ] }, "content_log_grid_item/content_log_background/content_log_text": { "file": "ui/content_log.json", "type": "label", "extend": { "name": "content_log_label", "namespace": "content_log" } }, "content_log_panel": { "file": "ui/content_log.json", "type": "panel", "children": [ "stack_panel" ] }, "content_log_panel/stack_panel": { "file": "ui/content_log.json", "type": "stack_panel" } }, "content_log_history": { "clipboard_icon": { "file": "ui/content_log_history_screen.json", "type": "image" }, "clipboard_icon_wrapper": { "file": "ui/content_log_history_screen.json", "type": "panel", "children": [ "stack_panel" ] }, "clipboard_icon_wrapper/stack_panel": { "file": "ui/content_log_history_screen.json", "type": "stack_panel", "children": [ "icon_panel", "offset", "label_panel" ] }, "clipboard_icon_wrapper/stack_panel/icon_panel": { "file": "ui/content_log_history_screen.json", "type": "panel", "children": [ "icon" ] }, "clipboard_icon_wrapper/stack_panel/icon_panel/icon": { "file": "ui/content_log_history_screen.json", "type": "image", "extend": { "name": "clipboard_icon", "namespace": "content_log_history" } }, "clipboard_icon_wrapper/stack_panel/offset": { "file": "ui/content_log_history_screen.json", "type": "panel" }, "clipboard_icon_wrapper/stack_panel/label_panel": { "file": "ui/content_log_history_screen.json", "type": "panel", "children": [ "label" ] }, "clipboard_icon_wrapper/stack_panel/label_panel/label": { "file": "ui/content_log_history_screen.json", "type": "label" }, "clipboard_button": { "file": "ui/content_log_history_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "clear_icon": { "file": "ui/content_log_history_screen.json", "type": "image" }, "clear_icon_wrapper": { "file": "ui/content_log_history_screen.json", "type": "panel", "children": [ "stack_panel" ] }, "clear_icon_wrapper/stack_panel": { "file": "ui/content_log_history_screen.json", "type": "stack_panel", "children": [ "icon_panel", "offset", "label_panel" ] }, "clear_icon_wrapper/stack_panel/icon_panel": { "file": "ui/content_log_history_screen.json", "type": "panel", "children": [ "icon" ] }, "clear_icon_wrapper/stack_panel/icon_panel/icon": { "file": "ui/content_log_history_screen.json", "type": "image", "extend": { "name": "clear_icon", "namespace": "content_log_history" } }, "clear_icon_wrapper/stack_panel/offset": { "file": "ui/content_log_history_screen.json", "type": "panel" }, "clear_icon_wrapper/stack_panel/label_panel": { "file": "ui/content_log_history_screen.json", "type": "panel", "children": [ "label" ] }, "clear_icon_wrapper/stack_panel/label_panel/label": { "file": "ui/content_log_history_screen.json", "type": "label" }, "clear_button": { "file": "ui/content_log_history_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "horizontal_button_stack_panel": { "file": "ui/content_log_history_screen.json", "type": "stack_panel", "children": [ "clipboard_button", "clear_button" ] }, "horizontal_button_stack_panel/clipboard_button": { "file": "ui/content_log_history_screen.json", "type": "button", "extend": { "name": "clipboard_button", "namespace": "content_log_history" } }, "horizontal_button_stack_panel/clear_button": { "file": "ui/content_log_history_screen.json", "type": "button", "extend": { "name": "clear_button", "namespace": "content_log_history" } }, "content_log_message": { "file": "ui/content_log_history_screen.json", "type": "label" }, "content_log_message_panel": { "file": "ui/content_log_history_screen.json", "type": "panel", "children": [ "content_log_message" ] }, "content_log_message_panel/content_log_message": { "file": "ui/content_log_history_screen.json", "type": "label", "extend": { "name": "content_log_message", "namespace": "content_log_history" } }, "content_log_message_panel_panel": { "file": "ui/content_log_history_screen.json", "type": "panel", "children": [ "content_log_message_panel" ] }, "content_log_message_panel_panel/content_log_message_panel": { "file": "ui/content_log_history_screen.json", "type": "panel", "extend": { "name": "content_log_message_panel", "namespace": "content_log_history" } }, "messages_stack_panel": { "file": "ui/content_log_history_screen.json", "type": "stack_panel" }, "messages_scrolling_panel": { "file": "ui/content_log_history_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "main_stack_panel": { "file": "ui/content_log_history_screen.json", "type": "stack_panel", "children": [ "messages_scrolling_panel" ] }, "main_stack_panel/messages_scrolling_panel": { "file": "ui/content_log_history_screen.json", "type": "panel", "extend": { "name": "messages_scrolling_panel", "namespace": "content_log_history" } }, "content_log_history_panel": { "file": "ui/content_log_history_screen.json", "type": "panel", "children": [ "content_log_history_dialog" ] }, "content_log_history_panel/content_log_history_dialog": { "file": "ui/content_log_history_screen.json", "type": "unknown" }, "content_log_history_screen": { "file": "ui/content_log_history_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } } }, "crafter_pocket": { "generic_label": { "file": "ui/crafter_screen_pocket.json", "type": "label" }, "header_panel": { "file": "ui/crafter_screen_pocket.json", "type": "panel", "children": [ "header_background", "title_label" ] }, "header_panel/header_background": { "file": "ui/crafter_screen_pocket.json", "type": "image" }, "header_panel/title_label": { "file": "ui/crafter_screen_pocket.json", "type": "label", "extend": { "name": "generic_label", "namespace": "crafter_pocket" } }, "header_area": { "file": "ui/crafter_screen_pocket.json", "type": "panel", "children": [ "x", "inventory_header", "container_header" ] }, "header_area/x": { "file": "ui/crafter_screen_pocket.json", "type": "button", "extend": { "name": "legacy_pocket_close_button", "namespace": "common" } }, "header_area/inventory_header": { "file": "ui/crafter_screen_pocket.json", "type": "panel", "extend": { "name": "header_panel", "namespace": "pocket_containers" } }, "header_area/container_header": { "file": "ui/crafter_screen_pocket.json", "type": "panel", "extend": { "name": "header_panel", "namespace": "pocket_containers" } }, "dark_bg": { "file": "ui/crafter_screen_pocket.json", "type": "image" }, "panel_outline": { "file": "ui/crafter_screen_pocket.json", "type": "image" }, "background_panel": { "file": "ui/crafter_screen_pocket.json", "type": "image" }, "inventory_panel": { "file": "ui/crafter_screen_pocket.json", "type": "panel", "children": [ "scrolling_panel" ] }, "inventory_panel/scrolling_panel": { "file": "ui/crafter_screen_pocket.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "left_screen": { "file": "ui/crafter_screen_pocket.json", "type": "panel", "children": [ "inventory_panel" ] }, "left_screen/inventory_panel": { "file": "ui/crafter_screen_pocket.json", "type": "panel", "extend": { "name": "inventory_panel", "namespace": "crafter_pocket" } }, "crafter_input_grid": { "file": "ui/crafter_screen_pocket.json", "type": "grid" }, "crafter_disabled_slot": { "file": "ui/crafter_screen_pocket.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed" ] }, "crafter_disabled_slot/default": { "file": "ui/crafter_screen_pocket.json", "type": "image" }, "crafter_disabled_slot/hover": { "file": "ui/crafter_screen_pocket.json", "type": "image" }, "crafter_disabled_slot/pressed": { "file": "ui/crafter_screen_pocket.json", "type": "image" }, "cell_image": { "file": "ui/crafter_screen_pocket.json", "type": "image" }, "crafter_highlight_slot": { "file": "ui/crafter_screen_pocket.json", "type": "image" }, "crafter_container_slot_button_prototype": { "file": "ui/crafter_screen_pocket.json", "type": "button", "extend": { "name": "container_slot_button_prototype", "namespace": "common" } }, "crafter_highlight_slot_panel": { "file": "ui/crafter_screen_pocket.json", "type": "panel", "children": [ "highlight", "white_border" ] }, "crafter_highlight_slot_panel/highlight": { "file": "ui/crafter_screen_pocket.json", "type": "image", "extend": { "name": "crafter_highlight_slot", "namespace": "crafter_pocket" }, "children": [ "hover_text" ] }, "crafter_highlight_slot_panel/highlight/hover_text": { "file": "ui/crafter_screen_pocket.json", "type": "custom", "extend": { "name": "hover_text", "namespace": "common" } }, "crafter_highlight_slot_panel/white_border": { "file": "ui/crafter_screen_pocket.json", "type": "image", "extend": { "name": "white_border_slot", "namespace": "common" } }, "crafter_enabled_slot_template": { "file": "ui/crafter_screen_pocket.json", "type": "input_panel", "extend": { "name": "pocket_ui_container_item", "namespace": "common" } }, "output_slot_hover_info": { "file": "ui/crafter_screen_pocket.json", "type": "button", "children": [ "hover", "output_slot", "output_slot_border", "output_count" ] }, "output_slot_hover_info/hover": { "file": "ui/crafter_screen_pocket.json", "type": "custom", "extend": { "name": "hover_text", "namespace": "common" } }, "output_slot_hover_info/output_slot": { "file": "ui/crafter_screen_pocket.json", "type": "custom", "extend": { "name": "item_renderer", "namespace": "common" } }, "output_slot_hover_info/output_slot_border": { "file": "ui/crafter_screen_pocket.json", "type": "image" }, "output_slot_hover_info/output_count": { "file": "ui/crafter_screen_pocket.json", "type": "label", "extend": { "name": "stack_count_label", "namespace": "common" } }, "panel_crafter": { "file": "ui/crafter_screen_pocket.json", "type": "panel", "children": [ "item_lock_notification_factory", "root_panel" ] }, "panel_crafter/item_lock_notification_factory": { "file": "ui/crafter_screen_pocket.json", "type": "factory", "extend": { "name": "item_lock_notification_factory", "namespace": "common" } }, "panel_crafter/root_panel": { "file": "ui/crafter_screen_pocket.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "disabled_slot_0_button", "disabled_slot_1_button", "disabled_slot_2_button", "disabled_slot_3_button", "disabled_slot_4_button", "disabled_slot_5_button", "disabled_slot_6_button", "disabled_slot_7_button", "disabled_slot_8_button", "redstone_screen_inventory", "red_icon" ] }, "panel_crafter/root_panel/disabled_slot_0_button": { "file": "ui/crafter_screen_pocket.json", "type": "button", "extend": { "name": "crafter_disabled_slot", "namespace": "crafter_pocket" } }, "panel_crafter/root_panel/disabled_slot_1_button": { "file": "ui/crafter_screen_pocket.json", "type": "button", "extend": { "name": "crafter_disabled_slot", "namespace": "crafter_pocket" } }, "panel_crafter/root_panel/disabled_slot_2_button": { "file": "ui/crafter_screen_pocket.json", "type": "button", "extend": { "name": "crafter_disabled_slot", "namespace": "crafter_pocket" } }, "panel_crafter/root_panel/disabled_slot_3_button": { "file": "ui/crafter_screen_pocket.json", "type": "button", "extend": { "name": "crafter_disabled_slot", "namespace": "crafter_pocket" } }, "panel_crafter/root_panel/disabled_slot_4_button": { "file": "ui/crafter_screen_pocket.json", "type": "button", "extend": { "name": "crafter_disabled_slot", "namespace": "crafter_pocket" } }, "panel_crafter/root_panel/disabled_slot_5_button": { "file": "ui/crafter_screen_pocket.json", "type": "button", "extend": { "name": "crafter_disabled_slot", "namespace": "crafter_pocket" } }, "panel_crafter/root_panel/disabled_slot_6_button": { "file": "ui/crafter_screen_pocket.json", "type": "button", "extend": { "name": "crafter_disabled_slot", "namespace": "crafter_pocket" } }, "panel_crafter/root_panel/disabled_slot_7_button": { "file": "ui/crafter_screen_pocket.json", "type": "button", "extend": { "name": "crafter_disabled_slot", "namespace": "crafter_pocket" } }, "panel_crafter/root_panel/disabled_slot_8_button": { "file": "ui/crafter_screen_pocket.json", "type": "button", "extend": { "name": "crafter_disabled_slot", "namespace": "crafter_pocket" } }, "panel_crafter/root_panel/redstone_screen_inventory": { "file": "ui/crafter_screen_pocket.json", "type": "panel", "children": [ "crafting_grid", "red_hold_icon", "redstone_wire_line", "crafter_output" ] }, "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid": { "file": "ui/crafter_screen_pocket.json", "type": "panel", "children": [ "crafter_input_grid" ] }, "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid/crafter_input_grid": { "file": "ui/crafter_screen_pocket.json", "type": "grid", "extend": { "name": "crafter_input_grid", "namespace": "crafter_pocket" } }, "panel_crafter/root_panel/redstone_screen_inventory/red_hold_icon": { "file": "ui/crafter_screen_pocket.json", "type": "button", "extend": { "name": "inventory_take_progress_icon_button", "namespace": "common" } }, "panel_crafter/root_panel/redstone_screen_inventory/redstone_wire_line": { "file": "ui/crafter_screen_pocket.json", "type": "image" }, "panel_crafter/root_panel/redstone_screen_inventory/crafter_output": { "file": "ui/crafter_screen_pocket.json", "type": "button", "extend": { "name": "output_slot_hover_info", "namespace": "crafter_pocket" } }, "panel_crafter/root_panel/red_icon": { "file": "ui/crafter_screen_pocket.json", "type": "button", "extend": { "name": "inventory_selected_icon_button", "namespace": "common" } }, "right_screen_background": { "file": "ui/crafter_screen_pocket.json", "type": "image" }, "right_screen": { "file": "ui/crafter_screen_pocket.json", "type": "panel", "children": [ "right_screen_bg" ] }, "right_screen/right_screen_bg": { "file": "ui/crafter_screen_pocket.json", "type": "image", "extend": { "name": "right_screen_background", "namespace": "crafter_pocket" }, "children": [ "inventory_panel" ] }, "right_screen/right_screen_bg/inventory_panel": { "file": "ui/crafter_screen_pocket.json", "type": "panel", "extend": { "name": "panel_crafter", "namespace": "crafter_pocket" } }, "panel": { "file": "ui/crafter_screen_pocket.json", "type": "panel", "children": [ "container_gamepad_helpers", "header", "bg", "inventory", "container", "selected_item_details_factory", "item_lock_notification_factory", "gamepad_cursor", "flying_item_renderer" ] }, "panel/container_gamepad_helpers": { "file": "ui/crafter_screen_pocket.json", "type": "stack_panel", "extend": { "name": "container_gamepad_helpers", "namespace": "common" } }, "panel/header": { "file": "ui/crafter_screen_pocket.json", "type": "panel", "extend": { "name": "header_area", "namespace": "crafter_pocket" } }, "panel/bg": { "file": "ui/crafter_screen_pocket.json", "type": "image", "extend": { "name": "background_panel", "namespace": "crafter_pocket" } }, "panel/inventory": { "file": "ui/crafter_screen_pocket.json", "type": "panel", "extend": { "name": "left_screen", "namespace": "crafter_pocket" } }, "panel/container": { "file": "ui/crafter_screen_pocket.json", "type": "panel", "extend": { "name": "right_screen", "namespace": "crafter_pocket" } }, "panel/selected_item_details_factory": { "file": "ui/crafter_screen_pocket.json", "type": "factory", "extend": { "name": "selected_item_details_factory", "namespace": "common" } }, "panel/item_lock_notification_factory": { "file": "ui/crafter_screen_pocket.json", "type": "factory", "extend": { "name": "item_lock_notification_factory", "namespace": "common" } }, "panel/gamepad_cursor": { "file": "ui/crafter_screen_pocket.json", "type": "button", "extend": { "name": "gamepad_cursor_button", "namespace": "common" } }, "panel/flying_item_renderer": { "file": "ui/crafter_screen_pocket.json", "type": "custom", "extend": { "name": "flying_item_renderer", "namespace": "common" } }, "crafter": { "file": "ui/crafter_screen_pocket.json", "type": "panel", "extend": { "name": "panel", "namespace": "crafter_pocket" } } }, "create_world_upsell": { "world_icon": { "file": "ui/create_world_upsell_screen.json", "type": "image" }, "realms_icon": { "file": "ui/create_world_upsell_screen.json", "type": "image" }, "dark_banner": { "file": "ui/create_world_upsell_screen.json", "type": "image" }, "grey_banner": { "file": "ui/create_world_upsell_screen.json", "type": "image" }, "checkmark": { "file": "ui/create_world_upsell_screen.json", "type": "image" }, "largex": { "file": "ui/create_world_upsell_screen.json", "type": "image" }, "realms_art_icon": { "file": "ui/create_world_upsell_screen.json", "type": "image" }, "new_world_button": { "file": "ui/create_world_upsell_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "new_realm_button": { "file": "ui/create_world_upsell_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "remove_trial_button": { "file": "ui/create_world_upsell_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "button_content": { "file": "ui/create_world_upsell_screen.json", "type": "stack_panel", "children": [ "padding_0", "icon_panel", "padding_1", "label_panel" ] }, "button_content/padding_0": { "file": "ui/create_world_upsell_screen.json", "type": "panel" }, "button_content/icon_panel": { "file": "ui/create_world_upsell_screen.json", "type": "panel" }, "button_content/padding_1": { "file": "ui/create_world_upsell_screen.json", "type": "panel" }, "button_content/label_panel": { "file": "ui/create_world_upsell_screen.json", "type": "panel" }, "realm_button_content": { "file": "ui/create_world_upsell_screen.json", "type": "stack_panel", "extend": { "name": "button_content", "namespace": "create_world_upsell" } }, "world_button_content": { "file": "ui/create_world_upsell_screen.json", "type": "stack_panel", "extend": { "name": "button_content", "namespace": "create_world_upsell" } }, "realms_button_text_panel": { "file": "ui/create_world_upsell_screen.json", "type": "stack_panel", "children": [ "new_realm_label", "new_realm_trial_label" ] }, "realms_button_text_panel/new_realm_label": { "file": "ui/create_world_upsell_screen.json", "type": "label", "extend": { "name": "new_realm_label", "namespace": "create_world_upsell" } }, "realms_button_text_panel/new_realm_trial_label": { "file": "ui/create_world_upsell_screen.json", "type": "label", "extend": { "name": "new_realm_trial_label", "namespace": "create_world_upsell" } }, "price_label": { "file": "ui/create_world_upsell_screen.json", "type": "label" }, "new_realm_label": { "file": "ui/create_world_upsell_screen.json", "type": "label" }, "new_realm_trial_label": { "file": "ui/create_world_upsell_screen.json", "type": "label" }, "new_world_label": { "file": "ui/create_world_upsell_screen.json", "type": "label" }, "button_and_price_panel": { "file": "ui/create_world_upsell_screen.json", "type": "stack_panel", "children": [ "padding", "price_label_panel" ] }, "button_and_price_panel/padding": { "file": "ui/create_world_upsell_screen.json", "type": "panel" }, "button_and_price_panel/price_label_panel": { "file": "ui/create_world_upsell_screen.json", "type": "panel", "children": [ "price" ] }, "button_and_price_panel/price_label_panel/price": { "file": "ui/create_world_upsell_screen.json", "type": "label", "extend": { "name": "price_label", "namespace": "create_world_upsell" } }, "border_shell": { "file": "ui/create_world_upsell_screen.json", "type": "image", "extend": { "name": "focus_border_white", "namespace": "common" } }, "head_banner_panel": { "file": "ui/create_world_upsell_screen.json", "type": "image", "extend": { "name": "dark_banner", "namespace": "create_world_upsell" } }, "create_new_realm_content": { "file": "ui/create_world_upsell_screen.json", "type": "stack_panel", "children": [ "head_banner_panel", "realm_grid" ] }, "create_new_realm_content/head_banner_panel": { "file": "ui/create_world_upsell_screen.json", "type": "image", "extend": { "name": "head_banner_panel", "namespace": "create_world_upsell" }, "children": [ "realm_button_price" ] }, "create_new_realm_content/head_banner_panel/realm_button_price": { "file": "ui/create_world_upsell_screen.json", "type": "stack_panel", "extend": { "name": "button_and_price_panel", "namespace": "create_world_upsell" } }, "create_new_realm_content/realm_grid": { "file": "ui/create_world_upsell_screen.json", "type": "grid" }, "create_world_upsell_grid_item": { "file": "ui/create_world_upsell_screen.json", "type": "panel", "children": [ "db", "gb", "gp" ] }, "create_world_upsell_grid_item/db": { "file": "ui/create_world_upsell_screen.json", "type": "image", "extend": { "name": "dark_banner", "namespace": "create_world_upsell" } }, "create_world_upsell_grid_item/gb": { "file": "ui/create_world_upsell_screen.json", "type": "image", "extend": { "name": "grey_banner", "namespace": "create_world_upsell" } }, "create_world_upsell_grid_item/gp": { "file": "ui/create_world_upsell_screen.json", "type": "stack_panel", "extend": { "name": "grid_panel", "namespace": "create_world_upsell" } }, "grid_panel": { "file": "ui/create_world_upsell_screen.json", "type": "stack_panel", "children": [ "padding", "upsell_text_panel" ] }, "grid_panel/padding": { "file": "ui/create_world_upsell_screen.json", "type": "panel" }, "grid_panel/upsell_text_panel": { "file": "ui/create_world_upsell_screen.json", "type": "panel", "children": [ "upsell_label" ] }, "grid_panel/upsell_text_panel/upsell_label": { "file": "ui/create_world_upsell_screen.json", "type": "label" }, "create_new_world_content": { "file": "ui/create_world_upsell_screen.json", "type": "stack_panel", "children": [ "head_banner_panel", "world_grid" ] }, "create_new_world_content/head_banner_panel": { "file": "ui/create_world_upsell_screen.json", "type": "image", "extend": { "name": "head_banner_panel", "namespace": "create_world_upsell" }, "children": [ "world_button_price" ] }, "create_new_world_content/head_banner_panel/world_button_price": { "file": "ui/create_world_upsell_screen.json", "type": "stack_panel", "extend": { "name": "button_and_price_panel", "namespace": "create_world_upsell" } }, "create_new_world_content/world_grid": { "file": "ui/create_world_upsell_screen.json", "type": "grid" }, "new_world_or_realm_scroll": { "file": "ui/create_world_upsell_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "create_new_world_or_realm_content": { "file": "ui/create_world_upsell_screen.json", "type": "stack_panel", "children": [ "world", "padding", "realm_content" ] }, "create_new_world_or_realm_content/world": { "file": "ui/create_world_upsell_screen.json", "type": "image", "extend": { "name": "border_shell", "namespace": "create_world_upsell" } }, "create_new_world_or_realm_content/padding": { "file": "ui/create_world_upsell_screen.json", "type": "panel" }, "create_new_world_or_realm_content/realm_content": { "file": "ui/create_world_upsell_screen.json", "type": "image", "extend": { "name": "realm_content", "namespace": "create_world_upsell" } }, "new_realm_scroll": { "file": "ui/create_world_upsell_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "new_realm_content_panel": { "file": "ui/create_world_upsell_screen.json", "type": "stack_panel", "children": [ "key_art_panel", "padding_hack", "padding_0", "new_realm_scroll", "padding_1" ] }, "new_realm_content_panel/key_art_panel": { "file": "ui/create_world_upsell_screen.json", "type": "panel", "children": [ "realms_art_icon" ] }, "new_realm_content_panel/key_art_panel/realms_art_icon": { "file": "ui/create_world_upsell_screen.json", "type": "image", "extend": { "name": "realms_art_icon", "namespace": "create_world_upsell" } }, "new_realm_content_panel/padding_hack": { "file": "ui/create_world_upsell_screen.json", "type": "panel" }, "new_realm_content_panel/padding_0": { "file": "ui/create_world_upsell_screen.json", "type": "panel" }, "new_realm_content_panel/new_realm_scroll": { "file": "ui/create_world_upsell_screen.json", "type": "panel", "extend": { "name": "new_realm_scroll", "namespace": "create_world_upsell" } }, "new_realm_content_panel/padding_1": { "file": "ui/create_world_upsell_screen.json", "type": "panel" }, "create_realm_upsell_content": { "file": "ui/create_world_upsell_screen.json", "type": "stack_panel", "children": [ "realm_content", "padding_0", "remove_trial_button", "padding_1" ] }, "create_realm_upsell_content/realm_content": { "file": "ui/create_world_upsell_screen.json", "type": "image", "extend": { "name": "realm_content", "namespace": "create_world_upsell" } }, "create_realm_upsell_content/padding_0": { "file": "ui/create_world_upsell_screen.json", "type": "panel" }, "create_realm_upsell_content/remove_trial_button": { "file": "ui/create_world_upsell_screen.json", "type": "button", "extend": { "name": "remove_trial_button", "namespace": "create_world_upsell" } }, "create_realm_upsell_content/padding_1": { "file": "ui/create_world_upsell_screen.json", "type": "panel" }, "realm_content": { "file": "ui/create_world_upsell_screen.json", "type": "image", "extend": { "name": "border_shell", "namespace": "create_world_upsell" } }, "create_world_upsell": { "file": "ui/create_world_upsell_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "create_world_upsell_realms": { "file": "ui/create_world_upsell_screen.json", "type": "screen", "extend": { "name": "create_world_upsell", "namespace": "create_world_upsell" } }, "main_panel": { "file": "ui/create_world_upsell_screen.json", "type": "panel", "extend": { "name": "main_panel_no_buttons", "namespace": "common_dialogs" } }, "variable_screen_size_panel": { "file": "ui/create_world_upsell_screen.json", "type": "panel", "children": [ "dialog_0", "dialog_1" ] }, "variable_screen_size_panel/dialog_0": { "file": "ui/create_world_upsell_screen.json", "type": "panel", "extend": { "name": "main_panel_realms_only", "namespace": "create_world_upsell" } }, "variable_screen_size_panel/dialog_1": { "file": "ui/create_world_upsell_screen.json", "type": "panel", "extend": { "name": "main_panel_realms_only", "namespace": "create_world_upsell" } }, "main_panel_realms_only": { "file": "ui/create_world_upsell_screen.json", "type": "panel", "extend": { "name": "main_panel_no_buttons", "namespace": "common_dialogs" } } }, "credits": { "fade_in_image": { "file": "ui/credits_screen.json", "type": "image" }, "fade_out_image": { "file": "ui/credits_screen.json", "type": "image", "extend": { "name": "fade_in_image", "namespace": "credits" } }, "skip_panel": { "file": "ui/credits_screen.json", "type": "panel", "children": [ "skip_button", "exit_credits_input_panel" ] }, "skip_panel/skip_button": { "file": "ui/credits_screen.json", "type": "button", "extend": { "name": "light_text_form_fitting_button", "namespace": "common_buttons" } }, "skip_panel/exit_credits_input_panel": { "file": "ui/credits_screen.json", "type": "input_panel" }, "credits_renderer": { "file": "ui/credits_screen.json", "type": "custom" }, "credits_screen_content": { "file": "ui/credits_screen.json", "type": "panel", "children": [ "credits_renderer", "vignette_renderer", "fade_in_image", "credits_factory", "whole_screen_input_panel" ] }, "credits_screen_content/credits_renderer": { "file": "ui/credits_screen.json", "type": "custom", "extend": { "name": "credits_renderer", "namespace": "credits" } }, "credits_screen_content/vignette_renderer": { "file": "ui/credits_screen.json", "type": "custom" }, "credits_screen_content/fade_in_image": { "file": "ui/credits_screen.json", "type": "image", "extend": { "name": "fade_in_image", "namespace": "credits" } }, "credits_screen_content/credits_factory": { "file": "ui/credits_screen.json", "type": "factory" }, "credits_screen_content/whole_screen_input_panel": { "file": "ui/credits_screen.json", "type": "input_panel" }, "background": { "file": "ui/credits_screen.json", "type": "image", "extend": { "name": "dirt_background", "namespace": "common" } }, "credits_screen": { "file": "ui/credits_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } } }, "csb_purchase_error": { "csb_purchase_error_screen": { "file": "ui/csb_purchase_error_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "purchase_error_screen_content": { "file": "ui/csb_purchase_error_screen.json", "type": "panel", "children": [ "main_panel" ] }, "purchase_error_screen_content/main_panel": { "file": "ui/csb_purchase_error_screen.json", "type": "panel", "extend": { "name": "main_panel_one_button", "namespace": "common_dialogs" } }, "purchase_error_modal_main_panel": { "file": "ui/csb_purchase_error_screen.json", "type": "stack_panel", "children": [ "text_panel", "padding_1", "art_panel", "padding_2", "error_panel" ] }, "purchase_error_modal_main_panel/text_panel": { "file": "ui/csb_purchase_error_screen.json", "type": "panel", "children": [ "text" ] }, "purchase_error_modal_main_panel/text_panel/text": { "file": "ui/csb_purchase_error_screen.json", "type": "label" }, "purchase_error_modal_main_panel/padding_1": { "file": "ui/csb_purchase_error_screen.json", "type": "panel" }, "purchase_error_modal_main_panel/art_panel": { "file": "ui/csb_purchase_error_screen.json", "type": "panel", "children": [ "art" ] }, "purchase_error_modal_main_panel/art_panel/art": { "file": "ui/csb_purchase_error_screen.json", "type": "image" }, "purchase_error_modal_main_panel/padding_2": { "file": "ui/csb_purchase_error_screen.json", "type": "panel" }, "purchase_error_modal_main_panel/error_panel": { "file": "ui/csb_purchase_error_screen.json", "type": "stack_panel", "children": [ "error_code", "correlation_id" ] }, "purchase_error_modal_main_panel/error_panel/error_code": { "file": "ui/csb_purchase_error_screen.json", "type": "label" }, "purchase_error_modal_main_panel/error_panel/correlation_id": { "file": "ui/csb_purchase_error_screen.json", "type": "label" }, "purchase_error_modal_back_button": { "file": "ui/csb_purchase_error_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } } }, "csb": { "csb_pdp_screen": { "file": "ui/csb_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "csb_upgrade_notice_screen": { "file": "ui/csb_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "csb_background": { "file": "ui/csb_screen.json", "type": "image" }, "gradient_image_stack": { "file": "ui/csb_screen.json", "type": "stack_panel", "children": [ "gradient" ] }, "gradient_image_stack/gradient": { "file": "ui/csb_screen.json", "type": "image" }, "gradient_content_panel": { "file": "ui/csb_screen.json", "type": "panel", "children": [ "gradient", "particles", "content_panel" ] }, "gradient_content_panel/gradient": { "file": "ui/csb_screen.json", "type": "stack_panel", "extend": { "name": "gradient_image_stack", "namespace": "csb" } }, "gradient_content_panel/particles": { "file": "ui/csb_screen.json", "type": "image" }, "gradient_content_panel/content_panel": { "file": "ui/csb_screen.json", "type": "unknown" }, "csb_screen_main_panel": { "file": "ui/csb_screen.json", "type": "input_panel", "extend": { "name": "sidebar_view", "namespace": "sidebar_navigation" } }, "csb_main_panel": { "file": "ui/csb_screen.json", "type": "panel", "children": [ "root_panel" ] }, "csb_main_panel/root_panel": { "file": "ui/csb_screen.json", "type": "panel", "children": [ "main_panel" ] }, "csb_main_panel/root_panel/main_panel": { "file": "ui/csb_screen.json", "type": "stack_panel", "extend": { "name": "store_header_with_coins", "namespace": "common_store" } }, "dialog_content": { "file": "ui/csb_screen.json", "type": "stack_panel", "children": [ "selector_area", "padding_1", "allow_divider_offset_panel", "padding_2", "content_area", "padding_3" ] }, "dialog_content/selector_area": { "file": "ui/csb_screen.json", "type": "panel", "extend": { "name": "selector_area", "namespace": "csb" } }, "dialog_content/padding_1": { "file": "ui/csb_screen.json", "type": "panel" }, "dialog_content/allow_divider_offset_panel": { "file": "ui/csb_screen.json", "type": "panel", "children": [ "left_right_pane_divider" ] }, "dialog_content/allow_divider_offset_panel/left_right_pane_divider": { "file": "ui/csb_screen.json", "type": "image", "extend": { "name": "left_right_pane_divider", "namespace": "csb" } }, "dialog_content/padding_2": { "file": "ui/csb_screen.json", "type": "panel" }, "dialog_content/content_area": { "file": "ui/csb_screen.json", "type": "panel", "extend": { "name": "content_area", "namespace": "csb" } }, "dialog_content/padding_3": { "file": "ui/csb_screen.json", "type": "panel" }, "selector_area": { "file": "ui/csb_screen.json", "type": "panel", "children": [ "scrolling_panel" ] }, "selector_area/scrolling_panel": { "file": "ui/csb_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "scrollable_selector_area_content": { "file": "ui/csb_screen.json", "type": "stack_panel", "children": [ "focus_reset_input_panel", "csb_toggle", "content_toggle", "faq_toggle", "toggle_section_divider", "buy_now_toggle", "xbl_btn_panel" ] }, "scrollable_selector_area_content/focus_reset_input_panel": { "file": "ui/csb_screen.json", "type": "input_panel" }, "scrollable_selector_area_content/csb_toggle": { "file": "ui/csb_screen.json", "type": "stack_panel", "extend": { "name": "csb_toggle", "namespace": "csb" } }, "scrollable_selector_area_content/content_toggle": { "file": "ui/csb_screen.json", "type": "stack_panel", "extend": { "name": "content_toggle", "namespace": "csb" } }, "scrollable_selector_area_content/faq_toggle": { "file": "ui/csb_screen.json", "type": "stack_panel", "extend": { "name": "faq_toggle", "namespace": "csb" } }, "scrollable_selector_area_content/toggle_section_divider": { "file": "ui/csb_screen.json", "type": "stack_panel", "extend": { "name": "section_divider", "namespace": "common" } }, "scrollable_selector_area_content/buy_now_toggle": { "file": "ui/csb_screen.json", "type": "stack_panel", "extend": { "name": "buy_now_toggle", "namespace": "csb" } }, "scrollable_selector_area_content/xbl_btn_panel": { "file": "ui/csb_screen.json", "type": "panel", "children": [ "xbl_btn" ] }, "scrollable_selector_area_content/xbl_btn_panel/xbl_btn": { "file": "ui/csb_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "section_toggle_base": { "file": "ui/csb_screen.json", "type": "panel", "extend": { "name": "light_text_toggle_collection", "namespace": "common_toggles" } }, "tab_button_text": { "file": "ui/csb_screen.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "toggle_base": { "file": "ui/csb_screen.json", "type": "stack_panel", "children": [ "toggle", "padding" ] }, "toggle_base/toggle": { "file": "ui/csb_screen.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "csb" } }, "toggle_base/padding": { "file": "ui/csb_screen.json", "type": "panel" }, "csb_toggle": { "file": "ui/csb_screen.json", "type": "stack_panel", "extend": { "name": "toggle_base", "namespace": "csb" } }, "content_toggle": { "file": "ui/csb_screen.json", "type": "stack_panel", "extend": { "name": "toggle_base", "namespace": "csb" } }, "faq_toggle": { "file": "ui/csb_screen.json", "type": "stack_panel", "extend": { "name": "toggle_base", "namespace": "csb" } }, "buy_now_toggle": { "file": "ui/csb_screen.json", "type": "stack_panel", "extend": { "name": "toggle_base", "namespace": "csb" } }, "left_right_pane_divider": { "file": "ui/csb_screen.json", "type": "image" }, "content_area": { "file": "ui/csb_screen.json", "type": "panel", "children": [ "control" ] }, "content_area/control": { "file": "ui/csb_screen.json", "type": "stack_panel", "children": [ "scrolling_panel_csb" ] }, "content_area/control/scrolling_panel_csb": { "file": "ui/csb_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "section_content_panels": { "file": "ui/csb_screen.json", "type": "stack_panel" }, "vertical_padding_4px": { "file": "ui/csb_screen.json", "type": "panel" }, "section_base": { "file": "ui/csb_screen.json", "type": "stack_panel" }, "buy_now_content_section": { "file": "ui/csb_screen.json", "type": "stack_panel", "extend": { "name": "section_base", "namespace": "csb" }, "children": [ "vertical_padding", "content" ] }, "buy_now_content_section/vertical_padding": { "file": "ui/csb_screen.json", "type": "panel", "extend": { "name": "vertical_padding_4px", "namespace": "csb" } }, "buy_now_content_section/content": { "file": "ui/csb_screen.json", "type": "stack_panel", "extend": { "name": "buy_now_content", "namespace": "csb_buy" } }, "markdown_background_animated": { "file": "ui/csb_screen.json", "type": "panel", "children": [ "csb_chevron" ] }, "markdown_background_animated/csb_chevron": { "file": "ui/csb_screen.json", "type": "image" }, "markdown_background": { "file": "ui/csb_screen.json", "type": "stack_panel", "children": [ "banner_panel", "triangle_panel" ] }, "markdown_background/banner_panel": { "file": "ui/csb_screen.json", "type": "panel", "children": [ "banner" ] }, "markdown_background/banner_panel/banner": { "file": "ui/csb_screen.json", "type": "image", "extend": { "name": "markdown_banner", "namespace": "common_store" }, "children": [ "banner_stack_panel" ] }, "markdown_background/banner_panel/banner/banner_stack_panel": { "file": "ui/csb_screen.json", "type": "stack_panel", "children": [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ] }, "markdown_background/banner_panel/banner/banner_stack_panel/0": { "file": "ui/csb_screen.json", "type": "unknown" }, "markdown_background/triangle_panel": { "file": "ui/csb_screen.json", "type": "panel", "children": [ "triangle" ] }, "markdown_background/triangle_panel/triangle": { "file": "ui/csb_screen.json", "type": "image", "extend": { "name": "markdown_triangle", "namespace": "common_store" } }, "empty_label": { "file": "ui/csb_screen.json", "type": "panel" }, "full_width_section_divider": { "file": "ui/csb_screen.json", "type": "stack_panel", "extend": { "name": "section_divider", "namespace": "common" } } }, "csb_content": { "csb_content_section": { "file": "ui/csb_sections/content_section.json", "type": "stack_panel", "extend": { "name": "section_base", "namespace": "csb" }, "children": [ "content_section_vertical_padding_1", "popular_packs_label_panel", "content_section_vertical_padding_2", "content_pack_types", "content_packs_included", "content_section_vertical_padding_3" ] }, "csb_content_section/content_section_vertical_padding_1": { "file": "ui/csb_sections/content_section.json", "type": "panel", "extend": { "name": "vertical_padding_4px", "namespace": "csb" } }, "csb_content_section/popular_packs_label_panel": { "file": "ui/csb_sections/content_section.json", "type": "panel", "children": [ "label_with_gradient", "tts_border" ] }, "csb_content_section/popular_packs_label_panel/label_with_gradient": { "file": "ui/csb_sections/content_section.json", "type": "panel", "extend": { "name": "gradient_content_panel", "namespace": "csb" } }, "csb_content_section/popular_packs_label_panel/tts_border": { "file": "ui/csb_sections/content_section.json", "type": "button", "extend": { "name": "tts_activate_sibling", "namespace": "common" } }, "csb_content_section/content_section_vertical_padding_2": { "file": "ui/csb_sections/content_section.json", "type": "panel", "extend": { "name": "vertical_padding_4px", "namespace": "csb" } }, "csb_content_section/content_pack_types": { "file": "ui/csb_sections/content_section.json", "type": "stack_panel", "extend": { "name": "content_pack_types_section", "namespace": "csb_content" } }, "csb_content_section/content_packs_included": { "file": "ui/csb_sections/content_section.json", "type": "stack_panel", "extend": { "name": "content_packs_included_section", "namespace": "csb_content" } }, "csb_content_section/content_section_vertical_padding_3": { "file": "ui/csb_sections/content_section.json", "type": "panel", "extend": { "name": "vertical_padding_4px", "namespace": "csb" } }, "content_pack_types_section": { "file": "ui/csb_sections/content_section.json", "type": "stack_panel", "children": [ "pack_types", "padding" ] }, "content_pack_types_section/pack_types": { "file": "ui/csb_sections/content_section.json", "type": "stack_panel", "extend": { "name": "pack_types", "namespace": "csb_content" } }, "content_pack_types_section/padding": { "file": "ui/csb_sections/content_section.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "content_packs_included_section": { "file": "ui/csb_sections/content_section.json", "type": "stack_panel", "children": [ "popular_packs", "section_divider" ] }, "content_packs_included_section/popular_packs": { "file": "ui/csb_sections/content_section.json", "type": "stack_panel", "extend": { "name": "popular_packs", "namespace": "csb_content" } }, "content_packs_included_section/section_divider": { "file": "ui/csb_sections/content_section.json", "type": "stack_panel", "extend": { "name": "full_width_section_divider", "namespace": "csb" } }, "pack_types": { "file": "ui/csb_sections/content_section.json", "type": "stack_panel", "children": [ "padding_01", "pack_types_1", "padding_02", "pack_types_2", "padding_03" ] }, "pack_types/padding_01": { "file": "ui/csb_sections/content_section.json", "type": "panel" }, "pack_types/pack_types_1": { "file": "ui/csb_sections/content_section.json", "type": "stack_panel", "extend": { "name": "pack_types_1", "namespace": "csb_content" } }, "pack_types/padding_02": { "file": "ui/csb_sections/content_section.json", "type": "panel" }, "pack_types/pack_types_2": { "file": "ui/csb_sections/content_section.json", "type": "stack_panel", "extend": { "name": "pack_types_2", "namespace": "csb_content" } }, "pack_types/padding_03": { "file": "ui/csb_sections/content_section.json", "type": "panel" }, "pack_types_1": { "file": "ui/csb_sections/content_section.json", "type": "stack_panel", "children": [ "worlds", "padding_01", "textures", "padding_02", "persona" ] }, "pack_types_1/worlds": { "file": "ui/csb_sections/content_section.json", "type": "stack_panel", "extend": { "name": "pack_type_description", "namespace": "csb_content" } }, "pack_types_1/padding_01": { "file": "ui/csb_sections/content_section.json", "type": "panel" }, "pack_types_1/textures": { "file": "ui/csb_sections/content_section.json", "type": "stack_panel", "extend": { "name": "pack_type_description", "namespace": "csb_content" } }, "pack_types_1/padding_02": { "file": "ui/csb_sections/content_section.json", "type": "panel" }, "pack_types_1/persona": { "file": "ui/csb_sections/content_section.json", "type": "stack_panel", "extend": { "name": "pack_type_description", "namespace": "csb_content" } }, "pack_types_2": { "file": "ui/csb_sections/content_section.json", "type": "stack_panel", "children": [ "padding_1", "skins", "padding_2", "mashups", "padding_3" ] }, "pack_types_2/padding_1": { "file": "ui/csb_sections/content_section.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "pack_types_2/skins": { "file": "ui/csb_sections/content_section.json", "type": "stack_panel", "extend": { "name": "pack_type_description", "namespace": "csb_content" } }, "pack_types_2/padding_2": { "file": "ui/csb_sections/content_section.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "pack_types_2/mashups": { "file": "ui/csb_sections/content_section.json", "type": "stack_panel", "extend": { "name": "pack_type_description", "namespace": "csb_content" } }, "pack_types_2/padding_3": { "file": "ui/csb_sections/content_section.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "pack_type_description": { "file": "ui/csb_sections/content_section.json", "type": "stack_panel", "children": [ "image_nesting_panel", "padding_0", "description_nesting_panel", "padding_1" ] }, "pack_type_description/image_nesting_panel": { "file": "ui/csb_sections/content_section.json", "type": "panel", "children": [ "texture" ] }, "pack_type_description/image_nesting_panel/texture": { "file": "ui/csb_sections/content_section.json", "type": "unknown" }, "pack_type_description/padding_0": { "file": "ui/csb_sections/content_section.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "pack_type_description/description_nesting_panel": { "file": "ui/csb_sections/content_section.json", "type": "panel", "children": [ "description_label", "tts_border" ] }, "pack_type_description/description_nesting_panel/description_label": { "file": "ui/csb_sections/content_section.json", "type": "label" }, "pack_type_description/description_nesting_panel/tts_border": { "file": "ui/csb_sections/content_section.json", "type": "button", "extend": { "name": "tts_activate_sibling", "namespace": "common" } }, "pack_type_description/padding_1": { "file": "ui/csb_sections/content_section.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "popular_packs": { "file": "ui/csb_sections/content_section.json", "type": "stack_panel", "children": [ "padding_0", "pack_grid", "view_all_packs_panel", "padding_1" ] }, "popular_packs/padding_0": { "file": "ui/csb_sections/content_section.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "popular_packs/pack_grid": { "file": "ui/csb_sections/content_section.json", "type": "stack_panel", "extend": { "name": "packs_collection", "namespace": "csb_content" } }, "popular_packs/view_all_packs_panel": { "file": "ui/csb_sections/content_section.json", "type": "stack_panel", "children": [ "view_all_packs_button", "padding", "view_character_creator_items" ] }, "popular_packs/view_all_packs_panel/view_all_packs_button": { "file": "ui/csb_sections/content_section.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "popular_packs/view_all_packs_panel/padding": { "file": "ui/csb_sections/content_section.json", "type": "panel" }, "popular_packs/view_all_packs_panel/view_character_creator_items": { "file": "ui/csb_sections/content_section.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "popular_packs/padding_1": { "file": "ui/csb_sections/content_section.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "popular_packs_label": { "file": "ui/csb_sections/content_section.json", "type": "label" }, "packs_collection": { "file": "ui/csb_sections/content_section.json", "type": "stack_panel", "children": [ "row_1", "padding_1", "row_2", "padding_2" ] }, "packs_collection/row_1": { "file": "ui/csb_sections/content_section.json", "type": "stack_panel", "children": [ "pack_image_grid_item_0", "padding", "pack_image_grid_item_1" ] }, "packs_collection/row_1/pack_image_grid_item_0": { "file": "ui/csb_sections/content_section.json", "type": "panel", "extend": { "name": "pack_image_grid_item", "namespace": "csb_content" } }, "packs_collection/row_1/padding": { "file": "ui/csb_sections/content_section.json", "type": "panel" }, "packs_collection/row_1/pack_image_grid_item_1": { "file": "ui/csb_sections/content_section.json", "type": "panel", "extend": { "name": "pack_image_grid_item", "namespace": "csb_content" } }, "packs_collection/padding_1": { "file": "ui/csb_sections/content_section.json", "type": "panel" }, "packs_collection/row_2": { "file": "ui/csb_sections/content_section.json", "type": "stack_panel", "children": [ "pack_image_grid_item_0", "padding", "pack_image_grid_item_1" ] }, "packs_collection/row_2/pack_image_grid_item_0": { "file": "ui/csb_sections/content_section.json", "type": "panel", "extend": { "name": "pack_image_grid_item", "namespace": "csb_content" } }, "packs_collection/row_2/padding": { "file": "ui/csb_sections/content_section.json", "type": "panel" }, "packs_collection/row_2/pack_image_grid_item_1": { "file": "ui/csb_sections/content_section.json", "type": "panel", "extend": { "name": "pack_image_grid_item", "namespace": "csb_content" } }, "packs_collection/padding_2": { "file": "ui/csb_sections/content_section.json", "type": "panel" }, "pack_image_grid_item": { "file": "ui/csb_sections/content_section.json", "type": "panel", "children": [ "bg", "offer_button" ] }, "pack_image_grid_item/bg": { "file": "ui/csb_sections/content_section.json", "type": "image", "extend": { "name": "banner_fill", "namespace": "common_store" }, "children": [ "featured_key_art", "progress_loading" ] }, "pack_image_grid_item/bg/featured_key_art": { "file": "ui/csb_sections/content_section.json", "type": "image" }, "pack_image_grid_item/bg/progress_loading": { "file": "ui/csb_sections/content_section.json", "type": "panel", "extend": { "name": "progress_loading", "namespace": "common_store" } }, "pack_image_grid_item/offer_button": { "file": "ui/csb_sections/content_section.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed" ] }, "pack_image_grid_item/offer_button/default": { "file": "ui/csb_sections/content_section.json", "type": "image", "extend": { "name": "square_image_border_white", "namespace": "common" } }, "pack_image_grid_item/offer_button/hover": { "file": "ui/csb_sections/content_section.json", "type": "image", "extend": { "name": "square_image_border_white", "namespace": "common" } }, "pack_image_grid_item/offer_button/pressed": { "file": "ui/csb_sections/content_section.json", "type": "image", "extend": { "name": "square_image_border_white", "namespace": "common" } } }, "csb_banner": { "csb_banner": { "file": "ui/csb_sections/csb_banner.json", "type": "panel", "children": [ "static_button", "animated_button" ] }, "csb_banner/static_button": { "file": "ui/csb_sections/csb_banner.json", "type": "button", "extend": { "name": "promo_banner_csb_button", "namespace": "csb_banner" } }, "csb_banner/animated_button": { "file": "ui/csb_sections/csb_banner.json", "type": "button", "extend": { "name": "animated_promo_banner_csb_button", "namespace": "csb_banner" } }, "csb_banner_slim": { "file": "ui/csb_sections/csb_banner.json", "type": "panel", "children": [ "banner_button" ] }, "csb_banner_slim/banner_button": { "file": "ui/csb_sections/csb_banner.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "csb_banner_portal": { "file": "ui/csb_sections/csb_banner.json", "type": "panel", "children": [ "banner_button" ] }, "csb_banner_portal/banner_button": { "file": "ui/csb_sections/csb_banner.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "promo_banner_csb_button": { "file": "ui/csb_sections/csb_banner.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover" ] }, "promo_banner_csb_button/default": { "file": "ui/csb_sections/csb_banner.json", "type": "unknown" }, "promo_banner_csb_button/hover": { "file": "ui/csb_sections/csb_banner.json", "type": "unknown" }, "csb_banner_slim_content": { "file": "ui/csb_sections/csb_banner.json", "type": "panel", "children": [ "banner_content" ] }, "csb_banner_slim_content/banner_content": { "file": "ui/csb_sections/csb_banner.json", "type": "panel", "extend": { "name": "csb_banner_new_content", "namespace": "csb_banner" } }, "csb_banner_portal_content": { "file": "ui/csb_sections/csb_banner.json", "type": "panel", "children": [ "banner_content" ] }, "csb_banner_portal_content/banner_content": { "file": "ui/csb_sections/csb_banner.json", "type": "panel", "extend": { "name": "csb_banner_new_content", "namespace": "csb_banner" } }, "slim_logo_panel": { "file": "ui/csb_sections/csb_banner.json", "type": "panel", "children": [ "mpp_logo" ] }, "slim_logo_panel/mpp_logo": { "file": "ui/csb_sections/csb_banner.json", "type": "image" }, "portal_logo_panel": { "file": "ui/csb_sections/csb_banner.json", "type": "panel", "children": [ "mpp_logo" ] }, "portal_logo_panel/mpp_logo": { "file": "ui/csb_sections/csb_banner.json", "type": "image" }, "csb_banner_new_content": { "file": "ui/csb_sections/csb_banner.json", "type": "panel", "children": [ "text" ] }, "csb_banner_new_content/text": { "file": "ui/csb_sections/csb_banner.json", "type": "stack_panel", "children": [ "logo_panel", "offer_panel", "pixel_art" ] }, "csb_banner_new_content/text/logo_panel": { "file": "ui/csb_sections/csb_banner.json", "type": "unknown" }, "csb_banner_new_content/text/offer_panel": { "file": "ui/csb_sections/csb_banner.json", "type": "panel", "children": [ "upsell_text" ] }, "csb_banner_new_content/text/offer_panel/upsell_text": { "file": "ui/csb_sections/csb_banner.json", "type": "stack_panel", "extend": { "name": "sdl_upsell_text_component_factory", "namespace": "csb_banner" } }, "csb_banner_new_content/text/pixel_art": { "file": "ui/csb_sections/csb_banner.json", "type": "stack_panel", "extend": { "name": "image_component_factory", "namespace": "csb_banner" } }, "sdl_upsell_text_component_factory": { "file": "ui/csb_sections/csb_banner.json", "type": "stack_panel", "extend": { "name": "sdl_label_factory", "namespace": "sdl_label" } }, "csb_banner_content": { "file": "ui/csb_sections/csb_banner.json", "type": "panel", "children": [ "banner", "text" ] }, "csb_banner_content/banner": { "file": "ui/csb_sections/csb_banner.json", "type": "image" }, "csb_banner_content/text": { "file": "ui/csb_sections/csb_banner.json", "type": "stack_panel", "children": [ "logo_panel", "offer_panel", "learn_more_panel" ] }, "csb_banner_content/text/logo_panel": { "file": "ui/csb_sections/csb_banner.json", "type": "panel", "children": [ "logo" ] }, "csb_banner_content/text/logo_panel/logo": { "file": "ui/csb_sections/csb_banner.json", "type": "stack_panel", "extend": { "name": "csb_header", "namespace": "common_csb" } }, "csb_banner_content/text/offer_panel": { "file": "ui/csb_sections/csb_banner.json", "type": "panel", "children": [ "offer" ] }, "csb_banner_content/text/offer_panel/offer": { "file": "ui/csb_sections/csb_banner.json", "type": "label" }, "csb_banner_content/text/learn_more_panel": { "file": "ui/csb_sections/csb_banner.json", "type": "panel", "children": [ "learn_more" ] }, "csb_banner_content/text/learn_more_panel/learn_more": { "file": "ui/csb_sections/csb_banner.json", "type": "stack_panel", "children": [ "more", "more_chevron" ] }, "csb_banner_content/text/learn_more_panel/learn_more/more": { "file": "ui/csb_sections/csb_banner.json", "type": "label" }, "csb_banner_content/text/learn_more_panel/learn_more/more_chevron": { "file": "ui/csb_sections/csb_banner.json", "type": "label" }, "animated_promo_banner_csb_button": { "file": "ui/csb_sections/csb_banner.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover" ] }, "animated_promo_banner_csb_button/default": { "file": "ui/csb_sections/csb_banner.json", "type": "panel", "extend": { "name": "animated_csb_banner_content", "namespace": "csb_banner" } }, "animated_promo_banner_csb_button/hover": { "file": "ui/csb_sections/csb_banner.json", "type": "panel", "extend": { "name": "animated_csb_banner_content", "namespace": "csb_banner" } }, "animated_csb_banner_content": { "file": "ui/csb_sections/csb_banner.json", "type": "panel", "children": [ "banner", "text" ] }, "animated_csb_banner_content/banner": { "file": "ui/csb_sections/csb_banner.json", "type": "image" }, "animated_csb_banner_content/text": { "file": "ui/csb_sections/csb_banner.json", "type": "stack_panel", "children": [ "logo_panel", "offer_panel", "learn_more_panel" ] }, "animated_csb_banner_content/text/logo_panel": { "file": "ui/csb_sections/csb_banner.json", "type": "panel", "children": [ "logo" ] }, "animated_csb_banner_content/text/logo_panel/logo": { "file": "ui/csb_sections/csb_banner.json", "type": "stack_panel", "extend": { "name": "csb_header", "namespace": "common_csb" } }, "animated_csb_banner_content/text/offer_panel": { "file": "ui/csb_sections/csb_banner.json", "type": "panel", "children": [ "offer" ] }, "animated_csb_banner_content/text/offer_panel/offer": { "file": "ui/csb_sections/csb_banner.json", "type": "label" }, "animated_csb_banner_content/text/learn_more_panel": { "file": "ui/csb_sections/csb_banner.json", "type": "panel", "children": [ "learn_more" ] }, "animated_csb_banner_content/text/learn_more_panel/learn_more": { "file": "ui/csb_sections/csb_banner.json", "type": "stack_panel", "children": [ "more", "more_chevron" ] }, "animated_csb_banner_content/text/learn_more_panel/learn_more/more": { "file": "ui/csb_sections/csb_banner.json", "type": "label" }, "animated_csb_banner_content/text/learn_more_panel/learn_more/more_chevron": { "file": "ui/csb_sections/csb_banner.json", "type": "label" }, "still_pixel_art_panel": { "file": "ui/csb_sections/csb_banner.json", "type": "panel", "children": [ "banner" ] }, "still_pixel_art_panel/banner": { "file": "ui/csb_sections/csb_banner.json", "type": "image" }, "animated_pixel_art_panel": { "file": "ui/csb_sections/csb_banner.json", "type": "panel", "children": [ "mygif" ] }, "animated_pixel_art_panel/mygif": { "file": "ui/csb_sections/csb_banner.json", "type": "custom" }, "image_component_factory": { "file": "ui/csb_sections/csb_banner.json", "type": "stack_panel", "extend": { "name": "image_asset_factory", "namespace": "csb_banner" } }, "image_asset_factory": { "file": "ui/csb_sections/csb_banner.json", "type": "stack_panel" } }, "csb_buy": { "buy_now_content": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "stack_panel", "children": [ "description_stack", "terms_and_conditions", "padding_2", "button_panel", "padding_3", "terms" ] }, "buy_now_content/description_stack": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "stack_panel", "extend": { "name": "description_stack", "namespace": "csb_buy" } }, "buy_now_content/terms_and_conditions": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "panel", "extend": { "name": "terms_and_conditions", "namespace": "csb_buy" } }, "buy_now_content/padding_2": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "panel" }, "buy_now_content/button_panel": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "panel", "children": [ "buy_button", "icon_panel" ] }, "buy_now_content/button_panel/buy_button": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "panel", "extend": { "name": "buy_button_panel", "namespace": "csb_buy" } }, "buy_now_content/button_panel/icon_panel": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "panel", "extend": { "name": "tool_tip_icon_panel", "namespace": "csb_buy" } }, "buy_now_content/padding_3": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "panel" }, "buy_now_content/terms": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "stack_panel", "extend": { "name": "content_text_section", "namespace": "csb_buy" } }, "content_text_section": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "stack_panel", "children": [ "text_description", "padding" ] }, "content_text_section/text_description": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "panel", "extend": { "name": "content_description", "namespace": "csb_buy" } }, "content_text_section/padding": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "panel" }, "content_description": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "panel", "children": [ "content_description_label", "tts_hover" ] }, "content_description/content_description_label": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "label" }, "content_description/tts_hover": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "button", "extend": { "name": "tts_activate_sibling", "namespace": "common" } }, "trial_image_and_description": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "stack_panel", "children": [ "image_border", "padding", "description_text" ] }, "trial_image_and_description/image_border": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "image" }, "trial_image_and_description/padding": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "panel" }, "trial_image_and_description/description_text": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "panel", "children": [ "descriptions_label", "tts_hover" ] }, "trial_image_and_description/description_text/descriptions_label": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "label" }, "trial_image_and_description/description_text/tts_hover": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "button", "extend": { "name": "tts_activate_sibling", "namespace": "common" } }, "title_text": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "panel", "children": [ "inner_text", "tts_hover" ] }, "title_text/inner_text": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "label" }, "title_text/tts_hover": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "button", "extend": { "name": "tts_activate_sibling", "namespace": "common" } }, "description_stack": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "stack_panel", "children": [ "title_with_gradient", "padding", "image_and_description" ] }, "description_stack/title_with_gradient": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "panel", "extend": { "name": "gradient_content_panel", "namespace": "csb" } }, "description_stack/padding": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "panel" }, "description_stack/image_and_description": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "stack_panel", "extend": { "name": "trial_image_and_description", "namespace": "csb_buy" } }, "terms_and_conditions": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "panel", "children": [ "terms_panel" ] }, "terms_and_conditions/terms_panel": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "panel", "extend": { "name": "terms_and_conditions_panel", "namespace": "csb_buy" } }, "terms_and_conditions_panel": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "panel", "children": [ "name_label", "terms_string_panel" ] }, "terms_and_conditions_panel/name_label": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "terms_and_conditions_panel/terms_string_panel": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "panel", "children": [ "banner_fill", "buttons_stack_panel" ] }, "terms_and_conditions_panel/terms_string_panel/banner_fill": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "image" }, "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "stack_panel", "children": [ "agree_panel", "view_terms_button", "privacy_policy_button" ] }, "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "panel", "children": [ "checkbox_control" ] }, "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "toggle", "extend": { "name": "checkbox_with_highlight_and_label", "namespace": "settings_common" } }, "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "button", "extend": { "name": "view_terms_button", "namespace": "csb_buy" } }, "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "button", "extend": { "name": "privacy_policy_button", "namespace": "csb_buy" } }, "button_text": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "mcten_text_centering_panel": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "panel", "children": [ "button_text" ] }, "mcten_text_centering_panel/button_text": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "label", "extend": { "name": "button_text", "namespace": "csb_buy" } }, "view_terms_button": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "privacy_policy_button": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "buy_button_panel": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "panel", "children": [ "buy_button" ] }, "buy_button_panel/buy_button": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "tool_tip_icon_panel": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "panel", "children": [ "issue_icon" ] }, "tool_tip_icon_panel/issue_icon": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "info_icon", "default", "hover", "pressed" ] }, "tool_tip_icon_panel/issue_icon/info_icon": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "image" }, "tool_tip_icon_panel/issue_icon/default": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "tool_tip_icon_panel/issue_icon/hover": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "image", "extend": { "name": "dynamic_tooltip_popup_with_image_and_text", "namespace": "common" } }, "tool_tip_icon_panel/issue_icon/pressed": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "image", "extend": { "name": "dynamic_tooltip_popup_with_image_and_text", "namespace": "common" } }, "buy_button_content": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "stack_panel", "children": [ "button_chevron_panel", "button_text_centering_panel" ] }, "buy_button_content/button_chevron_panel": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "panel", "children": [ "buy_button_chevron" ] }, "buy_button_content/button_chevron_panel/buy_button_chevron": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "panel", "extend": { "name": "markdown_background_animated", "namespace": "csb" } }, "buy_button_content/button_text_centering_panel": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "panel", "extend": { "name": "mcten_text_centering_panel", "namespace": "csb_buy" } }, "info_icon": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "panel", "children": [ "panel_icon" ] }, "info_icon/panel_icon": { "file": "ui/csb_sections/csb_buy_now_screen.json", "type": "image" } }, "common_csb": { "csb_expiration_banner": { "file": "ui/csb_sections/csb_common.json", "type": "panel", "children": [ "background", "icon", "text" ] }, "csb_expiration_banner/background": { "file": "ui/csb_sections/csb_common.json", "type": "image" }, "csb_expiration_banner/icon": { "file": "ui/csb_sections/csb_common.json", "type": "image" }, "csb_expiration_banner/text": { "file": "ui/csb_sections/csb_common.json", "type": "label" }, "csb_icon_large": { "file": "ui/csb_sections/csb_common.json", "type": "image" }, "csb_header": { "file": "ui/csb_sections/csb_common.json", "type": "stack_panel", "children": [ "label_a_text_csb", "label_space_text_csb", "label_b_text_pass" ] }, "csb_header/label_a_text_csb": { "file": "ui/csb_sections/csb_common.json", "type": "label" }, "csb_header/label_space_text_csb": { "file": "ui/csb_sections/csb_common.json", "type": "label" }, "csb_header/label_b_text_pass": { "file": "ui/csb_sections/csb_common.json", "type": "label" }, "csb_header_two_lines": { "file": "ui/csb_sections/csb_common.json", "type": "stack_panel", "children": [ "top_header", "panel_centre_second_line" ] }, "csb_header_two_lines/top_header": { "file": "ui/csb_sections/csb_common.json", "type": "label" }, "csb_header_two_lines/panel_centre_second_line": { "file": "ui/csb_sections/csb_common.json", "type": "panel", "children": [ "sub_header" ] }, "csb_header_two_lines/panel_centre_second_line/sub_header": { "file": "ui/csb_sections/csb_common.json", "type": "label" }, "csb_gold_button": { "file": "ui/csb_sections/csb_common.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "csb_gold_text_button": { "file": "ui/csb_sections/csb_common.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } } }, "csb_purchase_amazondevicewarning": { "csb_purchase_amazondevicewarning_screen": { "file": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "screen_content": { "file": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", "type": "panel", "children": [ "main_panel" ] }, "screen_content/main_panel": { "file": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", "type": "panel", "extend": { "name": "main_panel_one_button", "namespace": "common_dialogs" } }, "main_panel": { "file": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", "type": "stack_panel", "children": [ "text_panel_1", "art_panel", "padding", "text_panel_2" ] }, "main_panel/text_panel_1": { "file": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", "type": "panel", "children": [ "text" ] }, "main_panel/text_panel_1/text": { "file": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", "type": "label" }, "main_panel/art_panel": { "file": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", "type": "panel", "children": [ "art" ] }, "main_panel/art_panel/art": { "file": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", "type": "image" }, "main_panel/padding": { "file": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", "type": "panel" }, "main_panel/text_panel_2": { "file": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", "type": "panel", "children": [ "text" ] }, "main_panel/text_panel_2/text": { "file": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", "type": "label" }, "back_button": { "file": "ui/csb_sections/csb_purchase_amazondevicewarning_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } } }, "csb_purchase_warning": { "csb_purchase_warning_screen": { "file": "ui/csb_sections/csb_purchase_warning_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "purchase_warning_screen_content": { "file": "ui/csb_sections/csb_purchase_warning_screen.json", "type": "panel", "children": [ "main_panel" ] }, "purchase_warning_screen_content/main_panel": { "file": "ui/csb_sections/csb_purchase_warning_screen.json", "type": "panel", "extend": { "name": "main_panel_one_button", "namespace": "common_dialogs" } }, "warning_modal_main_panel": { "file": "ui/csb_sections/csb_purchase_warning_screen.json", "type": "stack_panel", "children": [ "text_panel_1", "padding_1", "art_panel", "padding_2", "text_panel_2" ] }, "warning_modal_main_panel/text_panel_1": { "file": "ui/csb_sections/csb_purchase_warning_screen.json", "type": "panel", "children": [ "text" ] }, "warning_modal_main_panel/text_panel_1/text": { "file": "ui/csb_sections/csb_purchase_warning_screen.json", "type": "label" }, "warning_modal_main_panel/padding_1": { "file": "ui/csb_sections/csb_purchase_warning_screen.json", "type": "panel" }, "warning_modal_main_panel/art_panel": { "file": "ui/csb_sections/csb_purchase_warning_screen.json", "type": "panel", "children": [ "art" ] }, "warning_modal_main_panel/art_panel/art": { "file": "ui/csb_sections/csb_purchase_warning_screen.json", "type": "image" }, "warning_modal_main_panel/padding_2": { "file": "ui/csb_sections/csb_purchase_warning_screen.json", "type": "panel" }, "warning_modal_main_panel/text_panel_2": { "file": "ui/csb_sections/csb_purchase_warning_screen.json", "type": "panel", "children": [ "text" ] }, "warning_modal_main_panel/text_panel_2/text": { "file": "ui/csb_sections/csb_purchase_warning_screen.json", "type": "label" }, "warning_modal_back_button": { "file": "ui/csb_sections/csb_purchase_warning_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } } }, "csb_subscription_panel": { "csb_container": { "file": "ui/csb_sections/csb_subscription_panel.json", "type": "panel", "children": [ "fill", "border", "panel_contents" ] }, "csb_container/fill": { "file": "ui/csb_sections/csb_subscription_panel.json", "type": "image" }, "csb_container/border": { "file": "ui/csb_sections/csb_subscription_panel.json", "type": "image" }, "csb_container/panel_contents": { "file": "ui/csb_sections/csb_subscription_panel.json", "type": "stack_panel", "children": [ "content_container", "button_panel_spacer", "csb_buttons" ] }, "csb_container/panel_contents/content_container": { "file": "ui/csb_sections/csb_subscription_panel.json", "type": "stack_panel", "children": [ "side_image_stack_left", "padding_02", "side_stack_right" ] }, "csb_container/panel_contents/content_container/side_image_stack_left": { "file": "ui/csb_sections/csb_subscription_panel.json", "type": "panel", "children": [ "csb_image" ] }, "csb_container/panel_contents/content_container/side_image_stack_left/csb_image": { "file": "ui/csb_sections/csb_subscription_panel.json", "type": "image" }, "csb_container/panel_contents/content_container/padding_02": { "file": "ui/csb_sections/csb_subscription_panel.json", "type": "panel" }, "csb_container/panel_contents/content_container/side_stack_right": { "file": "ui/csb_sections/csb_subscription_panel.json", "type": "stack_panel", "children": [ "interior_content_stack" ] }, "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack": { "file": "ui/csb_sections/csb_subscription_panel.json", "type": "stack_panel", "children": [ "panel_label", "interior_top_padding_01", "ln_01_container", "ln_02_container", "ln_03_container", "interior_top_padding02" ] }, "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/panel_label": { "file": "ui/csb_sections/csb_subscription_panel.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/interior_top_padding_01": { "file": "ui/csb_sections/csb_subscription_panel.json", "type": "panel" }, "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_01_container": { "file": "ui/csb_sections/csb_subscription_panel.json", "type": "stack_panel", "extend": { "name": "csb_marketplace_benefit", "namespace": "csb_subscription_panel" } }, "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_02_container": { "file": "ui/csb_sections/csb_subscription_panel.json", "type": "stack_panel", "extend": { "name": "csb_marketplace_benefit", "namespace": "csb_subscription_panel" } }, "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/ln_03_container": { "file": "ui/csb_sections/csb_subscription_panel.json", "type": "stack_panel", "extend": { "name": "csb_marketplace_benefit", "namespace": "csb_subscription_panel" } }, "csb_container/panel_contents/content_container/side_stack_right/interior_content_stack/interior_top_padding02": { "file": "ui/csb_sections/csb_subscription_panel.json", "type": "panel" }, "csb_container/panel_contents/button_panel_spacer": { "file": "ui/csb_sections/csb_subscription_panel.json", "type": "panel" }, "csb_container/panel_contents/csb_buttons": { "file": "ui/csb_sections/csb_subscription_panel.json", "type": "stack_panel", "children": [ "button_panel_padding", "padding_01", "csb_info_button" ] }, "csb_container/panel_contents/csb_buttons/button_panel_padding": { "file": "ui/csb_sections/csb_subscription_panel.json", "type": "panel" }, "csb_container/panel_contents/csb_buttons/padding_01": { "file": "ui/csb_sections/csb_subscription_panel.json", "type": "panel" }, "csb_container/panel_contents/csb_buttons/csb_info_button": { "file": "ui/csb_sections/csb_subscription_panel.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "csb_marketplace_benefit": { "file": "ui/csb_sections/csb_subscription_panel.json", "type": "stack_panel", "children": [ "bullet_holder_01", "panel_details_ln1" ] }, "csb_marketplace_benefit/bullet_holder_01": { "file": "ui/csb_sections/csb_subscription_panel.json", "type": "stack_panel", "children": [ "bullet_spacer", "bullet_01" ] }, "csb_marketplace_benefit/bullet_holder_01/bullet_spacer": { "file": "ui/csb_sections/csb_subscription_panel.json", "type": "panel" }, "csb_marketplace_benefit/bullet_holder_01/bullet_01": { "file": "ui/csb_sections/csb_subscription_panel.json", "type": "label" }, "csb_marketplace_benefit/panel_details_ln1": { "file": "ui/csb_sections/csb_subscription_panel.json", "type": "label" }, "csb_buy_container": { "file": "ui/csb_sections/csb_subscription_panel.json", "type": "panel", "children": [ "csb_buy_button" ] }, "csb_buy_container/csb_buy_button": { "file": "ui/csb_sections/csb_subscription_panel.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "csb_buy_button_text": { "file": "ui/csb_sections/csb_subscription_panel.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "csb_cancel_button": { "file": "ui/csb_sections/csb_subscription_panel.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } } }, "csb_upsell": { "csb_upsell_screen": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "csb_upsell_compare_dialog": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "panel", "children": [ "csb_upsell_compare_main_screen" ] }, "csb_upsell_compare_dialog/csb_upsell_compare_main_screen": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "panel", "extend": { "name": "main_panel_no_buttons", "namespace": "common_dialogs" } }, "csb_upsell_popup_content": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "panel", "children": [ "two_side_panels" ] }, "csb_upsell_popup_content/two_side_panels": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "stack_panel", "children": [ "border_panel_left", "middle_spacer", "border_panel_right" ] }, "csb_upsell_popup_content/two_side_panels/border_panel_left": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "panel", "children": [ "border", "background_panel", "left_side_panel", "button_centering" ] }, "csb_upsell_popup_content/two_side_panels/border_panel_left/border": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "image" }, "csb_upsell_popup_content/two_side_panels/border_panel_left/background_panel": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "image" }, "csb_upsell_popup_content/two_side_panels/border_panel_left/left_side_panel": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "stack_panel", "extend": { "name": "csb_upsell_left_side_panel", "namespace": "csb_upsell" } }, "csb_upsell_popup_content/two_side_panels/border_panel_left/button_centering": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "panel", "children": [ "learn_more_left" ] }, "csb_upsell_popup_content/two_side_panels/border_panel_left/button_centering/learn_more_left": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "button", "extend": { "name": "csb_gold_button", "namespace": "common_csb" } }, "csb_upsell_popup_content/two_side_panels/middle_spacer": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "panel" }, "csb_upsell_popup_content/two_side_panels/border_panel_right": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "panel", "children": [ "border", "background_panel", "right_side_panel", "button_centering" ] }, "csb_upsell_popup_content/two_side_panels/border_panel_right/border": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "image" }, "csb_upsell_popup_content/two_side_panels/border_panel_right/background_panel": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "image" }, "csb_upsell_popup_content/two_side_panels/border_panel_right/right_side_panel": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "stack_panel", "extend": { "name": "csb_upsell_right_side_panel", "namespace": "csb_upsell" } }, "csb_upsell_popup_content/two_side_panels/border_panel_right/button_centering": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "panel", "children": [ "learn_more_right" ] }, "csb_upsell_popup_content/two_side_panels/border_panel_right/button_centering/learn_more_right": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "button", "extend": { "name": "dark_content_button", "namespace": "common_buttons" } }, "csb_upsell_left_side_panel": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "stack_panel", "children": [ "upper_half", "middle_spacer", "bottom_half" ] }, "csb_upsell_left_side_panel/upper_half": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "stack_panel", "children": [ "header_panel" ] }, "csb_upsell_left_side_panel/upper_half/header_panel": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "stack_panel", "children": [ "blank_space", "top_header", "price_amount" ] }, "csb_upsell_left_side_panel/upper_half/header_panel/blank_space": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "panel" }, "csb_upsell_left_side_panel/upper_half/header_panel/top_header": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "stack_panel", "extend": { "name": "csb_header_two_lines", "namespace": "common_csb" } }, "csb_upsell_left_side_panel/upper_half/header_panel/price_amount": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "panel", "extend": { "name": "csb_price", "namespace": "csb_upsell" } }, "csb_upsell_left_side_panel/middle_spacer": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "panel" }, "csb_upsell_left_side_panel/bottom_half": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "stack_panel", "children": [ "padding_b", "bullet_one", "padding_0", "bullet_two", "padding_1", "bullet_three" ] }, "csb_upsell_left_side_panel/bottom_half/padding_b": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "panel", "extend": { "name": "csb_big_padding", "namespace": "csb_upsell" } }, "csb_upsell_left_side_panel/bottom_half/bullet_one": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "stack_panel", "extend": { "name": "csb_bullet_point", "namespace": "csb_upsell" } }, "csb_upsell_left_side_panel/bottom_half/padding_0": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "panel", "extend": { "name": "csb_bullet_padding", "namespace": "csb_upsell" } }, "csb_upsell_left_side_panel/bottom_half/bullet_two": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "stack_panel", "extend": { "name": "csb_bullet_point", "namespace": "csb_upsell" } }, "csb_upsell_left_side_panel/bottom_half/padding_1": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "panel", "extend": { "name": "csb_bullet_padding", "namespace": "csb_upsell" } }, "csb_upsell_left_side_panel/bottom_half/bullet_three": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "stack_panel", "extend": { "name": "csb_bullet_point", "namespace": "csb_upsell" } }, "csb_upsell_right_side_panel": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "stack_panel", "children": [ "upper_half", "middle_spacer", "bottom_half" ] }, "csb_upsell_right_side_panel/upper_half": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "stack_panel", "children": [ "marketing_banner", "header_panel" ] }, "csb_upsell_right_side_panel/upper_half/marketing_banner": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "panel", "children": [ "background_color", "marketing_banner_label" ] }, "csb_upsell_right_side_panel/upper_half/marketing_banner/background_color": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "image" }, "csb_upsell_right_side_panel/upper_half/marketing_banner/marketing_banner_label": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "label" }, "csb_upsell_right_side_panel/upper_half/header_panel": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "stack_panel", "children": [ "top_header", "price_amount" ] }, "csb_upsell_right_side_panel/upper_half/header_panel/top_header": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "label" }, "csb_upsell_right_side_panel/upper_half/header_panel/price_amount": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "panel", "extend": { "name": "csb_price", "namespace": "csb_upsell" } }, "csb_upsell_right_side_panel/middle_spacer": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "panel" }, "csb_upsell_right_side_panel/bottom_half": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "stack_panel", "children": [ "padding_b", "bullet_one", "padding_1", "bullet_two", "padding_0", "bullet_three" ] }, "csb_upsell_right_side_panel/bottom_half/padding_b": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "panel", "extend": { "name": "csb_big_padding", "namespace": "csb_upsell" } }, "csb_upsell_right_side_panel/bottom_half/bullet_one": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "stack_panel", "extend": { "name": "csb_bullet_point", "namespace": "csb_upsell" } }, "csb_upsell_right_side_panel/bottom_half/padding_1": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "panel", "extend": { "name": "csb_bullet_padding", "namespace": "csb_upsell" } }, "csb_upsell_right_side_panel/bottom_half/bullet_two": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "stack_panel", "extend": { "name": "csb_bullet_point", "namespace": "csb_upsell" } }, "csb_upsell_right_side_panel/bottom_half/padding_0": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "panel", "extend": { "name": "csb_bullet_padding", "namespace": "csb_upsell" } }, "csb_upsell_right_side_panel/bottom_half/bullet_three": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "stack_panel", "extend": { "name": "csb_bullet_split_point", "namespace": "csb_upsell" } }, "csb_big_padding": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "panel" }, "csb_bullet_padding": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "panel", "children": [ "desktop", "pocket" ] }, "csb_bullet_padding/desktop": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "panel", "extend": { "name": "csb_bullet_desktop_padding", "namespace": "csb_upsell" } }, "csb_bullet_padding/pocket": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "panel", "extend": { "name": "csb_bullet_pocket_padding", "namespace": "csb_upsell" } }, "csb_bullet_desktop_padding": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "panel" }, "csb_bullet_pocket_padding": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "panel" }, "csb_bullet": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "stack_panel", "children": [ "padding_icon_left", "padding_icon_vertical", "padding_icon_right" ] }, "csb_bullet/padding_icon_left": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "panel" }, "csb_bullet/padding_icon_vertical": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "stack_panel", "children": [ "padding_vertical", "label_icon" ] }, "csb_bullet/padding_icon_vertical/padding_vertical": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "panel" }, "csb_bullet/padding_icon_vertical/label_icon": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "image" }, "csb_bullet/padding_icon_right": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "panel" }, "csb_bullet_point": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "stack_panel", "children": [ "bullet_icon", "label_text" ] }, "csb_bullet_point/bullet_icon": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "stack_panel", "extend": { "name": "csb_bullet", "namespace": "csb_upsell" } }, "csb_bullet_point/label_text": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "label" }, "csb_bullet_split_point": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "stack_panel", "children": [ "bullet_icon", "label_text", "space", "csb_name" ] }, "csb_bullet_split_point/bullet_icon": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "stack_panel", "extend": { "name": "csb_bullet", "namespace": "csb_upsell" } }, "csb_bullet_split_point/label_text": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "label" }, "csb_bullet_split_point/space": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "panel", "children": [ "label_text_csb" ] }, "csb_bullet_split_point/space/label_text_csb": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "label" }, "csb_bullet_split_point/csb_name": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "panel", "children": [ "csb_name_string" ] }, "csb_bullet_split_point/csb_name/csb_name_string": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "stack_panel", "extend": { "name": "csb_header", "namespace": "common_csb" } }, "csb_price": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "panel", "children": [ "price_details" ] }, "csb_price/price_details": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "stack_panel", "extend": { "name": "csb_price_details", "namespace": "csb_upsell" } }, "csb_price_details": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "stack_panel", "children": [ "price_panel_1", "price_panel_first_period" ] }, "csb_price_details/price_panel_1": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "panel", "children": [ "amount" ] }, "csb_price_details/price_panel_1/amount": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "label" }, "csb_price_details/price_panel_first_period": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "panel", "children": [ "second_line" ] }, "csb_price_details/price_panel_first_period/second_line": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "label" }, "csb_learn_more": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "panel", "children": [ "learn_more" ] }, "csb_learn_more/learn_more": { "file": "ui/csb_sections/csb_upsell_dialog.json", "type": "label" } }, "csb_packs": { "view_all_packs_screen": { "file": "ui/csb_sections/csb_view_packs_screen.json", "type": "screen", "extend": { "name": "store_base_screen", "namespace": "common_store" } }, "view_packs_screen_content": { "file": "ui/csb_sections/csb_view_packs_screen.json", "type": "panel", "children": [ "main_panel" ] }, "view_packs_screen_content/main_panel": { "file": "ui/csb_sections/csb_view_packs_screen.json", "type": "stack_panel", "extend": { "name": "store_header_with_coins", "namespace": "common_store" } }, "csb_view_packs_screen_main_panel": { "file": "ui/csb_sections/csb_view_packs_screen.json", "type": "input_panel", "extend": { "name": "sidebar_view", "namespace": "sidebar_navigation" } }, "main_panel": { "file": "ui/csb_sections/csb_view_packs_screen.json", "type": "input_panel", "children": [ "offers", "progress_loading" ] }, "main_panel/offers": { "file": "ui/csb_sections/csb_view_packs_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "main_panel/progress_loading": { "file": "ui/csb_sections/csb_view_packs_screen.json", "type": "panel", "extend": { "name": "progress_loading", "namespace": "common_store" } }, "scrolling_content_stack": { "file": "ui/csb_sections/csb_view_packs_screen.json", "type": "stack_panel", "children": [ "padding_0", "store_factory" ] }, "scrolling_content_stack/padding_0": { "file": "ui/csb_sections/csb_view_packs_screen.json", "type": "panel" }, "scrolling_content_stack/store_factory": { "file": "ui/csb_sections/csb_view_packs_screen.json", "type": "stack_panel", "extend": { "name": "store_section_factory", "namespace": "common_store" } } }, "csb_welcome": { "csb_welcome_screen": { "file": "ui/csb_sections/csb_welcome_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "welcome_screen_content": { "file": "ui/csb_sections/csb_welcome_screen.json", "type": "panel", "children": [ "main_panel" ] }, "welcome_screen_content/main_panel": { "file": "ui/csb_sections/csb_welcome_screen.json", "type": "panel", "extend": { "name": "main_panel_one_button", "namespace": "common_dialogs" } }, "welcome_modal_main_panel": { "file": "ui/csb_sections/csb_welcome_screen.json", "type": "stack_panel", "children": [ "art_panel", "padding", "text_panel" ] }, "welcome_modal_main_panel/art_panel": { "file": "ui/csb_sections/csb_welcome_screen.json", "type": "panel", "children": [ "art" ] }, "welcome_modal_main_panel/art_panel/art": { "file": "ui/csb_sections/csb_welcome_screen.json", "type": "image" }, "welcome_modal_main_panel/padding": { "file": "ui/csb_sections/csb_welcome_screen.json", "type": "panel" }, "welcome_modal_main_panel/text_panel": { "file": "ui/csb_sections/csb_welcome_screen.json", "type": "panel", "children": [ "text" ] }, "welcome_modal_main_panel/text_panel/text": { "file": "ui/csb_sections/csb_welcome_screen.json", "type": "label" }, "welcome_modal_continue_button": { "file": "ui/csb_sections/csb_welcome_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } } }, "csb_faq": { "faq_bottom_button": { "file": "ui/csb_sections/faq_section.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "faq_image_section": { "file": "ui/csb_sections/faq_section.json", "type": "panel", "children": [ "faq_image" ] }, "faq_image_section/faq_image": { "file": "ui/csb_sections/faq_section.json", "type": "image" }, "faq_text_section_body": { "file": "ui/csb_sections/faq_section.json", "type": "stack_panel" }, "faq_text_question": { "file": "ui/csb_sections/faq_section.json", "type": "label" }, "faq_text_section": { "file": "ui/csb_sections/faq_section.json", "type": "stack_panel", "extend": { "name": "faq_text_section_body", "namespace": "csb_faq" }, "children": [ "faq_text_question", "faq_text_answer" ] }, "faq_text_section/faq_text_question": { "file": "ui/csb_sections/faq_section.json", "type": "label", "extend": { "name": "faq_text_question", "namespace": "csb_faq" } }, "faq_text_section/faq_text_answer": { "file": "ui/csb_sections/faq_section.json", "type": "label" }, "faq_price_bound_text_section": { "file": "ui/csb_sections/faq_section.json", "type": "stack_panel", "extend": { "name": "faq_text_section_body", "namespace": "csb_faq" }, "children": [ "faq_text_question", "faq_text_answer" ] }, "faq_price_bound_text_section/faq_text_question": { "file": "ui/csb_sections/faq_section.json", "type": "label", "extend": { "name": "faq_text_question", "namespace": "csb_faq" } }, "faq_price_bound_text_section/faq_text_answer": { "file": "ui/csb_sections/faq_section.json", "type": "label" }, "faq_question_body": { "file": "ui/csb_sections/faq_section.json", "type": "stack_panel", "extend": { "name": "faq_question_body_stack", "namespace": "csb_faq" }, "children": [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ] }, "faq_question_body/0": { "file": "ui/csb_sections/faq_section.json", "type": "unknown" }, "faq_question_body_stack": { "file": "ui/csb_sections/faq_section.json", "type": "stack_panel" }, "faq_question_body_horz_padding": { "file": "ui/csb_sections/faq_section.json", "type": "panel" }, "image_left_faq_question_body": { "file": "ui/csb_sections/faq_section.json", "type": "button", "extend": { "name": "text_body_focus_border_for_controller_button", "namespace": "common_buttons" } }, "image_right_faq_question_body": { "file": "ui/csb_sections/faq_section.json", "type": "button", "extend": { "name": "text_body_focus_border_for_controller_button", "namespace": "common_buttons" } }, "image_left_faq_price_bound": { "file": "ui/csb_sections/faq_section.json", "type": "button", "extend": { "name": "text_body_focus_border_for_controller_button", "namespace": "common_buttons" } }, "image_right_faq_price_bound": { "file": "ui/csb_sections/faq_section.json", "type": "button", "extend": { "name": "text_body_focus_border_for_controller_button", "namespace": "common_buttons" } }, "faq_section_header_space": { "file": "ui/csb_sections/faq_section.json", "type": "panel" }, "faq_section_divider": { "file": "ui/csb_sections/faq_section.json", "type": "stack_panel", "extend": { "name": "section_divider", "namespace": "common" } }, "faq_content_section": { "file": "ui/csb_sections/faq_section.json", "type": "stack_panel", "extend": { "name": "section_base", "namespace": "csb" }, "children": [ "faq_section_vertical_padding_1", "faq_header", "faq_section_vertical_padding_2", "faq_question_1", "faq_question_1_divider", "faq_question_2", "faq_question_2_divider", "faq_question_3", "faq_question_3_divider", "faq_question_4", "faq_question_4_divider", "faq_question_5", "faq_question_5_divider", "faq_question_6", "faq_question_6_divider", "faq_question_7", "faq_question_7_divider", "faq_question_8", "faq_question_8_divider", "faq_question_9", "faq_question_9_divider", "faq_question_10", "faq_question_10_divider", "faq_button", "faq_bottom_padding" ] }, "faq_content_section/faq_section_vertical_padding_1": { "file": "ui/csb_sections/faq_section.json", "type": "panel", "extend": { "name": "vertical_padding_4px", "namespace": "csb" } }, "faq_content_section/faq_header": { "file": "ui/csb_sections/faq_section.json", "type": "label" }, "faq_content_section/faq_section_vertical_padding_2": { "file": "ui/csb_sections/faq_section.json", "type": "panel", "extend": { "name": "faq_section_header_space", "namespace": "csb_faq" } }, "faq_content_section/faq_question_1": { "file": "ui/csb_sections/faq_section.json", "type": "button", "extend": { "name": "image_right_faq_price_bound", "namespace": "csb_faq" } }, "faq_content_section/faq_question_1_divider": { "file": "ui/csb_sections/faq_section.json", "type": "stack_panel", "extend": { "name": "faq_section_divider", "namespace": "csb_faq" } }, "faq_content_section/faq_question_2": { "file": "ui/csb_sections/faq_section.json", "type": "button", "extend": { "name": "image_left_faq_question_body", "namespace": "csb_faq" } }, "faq_content_section/faq_question_2_divider": { "file": "ui/csb_sections/faq_section.json", "type": "stack_panel", "extend": { "name": "faq_section_divider", "namespace": "csb_faq" } }, "faq_content_section/faq_question_3": { "file": "ui/csb_sections/faq_section.json", "type": "button", "extend": { "name": "image_right_faq_question_body", "namespace": "csb_faq" } }, "faq_content_section/faq_question_3_divider": { "file": "ui/csb_sections/faq_section.json", "type": "stack_panel", "extend": { "name": "faq_section_divider", "namespace": "csb_faq" } }, "faq_content_section/faq_question_4": { "file": "ui/csb_sections/faq_section.json", "type": "button", "extend": { "name": "image_left_faq_question_body", "namespace": "csb_faq" } }, "faq_content_section/faq_question_4_divider": { "file": "ui/csb_sections/faq_section.json", "type": "stack_panel", "extend": { "name": "faq_section_divider", "namespace": "csb_faq" } }, "faq_content_section/faq_question_5": { "file": "ui/csb_sections/faq_section.json", "type": "button", "extend": { "name": "image_right_faq_question_body", "namespace": "csb_faq" } }, "faq_content_section/faq_question_5_divider": { "file": "ui/csb_sections/faq_section.json", "type": "stack_panel", "extend": { "name": "faq_section_divider", "namespace": "csb_faq" } }, "faq_content_section/faq_question_6": { "file": "ui/csb_sections/faq_section.json", "type": "button", "extend": { "name": "image_left_faq_question_body", "namespace": "csb_faq" } }, "faq_content_section/faq_question_6_divider": { "file": "ui/csb_sections/faq_section.json", "type": "stack_panel", "extend": { "name": "faq_section_divider", "namespace": "csb_faq" } }, "faq_content_section/faq_question_7": { "file": "ui/csb_sections/faq_section.json", "type": "button", "extend": { "name": "image_right_faq_question_body", "namespace": "csb_faq" } }, "faq_content_section/faq_question_7_divider": { "file": "ui/csb_sections/faq_section.json", "type": "stack_panel", "extend": { "name": "faq_section_divider", "namespace": "csb_faq" } }, "faq_content_section/faq_question_8": { "file": "ui/csb_sections/faq_section.json", "type": "button", "extend": { "name": "image_left_faq_question_body", "namespace": "csb_faq" } }, "faq_content_section/faq_question_8_divider": { "file": "ui/csb_sections/faq_section.json", "type": "stack_panel", "extend": { "name": "faq_section_divider", "namespace": "csb_faq" } }, "faq_content_section/faq_question_9": { "file": "ui/csb_sections/faq_section.json", "type": "button", "extend": { "name": "image_right_faq_question_body", "namespace": "csb_faq" } }, "faq_content_section/faq_question_9_divider": { "file": "ui/csb_sections/faq_section.json", "type": "stack_panel", "extend": { "name": "faq_section_divider", "namespace": "csb_faq" } }, "faq_content_section/faq_question_10": { "file": "ui/csb_sections/faq_section.json", "type": "button", "extend": { "name": "image_left_faq_question_body", "namespace": "csb_faq" } }, "faq_content_section/faq_question_10_divider": { "file": "ui/csb_sections/faq_section.json", "type": "stack_panel", "extend": { "name": "faq_section_divider", "namespace": "csb_faq" } }, "faq_content_section/faq_button": { "file": "ui/csb_sections/faq_section.json", "type": "button", "extend": { "name": "faq_bottom_button", "namespace": "csb_faq" } }, "faq_content_section/faq_bottom_padding": { "file": "ui/csb_sections/faq_section.json", "type": "panel", "children": [ "bottom_left_particles" ] }, "faq_content_section/faq_bottom_padding/bottom_left_particles": { "file": "ui/csb_sections/faq_section.json", "type": "image" } }, "csb_landing": { "landing_content_section": { "file": "ui/csb_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "section_base", "namespace": "csb" }, "children": [ "landing_section_vertical_padding", "landing_content" ] }, "landing_content_section/landing_section_vertical_padding": { "file": "ui/csb_sections/landing_section.json", "type": "panel", "extend": { "name": "vertical_padding_4px", "namespace": "csb" } }, "landing_content_section/landing_content": { "file": "ui/csb_sections/landing_section.json", "type": "stack_panel", "children": [ "title_stack", "vertical_small_spacer_0", "vertical_small_spacer_1", "info_stack", "vertical_small_spacer_2" ] }, "landing_content_section/landing_content/title_stack": { "file": "ui/csb_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "title_stack", "namespace": "csb_landing" } }, "landing_content_section/landing_content/vertical_small_spacer_0": { "file": "ui/csb_sections/landing_section.json", "type": "panel", "extend": { "name": "vertical_small_spacer", "namespace": "csb_landing" } }, "landing_content_section/landing_content/vertical_small_spacer_1": { "file": "ui/csb_sections/landing_section.json", "type": "panel", "extend": { "name": "vertical_small_spacer", "namespace": "csb_landing" } }, "landing_content_section/landing_content/info_stack": { "file": "ui/csb_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "info_stack", "namespace": "csb_landing" } }, "landing_content_section/landing_content/vertical_small_spacer_2": { "file": "ui/csb_sections/landing_section.json", "type": "panel", "extend": { "name": "vertical_small_spacer", "namespace": "csb_landing" } }, "horizontal_small_spacer": { "file": "ui/csb_sections/landing_section.json", "type": "panel" }, "vertical_small_spacer": { "file": "ui/csb_sections/landing_section.json", "type": "panel" }, "vertical_large_spacer": { "file": "ui/csb_sections/landing_section.json", "type": "panel" }, "title_stack": { "file": "ui/csb_sections/landing_section.json", "type": "stack_panel", "children": [ "title_image_panel", "title_space", "action_button", "sign_in_button", "vertical_space2", "gradient_panel", "gradient_panel2" ] }, "title_stack/title_image_panel": { "file": "ui/csb_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "title_image_panel", "namespace": "csb_landing" } }, "title_stack/title_space": { "file": "ui/csb_sections/landing_section.json", "type": "panel", "extend": { "name": "title_space", "namespace": "csb_landing" } }, "title_stack/action_button": { "file": "ui/csb_sections/landing_section.json", "type": "panel", "extend": { "name": "buy_button_panel", "namespace": "csb_buy" } }, "title_stack/sign_in_button": { "file": "ui/csb_sections/landing_section.json", "type": "panel", "extend": { "name": "buy_button_panel", "namespace": "csb_buy" } }, "title_stack/vertical_space2": { "file": "ui/csb_sections/landing_section.json", "type": "panel", "extend": { "name": "vertical_small_spacer", "namespace": "csb_landing" } }, "title_stack/gradient_panel": { "file": "ui/csb_sections/landing_section.json", "type": "panel", "children": [ "label_with_gradient", "tts_hover" ] }, "title_stack/gradient_panel/label_with_gradient": { "file": "ui/csb_sections/landing_section.json", "type": "panel", "extend": { "name": "gradient_content_panel", "namespace": "csb" } }, "title_stack/gradient_panel/tts_hover": { "file": "ui/csb_sections/landing_section.json", "type": "button", "extend": { "name": "tts_activate_sibling", "namespace": "common" } }, "title_stack/gradient_panel2": { "file": "ui/csb_sections/landing_section.json", "type": "panel", "children": [ "label_with_gradient2", "tts_hover" ] }, "title_stack/gradient_panel2/label_with_gradient2": { "file": "ui/csb_sections/landing_section.json", "type": "panel", "extend": { "name": "gradient_content_panel", "namespace": "csb" } }, "title_stack/gradient_panel2/tts_hover": { "file": "ui/csb_sections/landing_section.json", "type": "button", "extend": { "name": "tts_activate_sibling", "namespace": "common" } }, "subscription_includes_text": { "file": "ui/csb_sections/landing_section.json", "type": "label" }, "free_trial_text": { "file": "ui/csb_sections/landing_section.json", "type": "label" }, "title_space": { "file": "ui/csb_sections/landing_section.json", "type": "panel" }, "title_image_panel": { "file": "ui/csb_sections/landing_section.json", "type": "stack_panel", "children": [ "vertical_small_spacer_1", "title_image_container", "vertical_small_spacer_2" ] }, "title_image_panel/vertical_small_spacer_1": { "file": "ui/csb_sections/landing_section.json", "type": "panel", "extend": { "name": "vertical_small_spacer", "namespace": "csb_landing" } }, "title_image_panel/title_image_container": { "file": "ui/csb_sections/landing_section.json", "type": "panel", "children": [ "title_image" ] }, "title_image_panel/title_image_container/title_image": { "file": "ui/csb_sections/landing_section.json", "type": "image" }, "title_image_panel/vertical_small_spacer_2": { "file": "ui/csb_sections/landing_section.json", "type": "panel", "extend": { "name": "vertical_small_spacer", "namespace": "csb_landing" } }, "info_stack": { "file": "ui/csb_sections/landing_section.json", "type": "stack_panel", "children": [ "info_section_image", "info_description_stack_retail" ] }, "info_stack/info_section_image": { "file": "ui/csb_sections/landing_section.json", "type": "image", "extend": { "name": "info_section_image_with_border", "namespace": "csb_landing" } }, "info_stack/info_description_stack_retail": { "file": "ui/csb_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "info_description_stack_retail", "namespace": "csb_landing" } }, "info_description_stack_retail": { "file": "ui/csb_sections/landing_section.json", "type": "stack_panel", "children": [ "info_section_stack_1" ] }, "info_description_stack_retail/info_section_stack_1": { "file": "ui/csb_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "info_section_stack", "namespace": "csb_landing" }, "children": [ "horizontal_small_spacer", "info_section_text_1" ] }, "info_description_stack_retail/info_section_stack_1/horizontal_small_spacer": { "file": "ui/csb_sections/landing_section.json", "type": "panel", "extend": { "name": "horizontal_small_spacer", "namespace": "csb_landing" } }, "info_description_stack_retail/info_section_stack_1/info_section_text_1": { "file": "ui/csb_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "info_section_text_1", "namespace": "csb_landing" } }, "info_section_stack": { "file": "ui/csb_sections/landing_section.json", "type": "stack_panel" }, "info_section_image_with_border": { "file": "ui/csb_sections/landing_section.json", "type": "image" }, "info_section_text_1": { "file": "ui/csb_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "info_section_text", "namespace": "csb_landing" }, "children": [ "info_section_text", "vertical_small_spacer_0", "info_text_bullet_1", "vertical_small_spacer_1", "info_text_bullet_2", "vertical_small_spacer_2", "info_text_bullet_3", "vertical_small_spacer_3", "info_text_bullet_4", "vertical_small_spacer_4", "info_text_bullet_5", "vertical_small_spacer_5", "info_text_bullet_6", "vertical_large_spacer_6" ] }, "info_section_text_1/info_section_text": { "file": "ui/csb_sections/landing_section.json", "type": "panel", "extend": { "name": "info_text_unbulletted", "namespace": "csb_landing" } }, "info_section_text_1/vertical_small_spacer_0": { "file": "ui/csb_sections/landing_section.json", "type": "panel", "extend": { "name": "vertical_small_spacer", "namespace": "csb_landing" } }, "info_section_text_1/info_text_bullet_1": { "file": "ui/csb_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "info_text_bullet", "namespace": "csb_landing" } }, "info_section_text_1/vertical_small_spacer_1": { "file": "ui/csb_sections/landing_section.json", "type": "panel", "extend": { "name": "vertical_small_spacer", "namespace": "csb_landing" } }, "info_section_text_1/info_text_bullet_2": { "file": "ui/csb_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "info_text_bullet", "namespace": "csb_landing" } }, "info_section_text_1/vertical_small_spacer_2": { "file": "ui/csb_sections/landing_section.json", "type": "panel", "extend": { "name": "vertical_small_spacer", "namespace": "csb_landing" } }, "info_section_text_1/info_text_bullet_3": { "file": "ui/csb_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "info_text_bullet", "namespace": "csb_landing" } }, "info_section_text_1/vertical_small_spacer_3": { "file": "ui/csb_sections/landing_section.json", "type": "panel", "extend": { "name": "vertical_small_spacer", "namespace": "csb_landing" } }, "info_section_text_1/info_text_bullet_4": { "file": "ui/csb_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "info_text_bullet", "namespace": "csb_landing" } }, "info_section_text_1/vertical_small_spacer_4": { "file": "ui/csb_sections/landing_section.json", "type": "panel", "extend": { "name": "vertical_small_spacer", "namespace": "csb_landing" } }, "info_section_text_1/info_text_bullet_5": { "file": "ui/csb_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "info_text_bullet", "namespace": "csb_landing" } }, "info_section_text_1/vertical_small_spacer_5": { "file": "ui/csb_sections/landing_section.json", "type": "panel", "extend": { "name": "vertical_small_spacer", "namespace": "csb_landing" } }, "info_section_text_1/info_text_bullet_6": { "file": "ui/csb_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "info_text_bullet", "namespace": "csb_landing" } }, "info_section_text_1/vertical_large_spacer_6": { "file": "ui/csb_sections/landing_section.json", "type": "panel", "extend": { "name": "vertical_large_spacer", "namespace": "csb_landing" } }, "info_section_text_2": { "file": "ui/csb_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "info_section_text", "namespace": "csb_landing" }, "children": [ "info_text_bullet_1", "vertical_small_spacer_0", "info_text_bullet_2", "vertical_small_spacer_1", "info_text_bullet_4", "vertical_small_spacer_3", "info_text_bullet_5" ] }, "info_section_text_2/info_text_bullet_1": { "file": "ui/csb_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "info_text_bullet", "namespace": "csb_landing" } }, "info_section_text_2/vertical_small_spacer_0": { "file": "ui/csb_sections/landing_section.json", "type": "panel", "extend": { "name": "vertical_small_spacer", "namespace": "csb_landing" } }, "info_section_text_2/info_text_bullet_2": { "file": "ui/csb_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "info_text_bullet", "namespace": "csb_landing" } }, "info_section_text_2/vertical_small_spacer_1": { "file": "ui/csb_sections/landing_section.json", "type": "panel", "extend": { "name": "vertical_small_spacer", "namespace": "csb_landing" } }, "info_section_text_2/info_text_bullet_4": { "file": "ui/csb_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "info_text_bullet", "namespace": "csb_landing" } }, "info_section_text_2/vertical_small_spacer_3": { "file": "ui/csb_sections/landing_section.json", "type": "panel", "extend": { "name": "vertical_small_spacer", "namespace": "csb_landing" } }, "info_section_text_2/info_text_bullet_5": { "file": "ui/csb_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "info_text_bullet", "namespace": "csb_landing" } }, "info_section_text": { "file": "ui/csb_sections/landing_section.json", "type": "stack_panel" }, "info_text_bullet": { "file": "ui/csb_sections/landing_section.json", "type": "stack_panel", "children": [ "info_text_bullet_bullet", "bullet_spacer", "info_text_bullet_body", "bullet_spacer_end" ] }, "info_text_bullet/info_text_bullet_bullet": { "file": "ui/csb_sections/landing_section.json", "type": "label" }, "info_text_bullet/bullet_spacer": { "file": "ui/csb_sections/landing_section.json", "type": "panel" }, "info_text_bullet/info_text_bullet_body": { "file": "ui/csb_sections/landing_section.json", "type": "panel", "extend": { "name": "info_text_body", "namespace": "csb_landing" } }, "info_text_bullet/bullet_spacer_end": { "file": "ui/csb_sections/landing_section.json", "type": "panel" }, "info_text_unbulletted": { "file": "ui/csb_sections/landing_section.json", "type": "panel", "children": [ "info_text_bullet_body" ] }, "info_text_unbulletted/info_text_bullet_body": { "file": "ui/csb_sections/landing_section.json", "type": "panel", "extend": { "name": "info_text_body", "namespace": "csb_landing" } }, "info_text_body": { "file": "ui/csb_sections/landing_section.json", "type": "panel", "children": [ "text_body", "tts_border" ] }, "info_text_body/text_body": { "file": "ui/csb_sections/landing_section.json", "type": "label" }, "info_text_body/tts_border": { "file": "ui/csb_sections/landing_section.json", "type": "button", "extend": { "name": "tts_activate_sibling", "namespace": "common" } } }, "custom_templates": { "lock_icon": { "file": "ui/custom_templates_screen.json", "type": "image" }, "templates_scroll_content": { "file": "ui/custom_templates_screen.json", "type": "input_panel", "children": [ "scrolling_panel" ] }, "templates_scroll_content/scrolling_panel": { "file": "ui/custom_templates_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "templates_scroll_panel": { "file": "ui/custom_templates_screen.json", "type": "panel", "children": [ "templates_stack_panel" ] }, "templates_scroll_panel/templates_stack_panel": { "file": "ui/custom_templates_screen.json", "type": "stack_panel", "children": [ "templates_item_grid" ] }, "templates_scroll_panel/templates_stack_panel/templates_item_grid": { "file": "ui/custom_templates_screen.json", "type": "grid", "extend": { "name": "templates_item_grid", "namespace": "custom_templates" } }, "templates_item_grid": { "file": "ui/custom_templates_screen.json", "type": "grid" }, "templates_item": { "file": "ui/custom_templates_screen.json", "type": "stack_panel", "children": [ "template_item_button" ] }, "templates_item/template_item_button": { "file": "ui/custom_templates_screen.json", "type": "button", "extend": { "name": "template_item_button", "namespace": "custom_templates" } }, "template_item_button": { "file": "ui/custom_templates_screen.json", "type": "button", "extend": { "name": "dark_content_button", "namespace": "common_buttons" } }, "template_content_panel": { "file": "ui/custom_templates_screen.json", "type": "stack_panel", "children": [ "template_screenshot", "template_text_panel", "lock_panel" ] }, "template_content_panel/template_screenshot": { "file": "ui/custom_templates_screen.json", "type": "image", "extend": { "name": "template_screenshot", "namespace": "custom_templates" } }, "template_content_panel/template_text_panel": { "file": "ui/custom_templates_screen.json", "type": "panel", "extend": { "name": "template_text_panel", "namespace": "custom_templates" } }, "template_content_panel/lock_panel": { "file": "ui/custom_templates_screen.json", "type": "panel", "children": [ "lock_icon" ] }, "template_content_panel/lock_panel/lock_icon": { "file": "ui/custom_templates_screen.json", "type": "image", "extend": { "name": "lock_icon", "namespace": "custom_templates" } }, "template_screenshot": { "file": "ui/custom_templates_screen.json", "type": "image", "children": [ "picture" ] }, "template_screenshot/picture": { "file": "ui/custom_templates_screen.json", "type": "image" }, "template_text_panel": { "file": "ui/custom_templates_screen.json", "type": "panel", "children": [ "text_indent" ] }, "template_text_panel/text_indent": { "file": "ui/custom_templates_screen.json", "type": "panel", "children": [ "top_side", "bottom_side" ] }, "template_text_panel/text_indent/top_side": { "file": "ui/custom_templates_screen.json", "type": "stack_panel", "children": [ "template_name", "download_text_label" ] }, "template_text_panel/text_indent/top_side/template_name": { "file": "ui/custom_templates_screen.json", "type": "label", "extend": { "name": "template_name", "namespace": "custom_templates" } }, "template_text_panel/text_indent/top_side/download_text_label": { "file": "ui/custom_templates_screen.json", "type": "label", "extend": { "name": "template_download_text", "namespace": "custom_templates" } }, "template_text_panel/text_indent/bottom_side": { "file": "ui/custom_templates_screen.json", "type": "stack_panel", "children": [ "template_description", "template_version" ] }, "template_text_panel/text_indent/bottom_side/template_description": { "file": "ui/custom_templates_screen.json", "type": "label", "extend": { "name": "template_description", "namespace": "custom_templates" } }, "template_text_panel/text_indent/bottom_side/template_version": { "file": "ui/custom_templates_screen.json", "type": "label", "extend": { "name": "template_version", "namespace": "custom_templates" } }, "template_name": { "file": "ui/custom_templates_screen.json", "type": "label", "extend": { "name": "template_list_text", "namespace": "custom_templates" } }, "template_download_text": { "file": "ui/custom_templates_screen.json", "type": "label", "extend": { "name": "template_list_text", "namespace": "custom_templates" } }, "template_list_text": { "file": "ui/custom_templates_screen.json", "type": "label" }, "template_description": { "file": "ui/custom_templates_screen.json", "type": "label", "extend": { "name": "template_list_text", "namespace": "custom_templates" } }, "template_version": { "file": "ui/custom_templates_screen.json", "type": "label", "extend": { "name": "template_list_text", "namespace": "custom_templates" } }, "main_panel": { "file": "ui/custom_templates_screen.json", "type": "panel", "children": [ "templates_scroll_content" ] }, "main_panel/templates_scroll_content": { "file": "ui/custom_templates_screen.json", "type": "input_panel", "extend": { "name": "templates_scroll_content", "namespace": "custom_templates" } }, "custom_templates_screen": { "file": "ui/custom_templates_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "custom_templates_screen_content": { "file": "ui/custom_templates_screen.json", "type": "panel", "children": [ "dialog" ] }, "custom_templates_screen_content/dialog": { "file": "ui/custom_templates_screen.json", "type": "panel", "extend": { "name": "main_panel_no_buttons", "namespace": "common_dialogs" } }, "background": { "file": "ui/custom_templates_screen.json", "type": "image", "extend": { "name": "screen_background", "namespace": "common" } } }, "world_conversion_complete": { "background": { "file": "ui/world_conversion_complete_screen.json", "type": "image", "extend": { "name": "screen_background", "namespace": "common" } }, "prompt_text": { "file": "ui/world_conversion_complete_screen.json", "type": "panel", "children": [ "message" ] }, "prompt_text/message": { "file": "ui/world_conversion_complete_screen.json", "type": "label" }, "converted_world_preview_name": { "file": "ui/world_conversion_complete_screen.json", "type": "label", "extend": { "name": "world_list_text", "namespace": "play" } }, "converted_world_preview_date": { "file": "ui/world_conversion_complete_screen.json", "type": "label", "extend": { "name": "world_list_text", "namespace": "play" } }, "converted_world_preview_game_mode": { "file": "ui/world_conversion_complete_screen.json", "type": "label", "extend": { "name": "world_list_text", "namespace": "play" } }, "converted_world_preview_filesize": { "file": "ui/world_conversion_complete_screen.json", "type": "label", "extend": { "name": "world_list_text", "namespace": "play" } }, "converted_world_preview_text_panel": { "file": "ui/world_conversion_complete_screen.json", "type": "panel", "children": [ "text_indent" ] }, "converted_world_preview_text_panel/text_indent": { "file": "ui/world_conversion_complete_screen.json", "type": "panel", "children": [ "top_side", "bottom_side" ] }, "converted_world_preview_text_panel/text_indent/top_side": { "file": "ui/world_conversion_complete_screen.json", "type": "stack_panel", "children": [ "converted_world_name", "converted_world_date" ] }, "converted_world_preview_text_panel/text_indent/top_side/converted_world_name": { "file": "ui/world_conversion_complete_screen.json", "type": "label", "extend": { "name": "converted_world_preview_name", "namespace": "world_conversion_complete" } }, "converted_world_preview_text_panel/text_indent/top_side/converted_world_date": { "file": "ui/world_conversion_complete_screen.json", "type": "label", "extend": { "name": "converted_world_preview_date", "namespace": "world_conversion_complete" } }, "converted_world_preview_text_panel/text_indent/bottom_side": { "file": "ui/world_conversion_complete_screen.json", "type": "stack_panel", "children": [ "converted_world_game_mode", "converted_world_filesize" ] }, "converted_world_preview_text_panel/text_indent/bottom_side/converted_world_game_mode": { "file": "ui/world_conversion_complete_screen.json", "type": "label", "extend": { "name": "converted_world_preview_game_mode", "namespace": "world_conversion_complete" } }, "converted_world_preview_text_panel/text_indent/bottom_side/converted_world_filesize": { "file": "ui/world_conversion_complete_screen.json", "type": "label", "extend": { "name": "converted_world_preview_filesize", "namespace": "world_conversion_complete" } }, "converted_world_preview_panel": { "file": "ui/world_conversion_complete_screen.json", "type": "image", "children": [ "world_preview_content" ] }, "converted_world_preview_panel/world_preview_content": { "file": "ui/world_conversion_complete_screen.json", "type": "stack_panel", "children": [ "converted_world_screenshot", "converted_world_text_panel" ] }, "converted_world_preview_panel/world_preview_content/converted_world_screenshot": { "file": "ui/world_conversion_complete_screen.json", "type": "image", "extend": { "name": "world_screenshot_base", "namespace": "play" }, "children": [ "image_content" ] }, "converted_world_preview_panel/world_preview_content/converted_world_screenshot/image_content": { "file": "ui/world_conversion_complete_screen.json", "type": "panel", "children": [ "picture" ] }, "converted_world_preview_panel/world_preview_content/converted_world_screenshot/image_content/picture": { "file": "ui/world_conversion_complete_screen.json", "type": "image" }, "converted_world_preview_panel/world_preview_content/converted_world_text_panel": { "file": "ui/world_conversion_complete_screen.json", "type": "panel", "extend": { "name": "converted_world_preview_text_panel", "namespace": "world_conversion_complete" } }, "main_panel": { "file": "ui/world_conversion_complete_screen.json", "type": "stack_panel", "children": [ "padding_0", "prompt_1", "world_entry_container", "buttons_panel_sizer" ] }, "main_panel/padding_0": { "file": "ui/world_conversion_complete_screen.json", "type": "panel" }, "main_panel/prompt_1": { "file": "ui/world_conversion_complete_screen.json", "type": "panel", "extend": { "name": "prompt_text", "namespace": "world_conversion_complete" } }, "main_panel/world_entry_container": { "file": "ui/world_conversion_complete_screen.json", "type": "panel", "children": [ "world_entry_sizer" ] }, "main_panel/world_entry_container/world_entry_sizer": { "file": "ui/world_conversion_complete_screen.json", "type": "panel", "children": [ "world_entry" ] }, "main_panel/world_entry_container/world_entry_sizer/world_entry": { "file": "ui/world_conversion_complete_screen.json", "type": "image", "extend": { "name": "converted_world_preview_panel", "namespace": "world_conversion_complete" } }, "main_panel/buttons_panel_sizer": { "file": "ui/world_conversion_complete_screen.json", "type": "panel", "children": [ "buttons_panel" ] }, "main_panel/buttons_panel_sizer/buttons_panel": { "file": "ui/world_conversion_complete_screen.json", "type": "stack_panel", "children": [ "load_game_button", "padding", "return_button" ] }, "main_panel/buttons_panel_sizer/buttons_panel/load_game_button": { "file": "ui/world_conversion_complete_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "main_panel/buttons_panel_sizer/buttons_panel/padding": { "file": "ui/world_conversion_complete_screen.json", "type": "panel" }, "main_panel/buttons_panel_sizer/buttons_panel/return_button": { "file": "ui/world_conversion_complete_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "world_conversion_complete_screen_content": { "file": "ui/world_conversion_complete_screen.json", "type": "panel", "children": [ "dialog" ] }, "world_conversion_complete_screen_content/dialog": { "file": "ui/world_conversion_complete_screen.json", "type": "panel", "extend": { "name": "main_panel_no_buttons", "namespace": "common_dialogs" } }, "world_conversion_complete_screen": { "file": "ui/world_conversion_complete_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } } }, "day_one_experience_intro": { "padding_horizontal": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel" }, "padding_vertical": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel" }, "label_panel": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "children": [ "label_text" ] }, "label_panel/label_text": { "file": "ui/day_one_experience_intro_screen.json", "type": "label" }, "text_panel": { "file": "ui/day_one_experience_intro_screen.json", "type": "stack_panel", "children": [ "padding_00", "tab_content_description_panel", "padding_01" ] }, "text_panel/padding_00": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "day_one_experience_intro" } }, "text_panel/tab_content_description_panel": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "text_panel/padding_01": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "day_one_experience_intro" } }, "dialog_image": { "file": "ui/day_one_experience_intro_screen.json", "type": "image" }, "image_panel": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "children": [ "dialog_image_with_border", "focus_image" ] }, "image_panel/dialog_image_with_border": { "file": "ui/day_one_experience_intro_screen.json", "type": "image", "extend": { "name": "dialog_image", "namespace": "day_one_experience_intro" } }, "image_panel/focus_image": { "file": "ui/day_one_experience_intro_screen.json", "type": "unknown" }, "top_tab": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "tab_top", "namespace": "common_tabs" } }, "common_tab_navigation_panel_layout": { "file": "ui/day_one_experience_intro_screen.json", "type": "stack_panel" }, "tabbed_tab_navigation_panel_layout": { "file": "ui/day_one_experience_intro_screen.json", "type": "stack_panel", "extend": { "name": "common_tab_navigation_panel_layout", "namespace": "day_one_experience_intro" }, "children": [ "nav_padding_01", "gamepad_helper_with_offset_left_bumper", "nav_padding_02", "welcome_navigation_tab", "nav_padding_03", "marketplace_navigation_tab", "nav_padding_04", "cross_platform_navigation_tab", "nav_padding_05", "realms_navigation_tab", "nav_padding_06", "villagers_navigation_tab", "nav_padding_07", "gamepad_helper_with_offset_right_bumper", "nav_padding_08" ] }, "tabbed_tab_navigation_panel_layout/nav_padding_01": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "day_one_experience_intro" } }, "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_left_bumper": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "children": [ "gamepad_helper_left_bumper" ] }, "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_left_bumper/gamepad_helper_left_bumper": { "file": "ui/day_one_experience_intro_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_left_bumper", "namespace": "common" } }, "tabbed_tab_navigation_panel_layout/nav_padding_02": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "day_one_experience_intro" } }, "tabbed_tab_navigation_panel_layout/welcome_navigation_tab": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "top_tab", "namespace": "day_one_experience_intro" } }, "tabbed_tab_navigation_panel_layout/nav_padding_03": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "day_one_experience_intro" } }, "tabbed_tab_navigation_panel_layout/marketplace_navigation_tab": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "top_tab", "namespace": "day_one_experience_intro" } }, "tabbed_tab_navigation_panel_layout/nav_padding_04": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "day_one_experience_intro" } }, "tabbed_tab_navigation_panel_layout/cross_platform_navigation_tab": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "top_tab", "namespace": "day_one_experience_intro" } }, "tabbed_tab_navigation_panel_layout/nav_padding_05": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "day_one_experience_intro" } }, "tabbed_tab_navigation_panel_layout/realms_navigation_tab": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "top_tab", "namespace": "day_one_experience_intro" } }, "tabbed_tab_navigation_panel_layout/nav_padding_06": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "day_one_experience_intro" } }, "tabbed_tab_navigation_panel_layout/villagers_navigation_tab": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "top_tab", "namespace": "day_one_experience_intro" } }, "tabbed_tab_navigation_panel_layout/nav_padding_07": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "day_one_experience_intro" } }, "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_right_bumper": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "children": [ "gamepad_helper_right_bumper" ] }, "tabbed_tab_navigation_panel_layout/gamepad_helper_with_offset_right_bumper/gamepad_helper_right_bumper": { "file": "ui/day_one_experience_intro_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_right_bumper", "namespace": "common" } }, "tabbed_tab_navigation_panel_layout/nav_padding_08": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "day_one_experience_intro" } }, "tab_header_image_panel": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "children": [ "welcome_tab_content", "marketplace_tab_content", "cross_platform_tab_content", "realms_tab_content", "villager_tab_content" ] }, "tab_header_image_panel/welcome_tab_content": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "welcome_tab_header_image_panel", "namespace": "day_one_experience_intro" } }, "tab_header_image_panel/marketplace_tab_content": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "marketplace_tab_header_image_panel", "namespace": "day_one_experience_intro" } }, "tab_header_image_panel/cross_platform_tab_content": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "cross_platform_tab_header_image_panel", "namespace": "day_one_experience_intro" } }, "tab_header_image_panel/realms_tab_content": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "realms_tab_header_image_panel", "namespace": "day_one_experience_intro" } }, "tab_header_image_panel/villager_tab_content": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "villager_tab_header_image_panel", "namespace": "day_one_experience_intro" } }, "tabbed_tab_content_panel_layout": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "children": [ "welcome_tab_content", "marketplace_tab_content", "cross_platform_tab_content", "realms_tab_content", "villager_tab_content" ] }, "tabbed_tab_content_panel_layout/welcome_tab_content": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "welcome_tab_content_panel", "namespace": "day_one_experience_intro" } }, "tabbed_tab_content_panel_layout/marketplace_tab_content": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "marketplace_tab_content_panel", "namespace": "day_one_experience_intro" } }, "tabbed_tab_content_panel_layout/cross_platform_tab_content": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "cross_platform_tab_content_panel", "namespace": "day_one_experience_intro" } }, "tabbed_tab_content_panel_layout/realms_tab_content": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "realms_tab_content_panel", "namespace": "day_one_experience_intro" } }, "tabbed_tab_content_panel_layout/villager_tab_content": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "villager_tab_content_panel", "namespace": "day_one_experience_intro" } }, "common_tab_header_image_panel": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "children": [ "header_image" ] }, "common_tab_header_image_panel/header_image": { "file": "ui/day_one_experience_intro_screen.json", "type": "image" }, "common_tab_content_panel": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "children": [ "content" ] }, "common_tab_content_panel/content": { "file": "ui/day_one_experience_intro_screen.json", "type": "unknown" }, "welcome_tab_header_image_panel": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "common_tab_header_image_panel", "namespace": "day_one_experience_intro" } }, "welcome_tab_content_panel": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "common_tab_content_panel", "namespace": "day_one_experience_intro" } }, "marketplace_tab_header_image_panel": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "common_tab_header_image_panel", "namespace": "day_one_experience_intro" } }, "marketplace_tab_content_panel": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "common_tab_content_panel", "namespace": "day_one_experience_intro" } }, "cross_platform_tab_header_image_panel": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "common_tab_header_image_panel", "namespace": "day_one_experience_intro" } }, "cross_platform_tab_content_panel": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "common_tab_content_panel", "namespace": "day_one_experience_intro" } }, "realms_tab_header_image_panel": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "common_tab_header_image_panel", "namespace": "day_one_experience_intro" } }, "realms_tab_content_panel": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "common_tab_content_panel", "namespace": "day_one_experience_intro" } }, "villager_tab_header_image_panel": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "common_tab_header_image_panel", "namespace": "day_one_experience_intro" } }, "villager_tab_content_panel": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "common_tab_content_panel", "namespace": "day_one_experience_intro" } }, "tab_panel": { "file": "ui/day_one_experience_intro_screen.json", "type": "stack_panel", "children": [ "tab_header_image", "padding_00", "tab_navigation_panel", "tab_content_panel", "padding_4", "continue_button_panel" ] }, "tab_panel/tab_header_image": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "tab_header_image_panel", "namespace": "day_one_experience_intro" } }, "tab_panel/padding_00": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "padding_vertical", "namespace": "day_one_experience_intro" } }, "tab_panel/tab_navigation_panel": { "file": "ui/day_one_experience_intro_screen.json", "type": "stack_panel", "extend": { "name": "tabbed_tab_navigation_panel_layout", "namespace": "day_one_experience_intro" } }, "tab_panel/tab_content_panel": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "tabbed_tab_content_panel_layout", "namespace": "day_one_experience_intro" } }, "tab_panel/padding_4": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "padding_vertical", "namespace": "day_one_experience_intro" } }, "tab_panel/continue_button_panel": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "children": [ "continue_button" ] }, "tab_panel/continue_button_panel/continue_button": { "file": "ui/day_one_experience_intro_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "day_one_experience_intro_screen": { "file": "ui/day_one_experience_intro_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "day_one_experience_intro_screen_content": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "children": [ "welcome_dialog" ] }, "day_one_experience_intro_screen_content/welcome_dialog": { "file": "ui/day_one_experience_intro_screen.json", "type": "panel", "extend": { "name": "main_panel_no_buttons", "namespace": "common_dialogs" } } }, "day_one_experience": { "alpha_scroll_background": { "file": "ui/day_one_experience_screen.json", "type": "image" }, "tip_text": { "file": "ui/day_one_experience_screen.json", "type": "label" }, "tip_arrow_base": { "file": "ui/day_one_experience_screen.json", "type": "image" }, "tip_arrow_left": { "file": "ui/day_one_experience_screen.json", "type": "image", "extend": { "name": "tip_arrow_base", "namespace": "day_one_experience" } }, "tip_arrow_right": { "file": "ui/day_one_experience_screen.json", "type": "image", "extend": { "name": "tip_arrow_base", "namespace": "day_one_experience" } }, "import_time": { "file": "ui/day_one_experience_screen.json", "type": "custom" }, "skins_tip_image": { "file": "ui/day_one_experience_screen.json", "type": "image", "children": [ "arrows" ] }, "skins_tip_image/arrows": { "file": "ui/day_one_experience_screen.json", "type": "stack_panel", "children": [ "right_arrow", "padding", "left_arrow" ] }, "skins_tip_image/arrows/right_arrow": { "file": "ui/day_one_experience_screen.json", "type": "image", "extend": { "name": "tip_arrow_right", "namespace": "day_one_experience" } }, "skins_tip_image/arrows/padding": { "file": "ui/day_one_experience_screen.json", "type": "panel" }, "skins_tip_image/arrows/left_arrow": { "file": "ui/day_one_experience_screen.json", "type": "image", "extend": { "name": "tip_arrow_left", "namespace": "day_one_experience" } }, "skins_tip_top_text": { "file": "ui/day_one_experience_screen.json", "type": "label", "extend": { "name": "tip_text", "namespace": "day_one_experience" } }, "skins_tip_panel": { "file": "ui/day_one_experience_screen.json", "type": "stack_panel", "children": [ "top_text_sizer", "image_sizer", "bottom_text_sizer" ] }, "skins_tip_panel/top_text_sizer": { "file": "ui/day_one_experience_screen.json", "type": "panel", "children": [ "settings_and_skin_text", "settings_text" ] }, "skins_tip_panel/top_text_sizer/settings_and_skin_text": { "file": "ui/day_one_experience_screen.json", "type": "label", "extend": { "name": "skins_tip_top_text", "namespace": "day_one_experience" } }, "skins_tip_panel/top_text_sizer/settings_text": { "file": "ui/day_one_experience_screen.json", "type": "label", "extend": { "name": "skins_tip_top_text", "namespace": "day_one_experience" } }, "skins_tip_panel/image_sizer": { "file": "ui/day_one_experience_screen.json", "type": "panel", "children": [ "image_section" ] }, "skins_tip_panel/image_sizer/image_section": { "file": "ui/day_one_experience_screen.json", "type": "panel", "extend": { "name": "main_panel_no_title_no_buttons", "namespace": "common_dialogs" } }, "skins_tip_panel/bottom_text_sizer": { "file": "ui/day_one_experience_screen.json", "type": "panel", "children": [ "bottom_text" ] }, "skins_tip_panel/bottom_text_sizer/bottom_text": { "file": "ui/day_one_experience_screen.json", "type": "label", "extend": { "name": "tip_text", "namespace": "day_one_experience" } }, "skin_viewer_panel_text": { "file": "ui/day_one_experience_screen.json", "type": "label", "extend": { "name": "tip_text", "namespace": "day_one_experience" } }, "skin_viewer_panel": { "file": "ui/day_one_experience_screen.json", "type": "panel", "children": [ "paper_doll_container", "legacy_skin_loading_panel", "bottom_skin_text" ] }, "skin_viewer_panel/paper_doll_container": { "file": "ui/day_one_experience_screen.json", "type": "panel", "children": [ "paper_doll" ] }, "skin_viewer_panel/paper_doll_container/paper_doll": { "file": "ui/day_one_experience_screen.json", "type": "custom" }, "skin_viewer_panel/legacy_skin_loading_panel": { "file": "ui/day_one_experience_screen.json", "type": "panel", "extend": { "name": "progress_loading", "namespace": "common_store" } }, "skin_viewer_panel/bottom_skin_text": { "file": "ui/day_one_experience_screen.json", "type": "panel", "children": [ "current_skin_text", "default_skin_text" ] }, "skin_viewer_panel/bottom_skin_text/current_skin_text": { "file": "ui/day_one_experience_screen.json", "type": "label", "extend": { "name": "skin_viewer_panel_text", "namespace": "day_one_experience" } }, "skin_viewer_panel/bottom_skin_text/default_skin_text": { "file": "ui/day_one_experience_screen.json", "type": "label", "extend": { "name": "skin_viewer_panel_text", "namespace": "day_one_experience" } }, "skin_tip_screen": { "file": "ui/day_one_experience_screen.json", "type": "panel", "children": [ "primary_content", "no_network_message" ] }, "skin_tip_screen/primary_content": { "file": "ui/day_one_experience_screen.json", "type": "stack_panel", "children": [ "skin_viewer_panel", "padding", "skins_tip_panel_container" ] }, "skin_tip_screen/primary_content/skin_viewer_panel": { "file": "ui/day_one_experience_screen.json", "type": "panel", "children": [ "skin_viewer" ] }, "skin_tip_screen/primary_content/skin_viewer_panel/skin_viewer": { "file": "ui/day_one_experience_screen.json", "type": "panel", "extend": { "name": "main_panel_no_title_no_buttons", "namespace": "common_dialogs" } }, "skin_tip_screen/primary_content/padding": { "file": "ui/day_one_experience_screen.json", "type": "panel" }, "skin_tip_screen/primary_content/skins_tip_panel_container": { "file": "ui/day_one_experience_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" }, "children": [ "background", "skins_tip_panel" ] }, "skin_tip_screen/primary_content/skins_tip_panel_container/background": { "file": "ui/day_one_experience_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "skin_tip_screen/primary_content/skins_tip_panel_container/skins_tip_panel": { "file": "ui/day_one_experience_screen.json", "type": "stack_panel", "extend": { "name": "skins_tip_panel", "namespace": "day_one_experience" } }, "skin_tip_screen/no_network_message": { "file": "ui/day_one_experience_screen.json", "type": "custom" }, "legacy_world_item": { "file": "ui/day_one_experience_screen.json", "type": "stack_panel", "children": [ "header_button_panel" ] }, "legacy_world_item/header_button_panel": { "file": "ui/day_one_experience_screen.json", "type": "panel", "extend": { "name": "header_single_button_panel", "namespace": "play" } }, "legacy_world_item_grid": { "file": "ui/day_one_experience_screen.json", "type": "grid", "extend": { "name": "world_item_grid_base", "namespace": "play" } }, "world_picker_scrolling_content": { "file": "ui/day_one_experience_screen.json", "type": "stack_panel", "children": [ "padding_0", "skip_button", "padding_1", "loading_legacy_worlds_panel", "padding_2", "world_item_grid" ] }, "world_picker_scrolling_content/padding_0": { "file": "ui/day_one_experience_screen.json", "type": "panel" }, "world_picker_scrolling_content/skip_button": { "file": "ui/day_one_experience_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "world_picker_scrolling_content/padding_1": { "file": "ui/day_one_experience_screen.json", "type": "panel" }, "world_picker_scrolling_content/loading_legacy_worlds_panel": { "file": "ui/day_one_experience_screen.json", "type": "image", "extend": { "name": "label_background", "namespace": "play" }, "children": [ "loading_legacy_worlds_label", "padding", "progress_loading_bars" ] }, "world_picker_scrolling_content/loading_legacy_worlds_panel/loading_legacy_worlds_label": { "file": "ui/day_one_experience_screen.json", "type": "label" }, "world_picker_scrolling_content/loading_legacy_worlds_panel/padding": { "file": "ui/day_one_experience_screen.json", "type": "panel" }, "world_picker_scrolling_content/loading_legacy_worlds_panel/progress_loading_bars": { "file": "ui/day_one_experience_screen.json", "type": "image", "extend": { "name": "progress_loading_bars", "namespace": "play" } }, "world_picker_scrolling_content/padding_2": { "file": "ui/day_one_experience_screen.json", "type": "panel" }, "world_picker_scrolling_content/world_item_grid": { "file": "ui/day_one_experience_screen.json", "type": "grid", "extend": { "name": "legacy_world_item_grid", "namespace": "day_one_experience" } }, "world_picker_content": { "file": "ui/day_one_experience_screen.json", "type": "panel", "children": [ "scrolling_panel" ] }, "world_picker_content/scrolling_panel": { "file": "ui/day_one_experience_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "advanced_worlds_screen": { "file": "ui/day_one_experience_screen.json", "type": "stack_panel", "extend": { "name": "day_one_experience", "namespace": "day_one_experience" }, "children": [ "world_picker", "padding_1", "import_time_container" ] }, "advanced_worlds_screen/world_picker": { "file": "ui/day_one_experience_screen.json", "type": "panel", "extend": { "name": "main_panel_no_buttons", "namespace": "common_dialogs" } }, "advanced_worlds_screen/padding_1": { "file": "ui/day_one_experience_screen.json", "type": "panel" }, "advanced_worlds_screen/import_time_container": { "file": "ui/day_one_experience_screen.json", "type": "panel", "children": [ "import_time_label" ] }, "advanced_worlds_screen/import_time_container/import_time_label": { "file": "ui/day_one_experience_screen.json", "type": "custom", "extend": { "name": "import_time", "namespace": "day_one_experience" } }, "next_screen_button_content": { "file": "ui/day_one_experience_screen.json", "type": "panel", "children": [ "arrow_panel", "loading_panel" ] }, "next_screen_button_content/arrow_panel": { "file": "ui/day_one_experience_screen.json", "type": "panel", "children": [ "label_panel", "image" ] }, "next_screen_button_content/arrow_panel/label_panel": { "file": "ui/day_one_experience_screen.json", "type": "panel", "children": [ "label" ] }, "next_screen_button_content/arrow_panel/label_panel/label": { "file": "ui/day_one_experience_screen.json", "type": "label" }, "next_screen_button_content/arrow_panel/image": { "file": "ui/day_one_experience_screen.json", "type": "image" }, "next_screen_button_content/loading_panel": { "file": "ui/day_one_experience_screen.json", "type": "panel", "extend": { "name": "progress_loading", "namespace": "common_store" } }, "next_screen_button": { "file": "ui/day_one_experience_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "next_panel": { "file": "ui/day_one_experience_screen.json", "type": "panel", "children": [ "next_button" ] }, "next_panel/next_button": { "file": "ui/day_one_experience_screen.json", "type": "button", "extend": { "name": "next_screen_button", "namespace": "day_one_experience" } }, "common_scrolling_panel": { "file": "ui/day_one_experience_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "skin_tip_scroll_panel": { "file": "ui/day_one_experience_screen.json", "type": "panel", "children": [ "skin_tip_screen" ] }, "skin_tip_scroll_panel/skin_tip_screen": { "file": "ui/day_one_experience_screen.json", "type": "panel", "extend": { "name": "skin_tip_screen", "namespace": "day_one_experience" } }, "worlds_import_scroll_panel": { "file": "ui/day_one_experience_screen.json", "type": "panel", "children": [ "advanced_screen" ] }, "worlds_import_scroll_panel/advanced_screen": { "file": "ui/day_one_experience_screen.json", "type": "stack_panel", "extend": { "name": "advanced_worlds_screen", "namespace": "day_one_experience" } }, "common_content": { "file": "ui/day_one_experience_screen.json", "type": "panel" }, "skin_tip_scroll_content": { "file": "ui/day_one_experience_screen.json", "type": "panel", "extend": { "name": "common_content", "namespace": "day_one_experience" }, "children": [ "scrolling_panel" ] }, "skin_tip_scroll_content/scrolling_panel": { "file": "ui/day_one_experience_screen.json", "type": "panel", "extend": { "name": "common_scrolling_panel", "namespace": "day_one_experience" } }, "world_import_scroll_content": { "file": "ui/day_one_experience_screen.json", "type": "panel", "extend": { "name": "common_content", "namespace": "day_one_experience" }, "children": [ "scrolling_panel" ] }, "world_import_scroll_content/scrolling_panel": { "file": "ui/day_one_experience_screen.json", "type": "panel", "extend": { "name": "common_scrolling_panel", "namespace": "day_one_experience" } }, "default_tab_content_panel_layout": { "file": "ui/day_one_experience_screen.json", "type": "panel", "children": [ "skin_tip_tab_content", "world_import_tab_content" ] }, "default_tab_content_panel_layout/skin_tip_tab_content": { "file": "ui/day_one_experience_screen.json", "type": "panel", "extend": { "name": "skin_tip_scroll_content", "namespace": "day_one_experience" } }, "default_tab_content_panel_layout/world_import_tab_content": { "file": "ui/day_one_experience_screen.json", "type": "panel", "extend": { "name": "world_import_scroll_content", "namespace": "day_one_experience" } }, "default_wizard_screen": { "file": "ui/day_one_experience_screen.json", "type": "panel", "children": [ "tab_content_panel" ] }, "default_wizard_screen/tab_content_panel": { "file": "ui/day_one_experience_screen.json", "type": "panel", "extend": { "name": "default_tab_content_panel_layout", "namespace": "day_one_experience" } }, "wizard_screen": { "file": "ui/day_one_experience_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "wizard_screen_content": { "file": "ui/day_one_experience_screen.json", "type": "panel", "children": [ "main_control", "next_button" ] }, "wizard_screen_content/main_control": { "file": "ui/day_one_experience_screen.json", "type": "panel", "extend": { "name": "default_wizard_screen", "namespace": "day_one_experience" } }, "wizard_screen_content/next_button": { "file": "ui/day_one_experience_screen.json", "type": "panel", "extend": { "name": "next_panel", "namespace": "day_one_experience" } } }, "death": { "a_button_panel": { "file": "ui/death_screen.json", "type": "panel", "children": [ "gamepad_helper_a" ] }, "a_button_panel/gamepad_helper_a": { "file": "ui/death_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_a", "namespace": "common" } }, "you_died_panel": { "file": "ui/death_screen.json", "type": "panel", "children": [ "you_died_label" ] }, "you_died_panel/you_died_label": { "file": "ui/death_screen.json", "type": "label" }, "death_reason_panel": { "file": "ui/death_screen.json", "type": "panel", "children": [ "death_reason_label" ] }, "death_reason_panel/death_reason_label": { "file": "ui/death_screen.json", "type": "label" }, "labels_panel": { "file": "ui/death_screen.json", "type": "stack_panel", "children": [ "fill_1", "you_died", "padd_1", "death_reason", "padd_2" ] }, "labels_panel/fill_1": { "file": "ui/death_screen.json", "type": "panel" }, "labels_panel/you_died": { "file": "ui/death_screen.json", "type": "panel", "extend": { "name": "you_died_panel", "namespace": "death" } }, "labels_panel/padd_1": { "file": "ui/death_screen.json", "type": "panel" }, "labels_panel/death_reason": { "file": "ui/death_screen.json", "type": "panel", "extend": { "name": "death_reason_panel", "namespace": "death" } }, "labels_panel/padd_2": { "file": "ui/death_screen.json", "type": "panel" }, "buttons_panel": { "file": "ui/death_screen.json", "type": "stack_panel", "children": [ "padd_0", "respawn_button", "padd_1", "main_menu_button", "fill_2", "select_button" ] }, "buttons_panel/padd_0": { "file": "ui/death_screen.json", "type": "panel" }, "buttons_panel/respawn_button": { "file": "ui/death_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "buttons_panel/padd_1": { "file": "ui/death_screen.json", "type": "panel" }, "buttons_panel/main_menu_button": { "file": "ui/death_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "buttons_panel/fill_2": { "file": "ui/death_screen.json", "type": "panel" }, "buttons_panel/select_button": { "file": "ui/death_screen.json", "type": "panel", "extend": { "name": "a_button_panel", "namespace": "death" } }, "death_screen_content": { "file": "ui/death_screen.json", "type": "panel", "children": [ "death_screen_buttons_and_stuff", "loading_label" ] }, "death_screen_content/death_screen_buttons_and_stuff": { "file": "ui/death_screen.json", "type": "panel", "children": [ "labels_panel", "buttons_panel" ] }, "death_screen_content/death_screen_buttons_and_stuff/labels_panel": { "file": "ui/death_screen.json", "type": "stack_panel", "extend": { "name": "labels_panel", "namespace": "death" } }, "death_screen_content/death_screen_buttons_and_stuff/buttons_panel": { "file": "ui/death_screen.json", "type": "stack_panel", "extend": { "name": "buttons_panel", "namespace": "death" } }, "death_screen_content/loading_label": { "file": "ui/death_screen.json", "type": "label" }, "background_gradient": { "file": "ui/death_screen.json", "type": "custom" }, "death_screen": { "file": "ui/death_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } } }, "debug_screen": { "access_button": { "file": "ui/debug_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "special_render": { "file": "ui/debug_screen.json", "type": "custom" }, "content_panel": { "file": "ui/debug_screen.json", "type": "panel", "children": [ "access_button", "special_render" ] }, "content_panel/access_button": { "file": "ui/debug_screen.json", "type": "button", "extend": { "name": "access_button", "namespace": "debug_screen" } }, "content_panel/special_render": { "file": "ui/debug_screen.json", "type": "custom", "extend": { "name": "special_render", "namespace": "debug_screen" } }, "debug_screen": { "file": "ui/debug_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } } }, "dev_console": { "keyboard_button_content": { "file": "ui/dev_console_screen.json", "type": "panel", "extend": { "name": "button_content_panel", "namespace": "common_buttons" }, "children": [ "keyboard_image" ] }, "keyboard_button_content/keyboard_image": { "file": "ui/dev_console_screen.json", "type": "image", "extend": { "name": "keyboard_image", "namespace": "chat" } }, "keyboard_button": { "file": "ui/dev_console_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "button_content": { "file": "ui/dev_console_screen.json", "type": "panel", "extend": { "name": "button_content_panel", "namespace": "common_buttons" }, "children": [ "image" ] }, "button_content/image": { "file": "ui/dev_console_screen.json", "type": "unknown" }, "up_arrow": { "file": "ui/dev_console_screen.json", "type": "image" }, "down_arrow": { "file": "ui/dev_console_screen.json", "type": "image" }, "send_button": { "file": "ui/dev_console_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "sent_message_up_button": { "file": "ui/dev_console_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "sent_message_down_button": { "file": "ui/dev_console_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "chat_stack_panel": { "file": "ui/dev_console_screen.json", "type": "stack_panel", "children": [ "text_box", "send_button", "sent_message_up_button", "sent_message_down_button" ] }, "chat_stack_panel/text_box": { "file": "ui/dev_console_screen.json", "type": "edit_box", "extend": { "name": "text_edit_box", "namespace": "chat" } }, "chat_stack_panel/send_button": { "file": "ui/dev_console_screen.json", "type": "button", "extend": { "name": "send_button", "namespace": "dev_console" } }, "chat_stack_panel/sent_message_up_button": { "file": "ui/dev_console_screen.json", "type": "button", "extend": { "name": "sent_message_up_button", "namespace": "dev_console" } }, "chat_stack_panel/sent_message_down_button": { "file": "ui/dev_console_screen.json", "type": "button", "extend": { "name": "sent_message_down_button", "namespace": "dev_console" } }, "main_stack_panel": { "file": "ui/dev_console_screen.json", "type": "stack_panel", "children": [ "messages_scrolling_panel", "chat_stack_panel" ] }, "main_stack_panel/messages_scrolling_panel": { "file": "ui/dev_console_screen.json", "type": "panel", "extend": { "name": "messages_scrolling_panel", "namespace": "chat" } }, "main_stack_panel/chat_stack_panel": { "file": "ui/dev_console_screen.json", "type": "stack_panel", "extend": { "name": "chat_stack_panel", "namespace": "dev_console" } }, "main_with_intellisense": { "file": "ui/dev_console_screen.json", "type": "panel", "children": [ "main_stack", "commands_panel" ] }, "main_with_intellisense/main_stack": { "file": "ui/dev_console_screen.json", "type": "stack_panel", "extend": { "name": "main_stack_panel", "namespace": "dev_console" } }, "main_with_intellisense/commands_panel": { "file": "ui/dev_console_screen.json", "type": "panel", "extend": { "name": "commands_panel", "namespace": "chat" } }, "dev_console_dialog": { "file": "ui/dev_console_screen.json", "type": "panel", "extend": { "name": "main_panel_no_buttons", "namespace": "common_dialogs" } }, "dev_console_screen": { "file": "ui/dev_console_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } } }, "disconnect": { "disconnect_screen_text": { "file": "ui/disconnect_screen.json", "type": "label" }, "disconnect_text": { "file": "ui/disconnect_screen.json", "type": "label", "extend": { "name": "disconnect_screen_text", "namespace": "disconnect" } }, "disconnect_title_text": { "file": "ui/disconnect_screen.json", "type": "label", "extend": { "name": "disconnect_screen_text", "namespace": "disconnect" } }, "title_panel": { "file": "ui/disconnect_screen.json", "type": "panel", "children": [ "disconnect_title_text", "disconnect_text" ] }, "title_panel/disconnect_title_text": { "file": "ui/disconnect_screen.json", "type": "label", "extend": { "name": "disconnect_title_text", "namespace": "disconnect" } }, "title_panel/disconnect_text": { "file": "ui/disconnect_screen.json", "type": "label", "extend": { "name": "disconnect_text", "namespace": "disconnect" } }, "menu_button_template": { "file": "ui/disconnect_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "continue_button": { "file": "ui/disconnect_screen.json", "type": "button", "extend": { "name": "menu_button_template", "namespace": "disconnect" } }, "check_store_button": { "file": "ui/disconnect_screen.json", "type": "button", "extend": { "name": "menu_button_template", "namespace": "disconnect" } }, "exit_button": { "file": "ui/disconnect_screen.json", "type": "button", "extend": { "name": "menu_button_template", "namespace": "disconnect" } }, "ok_button": { "file": "ui/disconnect_screen.json", "type": "button", "extend": { "name": "menu_button_template", "namespace": "disconnect" } }, "open_uri_button": { "file": "ui/disconnect_screen.json", "type": "button", "extend": { "name": "open_account_setting_button", "namespace": "disconnect" } }, "cancel_button": { "file": "ui/disconnect_screen.json", "type": "button", "extend": { "name": "menu_button_template", "namespace": "disconnect" } }, "button_panel": { "file": "ui/disconnect_screen.json", "type": "stack_panel", "children": [ "open_uri_button_panel", "open_button_panel" ] }, "button_panel/open_uri_button_panel": { "file": "ui/disconnect_screen.json", "type": "panel", "children": [ "open_uri_button" ] }, "button_panel/open_uri_button_panel/open_uri_button": { "file": "ui/disconnect_screen.json", "type": "button", "extend": { "name": "open_uri_button", "namespace": "disconnect" } }, "button_panel/open_button_panel": { "file": "ui/disconnect_screen.json", "type": "panel", "children": [ "ok_button" ] }, "button_panel/open_button_panel/ok_button": { "file": "ui/disconnect_screen.json", "type": "button", "extend": { "name": "ok_button", "namespace": "disconnect" } }, "gamepad_helpers": { "file": "ui/disconnect_screen.json", "type": "panel", "children": [ "gamepad_helper_a" ] }, "gamepad_helpers/gamepad_helper_a": { "file": "ui/disconnect_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_a", "namespace": "common" } }, "disconnect_screen": { "file": "ui/disconnect_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "disconnect_screen_content": { "file": "ui/disconnect_screen.json", "type": "panel", "children": [ "title_panel", "gamepad_helpers" ] }, "disconnect_screen_content/title_panel": { "file": "ui/disconnect_screen.json", "type": "panel", "extend": { "name": "title_panel", "namespace": "disconnect" } }, "disconnect_screen_content/gamepad_helpers": { "file": "ui/disconnect_screen.json", "type": "panel", "extend": { "name": "gamepad_helpers", "namespace": "disconnect" } }, "spacing_gap": { "file": "ui/disconnect_screen.json", "type": "panel" }, "realms_disconnect_screen": { "file": "ui/disconnect_screen.json", "type": "screen", "extend": { "name": "disconnect_screen", "namespace": "disconnect" } }, "realms_disconnect_button_panel": { "file": "ui/disconnect_screen.json", "type": "stack_panel", "children": [ "open_uri_button_panel", "realm_buttons_panel" ] }, "realms_disconnect_button_panel/open_uri_button_panel": { "file": "ui/disconnect_screen.json", "type": "panel", "children": [ "open_uri_button" ] }, "realms_disconnect_button_panel/open_uri_button_panel/open_uri_button": { "file": "ui/disconnect_screen.json", "type": "button", "extend": { "name": "open_uri_button", "namespace": "disconnect" } }, "realms_disconnect_button_panel/realm_buttons_panel": { "file": "ui/disconnect_screen.json", "type": "panel", "children": [ "realm_buttons" ] }, "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons": { "file": "ui/disconnect_screen.json", "type": "stack_panel", "children": [ "check_store_button", "spacing_gap", "exit_button" ] }, "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/check_store_button": { "file": "ui/disconnect_screen.json", "type": "button", "extend": { "name": "check_store_button", "namespace": "disconnect" } }, "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/spacing_gap": { "file": "ui/disconnect_screen.json", "type": "panel", "extend": { "name": "spacing_gap", "namespace": "disconnect" } }, "realms_disconnect_button_panel/realm_buttons_panel/realm_buttons/exit_button": { "file": "ui/disconnect_screen.json", "type": "button", "extend": { "name": "exit_button", "namespace": "disconnect" } }, "realms_warning_screen": { "file": "ui/disconnect_screen.json", "type": "screen", "extend": { "name": "disconnect_screen", "namespace": "disconnect" } }, "realms_warning_button_panel": { "file": "ui/disconnect_screen.json", "type": "stack_panel", "children": [ "continue_button_panel", "realms_warning_button_gap", "cancel_button_panel" ] }, "realms_warning_button_panel/continue_button_panel": { "file": "ui/disconnect_screen.json", "type": "panel", "children": [ "continue_button_stack_panel" ] }, "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel": { "file": "ui/disconnect_screen.json", "type": "stack_panel", "children": [ "check_store_button", "spacing_gap", "continue_button" ] }, "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/check_store_button": { "file": "ui/disconnect_screen.json", "type": "button", "extend": { "name": "check_store_button", "namespace": "disconnect" } }, "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/spacing_gap": { "file": "ui/disconnect_screen.json", "type": "panel", "extend": { "name": "spacing_gap", "namespace": "disconnect" } }, "realms_warning_button_panel/continue_button_panel/continue_button_stack_panel/continue_button": { "file": "ui/disconnect_screen.json", "type": "button", "extend": { "name": "continue_button", "namespace": "disconnect" } }, "realms_warning_button_panel/realms_warning_button_gap": { "file": "ui/disconnect_screen.json", "type": "panel", "extend": { "name": "spacing_gap", "namespace": "disconnect" } }, "realms_warning_button_panel/cancel_button_panel": { "file": "ui/disconnect_screen.json", "type": "panel", "children": [ "cancel_button" ] }, "realms_warning_button_panel/cancel_button_panel/cancel_button": { "file": "ui/disconnect_screen.json", "type": "button", "extend": { "name": "cancel_button", "namespace": "disconnect" } }, "open_account_setting_button": { "file": "ui/disconnect_screen.json", "type": "button", "extend": { "name": "hyperlink_button", "namespace": "common_buttons" } } }, "display_logged_error": { "display_logged_error_screen": { "file": "ui/display_logged_error_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "factory_panel": { "file": "ui/display_logged_error_screen.json", "type": "panel", "children": [ "error_dialog_factory" ] }, "factory_panel/error_dialog_factory": { "file": "ui/display_logged_error_screen.json", "type": "factory" }, "display_logged_error_modal": { "file": "ui/display_logged_error_screen.json", "type": "panel", "extend": { "name": "main_panel_two_buttons", "namespace": "common_dialogs" } }, "error_message_stack": { "file": "ui/display_logged_error_screen.json", "type": "stack_panel", "children": [ "error_message", "error_count" ] }, "error_message_stack/error_message": { "file": "ui/display_logged_error_screen.json", "type": "label" }, "error_message_stack/error_count": { "file": "ui/display_logged_error_screen.json", "type": "label" }, "input_blocking_button_base": { "file": "ui/display_logged_error_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "details_button": { "file": "ui/display_logged_error_screen.json", "type": "button", "extend": { "name": "input_blocking_button_base", "namespace": "display_logged_error" } }, "dismiss_button": { "file": "ui/display_logged_error_screen.json", "type": "button", "extend": { "name": "input_blocking_button_base", "namespace": "display_logged_error" } }, "error_details_modal": { "file": "ui/display_logged_error_screen.json", "type": "panel", "extend": { "name": "main_panel_two_buttons", "namespace": "common_dialogs" } }, "copy_path_button": { "file": "ui/display_logged_error_screen.json", "type": "button", "extend": { "name": "input_blocking_button_base", "namespace": "display_logged_error" } }, "hide_error_details_button": { "file": "ui/display_logged_error_screen.json", "type": "button", "extend": { "name": "input_blocking_button_base", "namespace": "display_logged_error" } }, "error_stack_scrolling_panel": { "file": "ui/display_logged_error_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "error_stack": { "file": "ui/display_logged_error_screen.json", "type": "stack_panel" }, "error_controller_panel": { "file": "ui/display_logged_error_screen.json", "type": "panel", "children": [ "error_message", "controller_button" ] }, "error_controller_panel/error_message": { "file": "ui/display_logged_error_screen.json", "type": "stack_panel", "extend": { "name": "error_base", "namespace": "display_logged_error" } }, "error_controller_panel/controller_button": { "file": "ui/display_logged_error_screen.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "hover", "pressed" ] }, "error_controller_panel/controller_button/hover": { "file": "ui/display_logged_error_screen.json", "type": "image", "extend": { "name": "focus_border_white", "namespace": "common" } }, "error_controller_panel/controller_button/pressed": { "file": "ui/display_logged_error_screen.json", "type": "image", "extend": { "name": "focus_border_white", "namespace": "common" } }, "error_base": { "file": "ui/display_logged_error_screen.json", "type": "stack_panel", "children": [ "error_message", "expand_button" ] }, "error_base/error_message": { "file": "ui/display_logged_error_screen.json", "type": "label" }, "error_base/expand_button": { "file": "ui/display_logged_error_screen.json", "type": "button", "extend": { "name": "input_blocking_button_base", "namespace": "display_logged_error" } }, "error_short": { "file": "ui/display_logged_error_screen.json", "type": "panel", "extend": { "name": "error_controller_panel", "namespace": "display_logged_error" } }, "error_expanded": { "file": "ui/display_logged_error_screen.json", "type": "panel", "extend": { "name": "error_controller_panel", "namespace": "display_logged_error" } } }, "discovery_dialog": { "service_body_label": { "file": "ui/edu_discovery_dialog.json", "type": "label" }, "service_button": { "file": "ui/edu_discovery_dialog.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "service_buttons": { "file": "ui/edu_discovery_dialog.json", "type": "stack_panel" }, "content": { "file": "ui/edu_discovery_dialog.json", "type": "stack_panel", "children": [ "body_text", "text_to_button_padding", "buttons" ] }, "content/body_text": { "file": "ui/edu_discovery_dialog.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "content/text_to_button_padding": { "file": "ui/edu_discovery_dialog.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "content/buttons": { "file": "ui/edu_discovery_dialog.json", "type": "stack_panel", "extend": { "name": "service_buttons", "namespace": "discovery_dialog" } }, "service_dialog": { "file": "ui/edu_discovery_dialog.json", "type": "input_panel", "extend": { "name": "form_fit_modal_dialog_popup", "namespace": "popup_dialog" } }, "discovery_dialog_factory": { "file": "ui/edu_discovery_dialog.json", "type": "factory" } }, "edu_featured": { "featured_button_content": { "file": "ui/edu_featured.json", "type": "panel", "children": [ "button_label" ] }, "featured_button_content/button_label": { "file": "ui/edu_featured.json", "type": "label", "extend": { "name": "new_ui_binding_button_label", "namespace": "common_buttons" } }, "featured_button": { "file": "ui/edu_featured.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } } }, "edu_quit_button": { "quit_button": { "file": "ui/edu_pause_screen_pause_button.json", "type": "button", "extend": { "name": "quit_button", "namespace": "pause" } } }, "persona_emote": { "emote_wheel_screen": { "file": "ui/emote_wheel_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "emote_wheel_touch_zone": { "file": "ui/emote_wheel_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "emote_wheel_screen_content": { "file": "ui/emote_wheel_screen.json", "type": "stack_panel", "children": [ "top_padding", "root_panel", "instruction_padding", "instruction_panel", "dressing_room_button_panel", "bottom_padding" ] }, "emote_wheel_screen_content/top_padding": { "file": "ui/emote_wheel_screen.json", "type": "panel" }, "emote_wheel_screen_content/root_panel": { "file": "ui/emote_wheel_screen.json", "type": "panel", "children": [ "emotes_panel" ] }, "emote_wheel_screen_content/root_panel/emotes_panel": { "file": "ui/emote_wheel_screen.json", "type": "panel", "extend": { "name": "squaring_panel", "namespace": "common" } }, "emote_wheel_screen_content/instruction_padding": { "file": "ui/emote_wheel_screen.json", "type": "panel" }, "emote_wheel_screen_content/instruction_panel": { "file": "ui/emote_wheel_screen.json", "type": "panel", "children": [ "instruction_background" ] }, "emote_wheel_screen_content/instruction_panel/instruction_background": { "file": "ui/emote_wheel_screen.json", "type": "image", "children": [ "gamepad_instruction_stack", "instruction_label_keyboard", "instruction_label_touch" ] }, "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack": { "file": "ui/emote_wheel_screen.json", "type": "stack_panel", "children": [ "instruction_label_gamepad", "gamepad_helpers" ] }, "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/instruction_label_gamepad": { "file": "ui/emote_wheel_screen.json", "type": "label" }, "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers": { "file": "ui/emote_wheel_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "gamepad_helper_stack" ] }, "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack": { "file": "ui/emote_wheel_screen.json", "type": "stack_panel", "children": [ "gamepad_start", "gamepad_exit_panel" ] }, "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_start": { "file": "ui/emote_wheel_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_start", "namespace": "common" } }, "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_exit_panel": { "file": "ui/emote_wheel_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "gamepad_exit" ] }, "emote_wheel_screen_content/instruction_panel/instruction_background/gamepad_instruction_stack/gamepad_helpers/gamepad_helper_stack/gamepad_exit_panel/gamepad_exit": { "file": "ui/emote_wheel_screen.json", "type": "label" }, "emote_wheel_screen_content/instruction_panel/instruction_background/instruction_label_keyboard": { "file": "ui/emote_wheel_screen.json", "type": "label" }, "emote_wheel_screen_content/instruction_panel/instruction_background/instruction_label_touch": { "file": "ui/emote_wheel_screen.json", "type": "label" }, "emote_wheel_screen_content/dressing_room_button_panel": { "file": "ui/emote_wheel_screen.json", "type": "panel", "children": [ "dressing_room_button" ] }, "emote_wheel_screen_content/dressing_room_button_panel/dressing_room_button": { "file": "ui/emote_wheel_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "emote_wheel_screen_content/bottom_padding": { "file": "ui/emote_wheel_screen.json", "type": "panel" }, "swap_emote_button": { "file": "ui/emote_wheel_screen.json", "type": "button", "extend": { "name": "dark_text_button", "namespace": "common_buttons" } } }, "enchanting": { "enchanting_image": { "file": "ui/enchanting_screen.json", "type": "image" }, "lapis_image": { "file": "ui/enchanting_screen.json", "type": "image", "extend": { "name": "enchanting_image", "namespace": "enchanting" } }, "dust_image": { "file": "ui/enchanting_screen.json", "type": "image", "extend": { "name": "enchanting_image", "namespace": "enchanting" } }, "dust_image_selectable": { "file": "ui/enchanting_screen.json", "type": "image", "extend": { "name": "dust_image", "namespace": "enchanting" } }, "dust_image_unselectable": { "file": "ui/enchanting_screen.json", "type": "image", "extend": { "name": "dust_image", "namespace": "enchanting" } }, "dust_template": { "file": "ui/enchanting_screen.json", "type": "panel", "children": [ "dust_image_selectable", "dust_image_unselectable" ] }, "dust_template/dust_image_selectable": { "file": "ui/enchanting_screen.json", "type": "image", "extend": { "name": "dust_image_selectable", "namespace": "enchanting" } }, "dust_template/dust_image_unselectable": { "file": "ui/enchanting_screen.json", "type": "image", "extend": { "name": "dust_image_unselectable", "namespace": "enchanting" } }, "dust_panel": { "file": "ui/enchanting_screen.json", "type": "grid", "children": [ "a", "b", "c" ] }, "dust_panel/a": { "file": "ui/enchanting_screen.json", "type": "panel", "extend": { "name": "dust_template", "namespace": "enchanting" } }, "dust_panel/b": { "file": "ui/enchanting_screen.json", "type": "panel", "extend": { "name": "dust_template", "namespace": "enchanting" } }, "dust_panel/c": { "file": "ui/enchanting_screen.json", "type": "panel", "extend": { "name": "dust_template", "namespace": "enchanting" } }, "background_with_hover_text": { "file": "ui/enchanting_screen.json", "type": "image", "extend": { "name": "enchanting_image", "namespace": "enchanting" }, "children": [ "hover_text" ] }, "background_with_hover_text/hover_text": { "file": "ui/enchanting_screen.json", "type": "custom", "extend": { "name": "hover_text", "namespace": "common" } }, "dark_background": { "file": "ui/enchanting_screen.json", "type": "image", "extend": { "name": "enchanting_image", "namespace": "enchanting" } }, "dark_background_with_hover_text": { "file": "ui/enchanting_screen.json", "type": "image", "extend": { "name": "background_with_hover_text", "namespace": "enchanting" } }, "active_background": { "file": "ui/enchanting_screen.json", "type": "image", "extend": { "name": "enchanting_image", "namespace": "enchanting" } }, "active_background_with_hover_text": { "file": "ui/enchanting_screen.json", "type": "image", "extend": { "name": "background_with_hover_text", "namespace": "enchanting" } }, "enchant_runes": { "file": "ui/enchanting_screen.json", "type": "label" }, "enchant_cost": { "file": "ui/enchanting_screen.json", "type": "label" }, "success_runes": { "file": "ui/enchanting_screen.json", "type": "label", "extend": { "name": "enchant_runes", "namespace": "enchanting" } }, "fail_runes": { "file": "ui/enchanting_screen.json", "type": "label", "extend": { "name": "enchant_runes", "namespace": "enchanting" } }, "success_cost": { "file": "ui/enchanting_screen.json", "type": "label", "extend": { "name": "enchant_cost", "namespace": "enchanting" } }, "fail_cost": { "file": "ui/enchanting_screen.json", "type": "label", "extend": { "name": "enchant_cost", "namespace": "enchanting" } }, "enchanting_label": { "file": "ui/enchanting_screen.json", "type": "label" }, "base_button": { "file": "ui/enchanting_screen.json", "type": "button", "extend": { "name": "button", "namespace": "common" } }, "unselectable_button": { "file": "ui/enchanting_screen.json", "type": "button", "extend": { "name": "base_button", "namespace": "enchanting" }, "children": [ "default", "hover", "pressed", "rune_text", "enchant_cost" ] }, "unselectable_button/default": { "file": "ui/enchanting_screen.json", "type": "image", "extend": { "name": "dark_background", "namespace": "enchanting" } }, "unselectable_button/hover": { "file": "ui/enchanting_screen.json", "type": "image", "extend": { "name": "dark_background_with_hover_text", "namespace": "enchanting" } }, "unselectable_button/pressed": { "file": "ui/enchanting_screen.json", "type": "image", "extend": { "name": "dark_background", "namespace": "enchanting" } }, "unselectable_button/rune_text": { "file": "ui/enchanting_screen.json", "type": "label", "extend": { "name": "fail_runes", "namespace": "enchanting" } }, "unselectable_button/enchant_cost": { "file": "ui/enchanting_screen.json", "type": "label", "extend": { "name": "fail_cost", "namespace": "enchanting" } }, "selectable_button": { "file": "ui/enchanting_screen.json", "type": "button", "extend": { "name": "base_button", "namespace": "enchanting" }, "children": [ "default", "hover", "pressed", "rune_text", "enchant_cost" ] }, "selectable_button/default": { "file": "ui/enchanting_screen.json", "type": "image", "extend": { "name": "active_background", "namespace": "enchanting" } }, "selectable_button/hover": { "file": "ui/enchanting_screen.json", "type": "image", "extend": { "name": "active_background_with_hover_text", "namespace": "enchanting" } }, "selectable_button/pressed": { "file": "ui/enchanting_screen.json", "type": "image", "extend": { "name": "dark_background", "namespace": "enchanting" } }, "selectable_button/rune_text": { "file": "ui/enchanting_screen.json", "type": "label", "extend": { "name": "fail_runes", "namespace": "enchanting" } }, "selectable_button/enchant_cost": { "file": "ui/enchanting_screen.json", "type": "label", "extend": { "name": "success_cost", "namespace": "enchanting" } }, "enchant_button_panel": { "file": "ui/enchanting_screen.json", "type": "panel", "children": [ "dark_background", "unselectable_button", "selectable_button" ] }, "enchant_button_panel/dark_background": { "file": "ui/enchanting_screen.json", "type": "image", "extend": { "name": "dark_background", "namespace": "enchanting" } }, "enchant_button_panel/unselectable_button": { "file": "ui/enchanting_screen.json", "type": "button", "extend": { "name": "unselectable_button", "namespace": "enchanting" } }, "enchant_button_panel/selectable_button": { "file": "ui/enchanting_screen.json", "type": "button", "extend": { "name": "selectable_button", "namespace": "enchanting" } }, "enchanting_panel_top_half": { "file": "ui/enchanting_screen.json", "type": "panel", "children": [ "enchanting_label", "enchanting_book_panel", "item_grid", "lapis_grid", "grid_panel" ] }, "enchanting_panel_top_half/enchanting_label": { "file": "ui/enchanting_screen.json", "type": "label", "extend": { "name": "enchanting_label", "namespace": "enchanting" } }, "enchanting_panel_top_half/enchanting_book_panel": { "file": "ui/enchanting_screen.json", "type": "panel", "children": [ "enchanting_book" ] }, "enchanting_panel_top_half/enchanting_book_panel/enchanting_book": { "file": "ui/enchanting_screen.json", "type": "custom" }, "enchanting_panel_top_half/item_grid": { "file": "ui/enchanting_screen.json", "type": "grid", "children": [ "item_slot" ] }, "enchanting_panel_top_half/item_grid/item_slot": { "file": "ui/enchanting_screen.json", "type": "input_panel", "extend": { "name": "container_item", "namespace": "common" } }, "enchanting_panel_top_half/lapis_grid": { "file": "ui/enchanting_screen.json", "type": "grid", "children": [ "lapis" ] }, "enchanting_panel_top_half/lapis_grid/lapis": { "file": "ui/enchanting_screen.json", "type": "input_panel", "extend": { "name": "container_item", "namespace": "common" } }, "enchanting_panel_top_half/grid_panel": { "file": "ui/enchanting_screen.json", "type": "panel", "children": [ "indent", "dust_panel", "enchantments_grid" ] }, "enchanting_panel_top_half/grid_panel/indent": { "file": "ui/enchanting_screen.json", "type": "image", "extend": { "name": "cell_image", "namespace": "common" } }, "enchanting_panel_top_half/grid_panel/dust_panel": { "file": "ui/enchanting_screen.json", "type": "grid", "extend": { "name": "dust_panel", "namespace": "enchanting" } }, "enchanting_panel_top_half/grid_panel/enchantments_grid": { "file": "ui/enchanting_screen.json", "type": "grid" }, "enchanting_panel": { "file": "ui/enchanting_screen.json", "type": "panel", "children": [ "container_gamepad_helpers", "selected_item_details_factory", "item_lock_notification_factory", "root_panel", "flying_item_renderer" ] }, "enchanting_panel/container_gamepad_helpers": { "file": "ui/enchanting_screen.json", "type": "stack_panel", "extend": { "name": "container_gamepad_helpers", "namespace": "common" } }, "enchanting_panel/selected_item_details_factory": { "file": "ui/enchanting_screen.json", "type": "factory", "extend": { "name": "selected_item_details_factory", "namespace": "common" } }, "enchanting_panel/item_lock_notification_factory": { "file": "ui/enchanting_screen.json", "type": "factory", "extend": { "name": "item_lock_notification_factory", "namespace": "common" } }, "enchanting_panel/root_panel": { "file": "ui/enchanting_screen.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "common_panel", "enchanting_screen_inventory", "inventory_selected_icon_button", "gamepad_cursor" ] }, "enchanting_panel/root_panel/common_panel": { "file": "ui/enchanting_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "enchanting_panel/root_panel/enchanting_screen_inventory": { "file": "ui/enchanting_screen.json", "type": "panel", "children": [ "enchanting_panel_top_half", "inventory_panel_bottom_half_with_label", "hotbar_grid", "inventory_take_progress_icon_button" ] }, "enchanting_panel/root_panel/enchanting_screen_inventory/enchanting_panel_top_half": { "file": "ui/enchanting_screen.json", "type": "panel", "extend": { "name": "enchanting_panel_top_half", "namespace": "enchanting" } }, "enchanting_panel/root_panel/enchanting_screen_inventory/inventory_panel_bottom_half_with_label": { "file": "ui/enchanting_screen.json", "type": "panel", "extend": { "name": "inventory_panel_bottom_half_with_label", "namespace": "common" } }, "enchanting_panel/root_panel/enchanting_screen_inventory/hotbar_grid": { "file": "ui/enchanting_screen.json", "type": "grid", "extend": { "name": "hotbar_grid_template", "namespace": "common" } }, "enchanting_panel/root_panel/enchanting_screen_inventory/inventory_take_progress_icon_button": { "file": "ui/enchanting_screen.json", "type": "button", "extend": { "name": "inventory_take_progress_icon_button", "namespace": "common" } }, "enchanting_panel/root_panel/inventory_selected_icon_button": { "file": "ui/enchanting_screen.json", "type": "button", "extend": { "name": "inventory_selected_icon_button", "namespace": "common" } }, "enchanting_panel/root_panel/gamepad_cursor": { "file": "ui/enchanting_screen.json", "type": "button", "extend": { "name": "gamepad_cursor_button", "namespace": "common" } }, "enchanting_panel/flying_item_renderer": { "file": "ui/enchanting_screen.json", "type": "custom", "extend": { "name": "flying_item_renderer", "namespace": "common" } }, "enchanting_screen": { "file": "ui/enchanting_screen.json", "type": "screen", "extend": { "name": "inventory_screen_common", "namespace": "common" } } }, "enchanting_pocket": { "generic_label": { "file": "ui/enchanting_screen_pocket.json", "type": "label" }, "background_image": { "file": "ui/enchanting_screen_pocket.json", "type": "image" }, "inventory_grid": { "file": "ui/enchanting_screen_pocket.json", "type": "grid" }, "inventory_content": { "file": "ui/enchanting_screen_pocket.json", "type": "panel", "children": [ "scrolling_panel" ] }, "inventory_content/scrolling_panel": { "file": "ui/enchanting_screen_pocket.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "lapis_image": { "file": "ui/enchanting_screen_pocket.json", "type": "image", "extend": { "name": "enchanting_image", "namespace": "enchanting" } }, "enchanting_slots_panel": { "file": "ui/enchanting_screen_pocket.json", "type": "panel", "children": [ "input_slot", "lapis_slot" ] }, "enchanting_slots_panel/input_slot": { "file": "ui/enchanting_screen_pocket.json", "type": "input_panel", "extend": { "name": "pocket_ui_large_container_item", "namespace": "common" } }, "enchanting_slots_panel/lapis_slot": { "file": "ui/enchanting_screen_pocket.json", "type": "input_panel", "extend": { "name": "pocket_ui_large_container_item", "namespace": "common" } }, "enchant_text_runes": { "file": "ui/enchanting_screen_pocket.json", "type": "label", "extend": { "name": "enchant_runes", "namespace": "enchanting" } }, "show_highlighted_slot_control": { "file": "ui/enchanting_screen_pocket.json", "type": "image", "extend": { "name": "pocket_ui_highlight_selected_slot", "namespace": "common" } }, "show_highlighted_hover_slot_control": { "file": "ui/enchanting_screen_pocket.json", "type": "image", "extend": { "name": "pocket_ui_highlight_selected_slot", "namespace": "common" } }, "inactive_background": { "file": "ui/enchanting_screen_pocket.json", "type": "image" }, "unselectable_button": { "file": "ui/enchanting_screen_pocket.json", "type": "button", "extend": { "name": "unselectable_button", "namespace": "enchanting" }, "children": [ "default", "hover", "pressed", "enchant_cost" ] }, "unselectable_button/default": { "file": "ui/enchanting_screen_pocket.json", "type": "image", "extend": { "name": "dark_background", "namespace": "enchanting" } }, "unselectable_button/hover": { "file": "ui/enchanting_screen_pocket.json", "type": "image", "extend": { "name": "dark_background_with_hover_text", "namespace": "enchanting" } }, "unselectable_button/pressed": { "file": "ui/enchanting_screen_pocket.json", "type": "image", "extend": { "name": "dark_background", "namespace": "enchanting" } }, "unselectable_button/enchant_cost": { "file": "ui/enchanting_screen_pocket.json", "type": "label", "extend": { "name": "fail_cost", "namespace": "enchanting" } }, "selectable_button": { "file": "ui/enchanting_screen_pocket.json", "type": "button", "extend": { "name": "selectable_button", "namespace": "enchanting" }, "children": [ "default", "hover", "pressed", "enchant_cost" ] }, "selectable_button/default": { "file": "ui/enchanting_screen_pocket.json", "type": "image", "extend": { "name": "active_background", "namespace": "enchanting" } }, "selectable_button/hover": { "file": "ui/enchanting_screen_pocket.json", "type": "image", "extend": { "name": "active_background_with_hover_text", "namespace": "enchanting" } }, "selectable_button/pressed": { "file": "ui/enchanting_screen_pocket.json", "type": "image", "extend": { "name": "dark_background", "namespace": "enchanting" } }, "selectable_button/enchant_cost": { "file": "ui/enchanting_screen_pocket.json", "type": "label", "extend": { "name": "success_cost", "namespace": "enchanting" } }, "enchant_button_panel": { "file": "ui/enchanting_screen_pocket.json", "type": "panel", "children": [ "inactive_background", "unselectable_button", "selectable_button", "dust", "rune_text", "highlight" ] }, "enchant_button_panel/inactive_background": { "file": "ui/enchanting_screen_pocket.json", "type": "image", "extend": { "name": "inactive_background", "namespace": "enchanting_pocket" } }, "enchant_button_panel/unselectable_button": { "file": "ui/enchanting_screen_pocket.json", "type": "button", "extend": { "name": "unselectable_button", "namespace": "enchanting_pocket" } }, "enchant_button_panel/selectable_button": { "file": "ui/enchanting_screen_pocket.json", "type": "button", "extend": { "name": "selectable_button", "namespace": "enchanting_pocket" } }, "enchant_button_panel/dust": { "file": "ui/enchanting_screen_pocket.json", "type": "panel", "extend": { "name": "dust_template", "namespace": "enchanting" } }, "enchant_button_panel/rune_text": { "file": "ui/enchanting_screen_pocket.json", "type": "label", "extend": { "name": "enchant_text_runes", "namespace": "enchanting_pocket" } }, "enchant_button_panel/highlight": { "file": "ui/enchanting_screen_pocket.json", "type": "image", "extend": { "name": "show_highlighted_slot_control", "namespace": "enchanting_pocket" } }, "enchant_selection_panel": { "file": "ui/enchanting_screen_pocket.json", "type": "panel", "children": [ "grid" ] }, "enchant_selection_panel/grid": { "file": "ui/enchanting_screen_pocket.json", "type": "grid", "children": [ "button1", "button2", "button3" ] }, "enchant_selection_panel/grid/button1": { "file": "ui/enchanting_screen_pocket.json", "type": "panel", "extend": { "name": "enchant_button_panel", "namespace": "enchanting_pocket" } }, "enchant_selection_panel/grid/button2": { "file": "ui/enchanting_screen_pocket.json", "type": "panel", "extend": { "name": "enchant_button_panel", "namespace": "enchanting_pocket" } }, "enchant_selection_panel/grid/button3": { "file": "ui/enchanting_screen_pocket.json", "type": "panel", "extend": { "name": "enchant_button_panel", "namespace": "enchanting_pocket" } }, "item_renderer": { "file": "ui/enchanting_screen_pocket.json", "type": "custom" }, "confirm_default_control": { "file": "ui/enchanting_screen_pocket.json", "type": "image" }, "enchanting_confirm_button": { "file": "ui/enchanting_screen_pocket.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed", "arrow_active", "arrow_inactive", "input_item_renderer", "output_item_renderer" ] }, "enchanting_confirm_button/default": { "file": "ui/enchanting_screen_pocket.json", "type": "image", "extend": { "name": "confirm_default_control", "namespace": "enchanting_pocket" } }, "enchanting_confirm_button/hover": { "file": "ui/enchanting_screen_pocket.json", "type": "image", "extend": { "name": "confirm_default_control", "namespace": "enchanting_pocket" } }, "enchanting_confirm_button/pressed": { "file": "ui/enchanting_screen_pocket.json", "type": "image" }, "enchanting_confirm_button/arrow_active": { "file": "ui/enchanting_screen_pocket.json", "type": "image" }, "enchanting_confirm_button/arrow_inactive": { "file": "ui/enchanting_screen_pocket.json", "type": "image" }, "enchanting_confirm_button/input_item_renderer": { "file": "ui/enchanting_screen_pocket.json", "type": "custom", "extend": { "name": "item_renderer", "namespace": "enchanting_pocket" } }, "enchanting_confirm_button/output_item_renderer": { "file": "ui/enchanting_screen_pocket.json", "type": "custom", "extend": { "name": "item_renderer", "namespace": "enchanting_pocket" } }, "enchanting_confirm_panel": { "file": "ui/enchanting_screen_pocket.json", "type": "panel", "children": [ "confirm", "enchantment_hint_text" ] }, "enchanting_confirm_panel/confirm": { "file": "ui/enchanting_screen_pocket.json", "type": "button", "extend": { "name": "enchanting_confirm_button", "namespace": "enchanting_pocket" } }, "enchanting_confirm_panel/enchantment_hint_text": { "file": "ui/enchanting_screen_pocket.json", "type": "label", "extend": { "name": "generic_label", "namespace": "enchanting_pocket" } }, "enchanting_book_contents_panel": { "file": "ui/enchanting_screen_pocket.json", "type": "panel", "children": [ "enchanting_book", "player_level_label", "level_label" ] }, "enchanting_book_contents_panel/enchanting_book": { "file": "ui/enchanting_screen_pocket.json", "type": "custom" }, "enchanting_book_contents_panel/player_level_label": { "file": "ui/enchanting_screen_pocket.json", "type": "label", "extend": { "name": "generic_label", "namespace": "enchanting_pocket" } }, "enchanting_book_contents_panel/level_label": { "file": "ui/enchanting_screen_pocket.json", "type": "label", "extend": { "name": "generic_label", "namespace": "enchanting_pocket" } }, "enchanting_book_panel": { "file": "ui/enchanting_screen_pocket.json", "type": "panel", "children": [ "enchanting_slots_panel" ] }, "enchanting_book_panel/enchanting_slots_panel": { "file": "ui/enchanting_screen_pocket.json", "type": "panel", "extend": { "name": "enchanting_book_contents_panel", "namespace": "enchanting_pocket" } }, "enchanting_slots_and_selection": { "file": "ui/enchanting_screen_pocket.json", "type": "stack_panel", "children": [ "enchanting_slots_panel", "pad1", "enchant_selection_panel" ] }, "enchanting_slots_and_selection/enchanting_slots_panel": { "file": "ui/enchanting_screen_pocket.json", "type": "panel", "extend": { "name": "enchanting_slots_panel", "namespace": "enchanting_pocket" } }, "enchanting_slots_and_selection/pad1": { "file": "ui/enchanting_screen_pocket.json", "type": "panel" }, "enchanting_slots_and_selection/enchant_selection_panel": { "file": "ui/enchanting_screen_pocket.json", "type": "panel", "extend": { "name": "enchant_selection_panel", "namespace": "enchanting_pocket" } }, "enchanting_contents_panel": { "file": "ui/enchanting_screen_pocket.json", "type": "stack_panel", "children": [ "fill1", "enchanting_book_panel", "pad1", "enchanting_slots_and_selection", "pad2", "enchanting_confirm_panel", "fill2" ] }, "enchanting_contents_panel/fill1": { "file": "ui/enchanting_screen_pocket.json", "type": "panel" }, "enchanting_contents_panel/enchanting_book_panel": { "file": "ui/enchanting_screen_pocket.json", "type": "panel", "extend": { "name": "enchanting_book_panel", "namespace": "enchanting_pocket" } }, "enchanting_contents_panel/pad1": { "file": "ui/enchanting_screen_pocket.json", "type": "panel" }, "enchanting_contents_panel/enchanting_slots_and_selection": { "file": "ui/enchanting_screen_pocket.json", "type": "stack_panel", "extend": { "name": "enchanting_slots_and_selection", "namespace": "enchanting_pocket" } }, "enchanting_contents_panel/pad2": { "file": "ui/enchanting_screen_pocket.json", "type": "panel" }, "enchanting_contents_panel/enchanting_confirm_panel": { "file": "ui/enchanting_screen_pocket.json", "type": "panel", "extend": { "name": "enchanting_confirm_panel", "namespace": "enchanting_pocket" } }, "enchanting_contents_panel/fill2": { "file": "ui/enchanting_screen_pocket.json", "type": "panel" }, "header": { "file": "ui/enchanting_screen_pocket.json", "type": "panel", "children": [ "header_background", "legacy_pocket_close_button", "panel" ] }, "header/header_background": { "file": "ui/enchanting_screen_pocket.json", "type": "image" }, "header/legacy_pocket_close_button": { "file": "ui/enchanting_screen_pocket.json", "type": "button", "extend": { "name": "legacy_pocket_close_button", "namespace": "common" } }, "header/panel": { "file": "ui/enchanting_screen_pocket.json", "type": "panel", "children": [ "title_label" ] }, "header/panel/title_label": { "file": "ui/enchanting_screen_pocket.json", "type": "label", "extend": { "name": "generic_label", "namespace": "enchanting_pocket" } }, "inventory_and_enchanting_panel": { "file": "ui/enchanting_screen_pocket.json", "type": "panel", "children": [ "inventory_half_screen", "enchanting_half_screen" ] }, "inventory_and_enchanting_panel/inventory_half_screen": { "file": "ui/enchanting_screen_pocket.json", "type": "panel", "children": [ "inventory_content" ] }, "inventory_and_enchanting_panel/inventory_half_screen/inventory_content": { "file": "ui/enchanting_screen_pocket.json", "type": "panel", "extend": { "name": "inventory_content", "namespace": "enchanting_pocket" } }, "inventory_and_enchanting_panel/enchanting_half_screen": { "file": "ui/enchanting_screen_pocket.json", "type": "panel", "children": [ "enchanting_content" ] }, "inventory_and_enchanting_panel/enchanting_half_screen/enchanting_content": { "file": "ui/enchanting_screen_pocket.json", "type": "stack_panel", "extend": { "name": "enchanting_contents_panel", "namespace": "enchanting_pocket" } }, "header_and_content_stack_panel": { "file": "ui/enchanting_screen_pocket.json", "type": "stack_panel", "children": [ "header", "inventory_and_enchanting_panel" ] }, "header_and_content_stack_panel/header": { "file": "ui/enchanting_screen_pocket.json", "type": "panel", "extend": { "name": "header", "namespace": "enchanting_pocket" } }, "header_and_content_stack_panel/inventory_and_enchanting_panel": { "file": "ui/enchanting_screen_pocket.json", "type": "panel", "extend": { "name": "inventory_and_enchanting_panel", "namespace": "enchanting_pocket" } }, "error_text_panel": { "file": "ui/enchanting_screen_pocket.json", "type": "panel", "children": [ "item_text_label" ] }, "error_text_panel/item_text_label": { "file": "ui/enchanting_screen_pocket.json", "type": "label", "extend": { "name": "generic_label", "namespace": "enchanting_pocket" } }, "enchanting_panel": { "file": "ui/enchanting_screen_pocket.json", "type": "panel", "children": [ "bg", "root_panel", "header_and_content_stack_panel", "container_gamepad_helpers", "inventory_selected_icon_button", "hold_icon", "selected_item_details_factory", "item_lock_notification_factory", "flying_item_renderer" ] }, "enchanting_panel/bg": { "file": "ui/enchanting_screen_pocket.json", "type": "image", "extend": { "name": "background_image", "namespace": "enchanting_pocket" } }, "enchanting_panel/root_panel": { "file": "ui/enchanting_screen_pocket.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" } }, "enchanting_panel/header_and_content_stack_panel": { "file": "ui/enchanting_screen_pocket.json", "type": "stack_panel", "extend": { "name": "header_and_content_stack_panel", "namespace": "enchanting_pocket" } }, "enchanting_panel/container_gamepad_helpers": { "file": "ui/enchanting_screen_pocket.json", "type": "stack_panel", "extend": { "name": "container_gamepad_helpers", "namespace": "common" } }, "enchanting_panel/inventory_selected_icon_button": { "file": "ui/enchanting_screen_pocket.json", "type": "button", "extend": { "name": "inventory_selected_icon_button", "namespace": "common" } }, "enchanting_panel/hold_icon": { "file": "ui/enchanting_screen_pocket.json", "type": "button", "extend": { "name": "inventory_take_progress_icon_button", "namespace": "common" } }, "enchanting_panel/selected_item_details_factory": { "file": "ui/enchanting_screen_pocket.json", "type": "factory", "extend": { "name": "selected_item_details_factory", "namespace": "common" } }, "enchanting_panel/item_lock_notification_factory": { "file": "ui/enchanting_screen_pocket.json", "type": "factory", "extend": { "name": "item_lock_notification_factory", "namespace": "common" } }, "enchanting_panel/flying_item_renderer": { "file": "ui/enchanting_screen_pocket.json", "type": "custom", "extend": { "name": "flying_item_renderer", "namespace": "common" } } }, "encyclopedia": { "encyclopedia_screen": { "file": "ui/encyclopedia_screen.json", "type": "screen", "extend": { "name": "screen_base", "namespace": "how_to_play_common" } }, "encyclopedia_selector_stack_panel": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "children": [ "how_to_play_selector_pane" ] }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "children": [ "overworld_category", "armor_button", "armor_stand_button", "banners_button", "beacons_button", "beds_button", "blocks_button", "book_and_quill_button", "chests_button", "conduits_button", "dyes_button", "farming_button", "fireworks_button", "fishing_button", "jigsaw_blocks_button", "mounts_button", "navigation_button", "nether_portals_button", "pets_button", "raids_button", "ranching_button", "scaffolding_button", "structure_blocks_button", "tools_button", "transportation_button", "trading_button", "weapons_button", "stands_and_tables_category", "anvil_button", "brewing_stand_button", "cauldron_button", "crafting_table_button", "enchanting_table_button", "furnace_button", "loom_button", "smithing_table_button", "redstone_engineering_category", "droppers_button", "dispensers_button", "hoppers_button", "jukebox_button", "redstone_button", "the_end_dimension_category", "the_end_button", "eye_of_ender_button", "end_cities_button", "elytra_button", "shulker_boxes_button", "options_and_cheats_category", "game_settings_button", "difficulty_button", "adventure_mode_button", "creative_mode_button", "commands_button", "host_and_player_options_button", "command_blocks_button", "realms_category", "realms_stories_button", "marketplace_category", "minecoins_button", "addons_button", "worlds_button", "textures_button", "skins_button", "mashups_button" ] }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/overworld_category": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "topic_category", "namespace": "how_to_play_common" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/armor_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "armor_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/armor_stand_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "armor_stand_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/banners_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "banners_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/beacons_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "beacons_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/beds_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "beds_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/blocks_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "blocks_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/book_and_quill_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "book_and_quill_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/chests_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "chests_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/conduits_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "conduits_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/dyes_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "dyes_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/farming_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "farming_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/fireworks_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "fireworks_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/fishing_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "fishing_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/jigsaw_blocks_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "jigsaw_blocks_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/mounts_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "mounts_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/navigation_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "navigation_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/nether_portals_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "nether_portals_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/pets_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "pets_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/raids_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "raids_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/ranching_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "ranching_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/scaffolding_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "scaffolding_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/structure_blocks_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "structure_blocks_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/tools_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "tools_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/transportation_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "transportation_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/trading_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "trading_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/weapons_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "weapons_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/stands_and_tables_category": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "topic_category", "namespace": "how_to_play_common" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/anvil_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "anvil_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/brewing_stand_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "brewing_stand_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/cauldron_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "cauldron_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/crafting_table_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "crafting_table_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/enchanting_table_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "enchanting_table_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/furnace_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "furnace_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/loom_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "loom_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/smithing_table_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "smithing_table_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/redstone_engineering_category": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "topic_category", "namespace": "how_to_play_common" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/droppers_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "droppers_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/dispensers_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "dispensers_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/hoppers_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "hoppers_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/jukebox_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "jukebox_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/redstone_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "redstone_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/the_end_dimension_category": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "topic_category", "namespace": "how_to_play_common" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/the_end_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "the_end_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/eye_of_ender_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "eye_of_ender_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/end_cities_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "end_cities_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/elytra_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "elytra_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/shulker_boxes_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "shulker_boxes_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/options_and_cheats_category": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "topic_category", "namespace": "how_to_play_common" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/game_settings_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "game_settings_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/difficulty_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "difficulty_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/adventure_mode_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "adventure_mode_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/creative_mode_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "creative_mode_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/commands_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "commands_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/host_and_player_options_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "host_and_player_options_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/command_blocks_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "command_blocks_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/realms_category": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "topic_category", "namespace": "how_to_play_common" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/realms_stories_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "realms_stories_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/marketplace_category": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "topic_category", "namespace": "how_to_play_common" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/minecoins_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "minecoins_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/addons_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "addons_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/worlds_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "worlds_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/textures_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "textures_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/skins_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "skins_button", "namespace": "encyclopedia" } }, "encyclopedia_selector_stack_panel/how_to_play_selector_pane/mashups_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "mashups_button", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "children": [ "general_tips_sections" ] }, "encyclopedia_section_content_panels/general_tips_sections": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "children": [ "section_contents_header", "armor_section", "armor_stand_section", "banners_section", "beacons_section", "beds_section", "blocks_section", "book_and_quill_section", "chests_section", "conduits_section", "dyes_section", "farming_section", "fireworks_section", "fishing_section", "jigsaw", "mounts_section", "navigation_section", "nether_portals_section", "pets_section", "raids_section", "ranching_section", "scaffolding_section", "structure_blocks_section", "tools_section", "transportation_section", "trading_section", "weapons_section", "anvil_section", "brewing_stand_section", "cauldron_section", "crafting_table_section", "enchanting_table_section", "furnace_section", "loom_section", "smithing_table_section", "droppers_section", "dispensers_section", "hoppers_section", "jukebox_section", "redstone_section", "the_end_section", "eye_of_ender_section", "end_cities_section", "elytra_section", "shulker_boxes_section", "game_settings_section", "difficulty_section", "adventure_mode_section", "creative_mode_section", "commands_section", "host_and_player_options_section", "command_blocks_section", "realms_stories_section", "minecoins_section", "addons_section", "worlds_section", "textures_section", "skins_section", "mashups_section", "section_contents_footer" ] }, "encyclopedia_section_content_panels/general_tips_sections/section_contents_header": { "file": "ui/encyclopedia_screen.json", "type": "input_panel", "extend": { "name": "section_contents_header", "namespace": "how_to_play_common" } }, "encyclopedia_section_content_panels/general_tips_sections/armor_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "armor_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/armor_stand_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "armor_stand_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/banners_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "banners_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/beacons_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "beacons_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/beds_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "beds_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/blocks_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "blocks_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/book_and_quill_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "book_and_quill_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/chests_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "chests_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/conduits_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "conduits_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/dyes_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "dyes_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/farming_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "farming_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/fireworks_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "fireworks_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/fishing_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "fishing_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/jigsaw": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "jigsaw_blocks_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/mounts_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "mounts_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/navigation_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "navigation_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/nether_portals_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "nether_portals_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/pets_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "pets_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/raids_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "raids_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/ranching_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "ranching_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/scaffolding_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "scaffolding_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/structure_blocks_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "structure_blocks_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/tools_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "tools_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/transportation_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "transportation_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/trading_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "trading_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/weapons_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "weapons_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/anvil_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "anvil_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/brewing_stand_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "brewing_stand_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/cauldron_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "cauldron_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/crafting_table_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "crafting_table_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/enchanting_table_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "enchanting_table_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/furnace_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "furnace_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/loom_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "loom_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/smithing_table_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "smithing_table_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/droppers_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "droppers_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/dispensers_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "dispensers_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/hoppers_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "hoppers_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/jukebox_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "jukebox_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/redstone_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "redstone_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/the_end_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "the_end_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/eye_of_ender_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "eye_of_ender_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/end_cities_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "end_cities_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/elytra_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "elytra_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/shulker_boxes_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "shulker_boxes_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/game_settings_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "game_settings_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/difficulty_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "difficulty_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/adventure_mode_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "adventure_mode_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/creative_mode_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "creative_mode_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/commands_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "commands_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/host_and_player_options_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "host_and_player_options_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/command_blocks_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "command_blocks_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/realms_stories_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "realms_stories_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/minecoins_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "minecoins_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/addons_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "addons_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/worlds_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "worlds_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/textures_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "textures_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/skins_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "skins_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/mashups_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "mashups_section", "namespace": "encyclopedia" } }, "encyclopedia_section_content_panels/general_tips_sections/section_contents_footer": { "file": "ui/encyclopedia_screen.json", "type": "input_panel", "extend": { "name": "section_contents_footer", "namespace": "how_to_play_common" } }, "adventure_mode_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "adventure_mode_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2" ] }, "adventure_mode_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "adventure_mode_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "adventure_mode_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "anvil_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "anvil_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "header_1", "paragraph_2", "padding_2", "header_2", "paragraph_3", "padding_3", "paragraph_4", "padding_4", "paragraph_5" ] }, "anvil_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "anvil_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "anvil_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "anvil_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "anvil_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "anvil_section/header_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "anvil_section/paragraph_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "anvil_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "anvil_section/paragraph_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "anvil_section/padding_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "anvil_section/paragraph_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "armor_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "armor_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "header_1", "paragraph_2", "padding_2", "paragraph_3", "padding_3", "paragraph_4", "padding_4", "header_2", "paragraph_5_keyboard", "paragraph_5_gamepad", "paragraph_5a_touch", "padding_5a_touch", "paragraph_5b_touch", "padding_5b_touch", "paragraph_5c_touch", "padding_5", "paragraph_6", "padding_6", "header_3", "paragraph_7" ] }, "armor_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_with_icons", "namespace": "how_to_play_common" } }, "armor_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "armor_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "armor_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "armor_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "armor_section/paragraph_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "armor_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "armor_section/paragraph_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "armor_section/padding_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "armor_section/header_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "armor_section/paragraph_5_keyboard": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "armor_section/paragraph_5_gamepad": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad", "namespace": "how_to_play_common" } }, "armor_section/paragraph_5a_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "armor_section/padding_5a_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "touch_padding", "namespace": "how_to_play_common" } }, "armor_section/paragraph_5b_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "armor_section/padding_5b_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "touch_padding", "namespace": "how_to_play_common" } }, "armor_section/paragraph_5c_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "armor_section/padding_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "armor_section/paragraph_6": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_with_icons", "namespace": "how_to_play_common" } }, "armor_section/padding_6": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "armor_section/header_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "armor_section/paragraph_7": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_with_icons", "namespace": "how_to_play_common" } }, "armor_stand_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "armor_stand_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "header_1", "paragraph_2_keyboard", "paragraph_2_gamepad", "paragraph_2_touch", "padding_2", "paragraph_3_keyboard", "paragraph_3_gamepad", "paragraph_3_touch", "padding_3", "header_2", "paragraph_4_keyboard", "paragraph_4_gamepad", "paragraph_4_touch", "padding_4", "header_3", "paragraph_5" ] }, "armor_stand_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "armor_stand_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "armor_stand_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "armor_stand_section/paragraph_2_keyboard": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "armor_stand_section/paragraph_2_gamepad": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad", "namespace": "how_to_play_common" } }, "armor_stand_section/paragraph_2_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "armor_stand_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "armor_stand_section/paragraph_3_keyboard": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "armor_stand_section/paragraph_3_gamepad": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad", "namespace": "how_to_play_common" } }, "armor_stand_section/paragraph_3_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "armor_stand_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "armor_stand_section/header_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "armor_stand_section/paragraph_4_keyboard": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "armor_stand_section/paragraph_4_gamepad": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad", "namespace": "how_to_play_common" } }, "armor_stand_section/paragraph_4_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "armor_stand_section/padding_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "armor_stand_section/header_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "armor_stand_section/paragraph_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "banners_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "banners_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2", "padding_2", "header_1", "paragraph_3", "padding_3", "paragraph_4", "padding_4", "paragraph_5", "padding_5", "paragraph_6", "padding_6", "paragraph_7", "padding_7", "header_2", "paragraph_8", "padding_8", "header_3", "paragraph_9" ] }, "banners_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "banners_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "banners_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "banners_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "banners_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "banners_section/paragraph_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "banners_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "banners_section/paragraph_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "banners_section/padding_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "banners_section/paragraph_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "banners_section/padding_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "banners_section/paragraph_6": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "banners_section/padding_6": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "banners_section/paragraph_7": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "banners_section/padding_7": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "banners_section/header_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "banners_section/paragraph_8": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "banners_section/padding_8": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "banners_section/header_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "banners_section/paragraph_9": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "beacons_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "beacons_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2", "padding_2", "header_1", "paragraph_3", "padding_3", "paragraph_4", "padding_4", "header_2", "paragraph_5", "padding_5", "paragraph_6", "padding_6", "paragraph_7", "padding_7", "paragraph_8" ] }, "beacons_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "beacons_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "beacons_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "beacons_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "beacons_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "beacons_section/paragraph_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "beacons_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "beacons_section/paragraph_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "beacons_section/padding_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "beacons_section/header_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "beacons_section/paragraph_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "beacons_section/padding_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "beacons_section/paragraph_6": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "beacons_section/padding_6": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "beacons_section/paragraph_7": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "beacons_section/padding_7": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "beacons_section/paragraph_8": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "conduits_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "conduits_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2", "padding_2", "header_1", "paragraph_3", "padding_3", "paragraph_4" ] }, "conduits_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "conduits_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "conduits_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "conduits_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "conduits_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "conduits_section/paragraph_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "conduits_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "conduits_section/paragraph_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "beds_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "beds_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2_keyboard", "paragraph_2_gamepad", "paragraph_2_touch", "padding_2", "paragraph_3", "padding_3", "paragraph_4", "padding_4", "paragraph_5" ] }, "beds_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "beds_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "beds_section/paragraph_2_keyboard": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "beds_section/paragraph_2_gamepad": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad", "namespace": "how_to_play_common" } }, "beds_section/paragraph_2_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "beds_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "beds_section/paragraph_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "beds_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "beds_section/paragraph_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "beds_section/padding_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "beds_section/paragraph_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "blocks_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "blocks_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2", "padding_2", "header_1", "paragraph_3", "padding_3", "header_2", "paragraph_4", "padding_4", "paragraph_5", "padding_5", "paragraph_6", "padding_6", "paragraph_7", "padding_7", "paragraph_8", "padding_8", "paragraph_9" ] }, "blocks_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "blocks_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "blocks_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "blocks_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "blocks_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "blocks_section/paragraph_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "blocks_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "blocks_section/header_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "blocks_section/paragraph_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "blocks_section/padding_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "blocks_section/paragraph_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "blocks_section/padding_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "blocks_section/paragraph_6": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "blocks_section/padding_6": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "blocks_section/paragraph_7": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "blocks_section/padding_7": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "blocks_section/paragraph_8": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "blocks_section/padding_8": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "blocks_section/paragraph_9": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "book_and_quill_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "book_and_quill_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1" ] }, "book_and_quill_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "brewing_stand_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "brewing_stand_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "header_1", "paragraph_2", "padding_2", "header_2", "paragraph_3", "padding_3", "paragraph_4" ] }, "brewing_stand_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "brewing_stand_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "brewing_stand_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "brewing_stand_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "brewing_stand_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "brewing_stand_section/header_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "brewing_stand_section/paragraph_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "brewing_stand_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "brewing_stand_section/paragraph_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "cauldron_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "cauldron_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "header_1", "paragraph_2_keyboard", "paragraph_2_gamepad", "paragraph_2_touch", "padding_2", "paragraph_3", "padding_3", "header_2", "paragraph_4_keyboard", "paragraph_4_gamepad", "paragraph_4_touch", "padding_4", "header_3", "paragraph_5_keyboard", "paragraph_5_gamepad", "paragraph_5_touch", "padding_5", "paragraph_6" ] }, "cauldron_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "cauldron_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "cauldron_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "cauldron_section/paragraph_2_keyboard": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "cauldron_section/paragraph_2_gamepad": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad", "namespace": "how_to_play_common" } }, "cauldron_section/paragraph_2_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_no_icons", "namespace": "how_to_play_common" } }, "cauldron_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "cauldron_section/paragraph_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "cauldron_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "cauldron_section/header_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "cauldron_section/paragraph_4_keyboard": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "cauldron_section/paragraph_4_gamepad": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad", "namespace": "how_to_play_common" } }, "cauldron_section/paragraph_4_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "cauldron_section/padding_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "cauldron_section/header_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "cauldron_section/paragraph_5_keyboard": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "cauldron_section/paragraph_5_gamepad": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad", "namespace": "how_to_play_common" } }, "cauldron_section/paragraph_5_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_no_icons", "namespace": "how_to_play_common" } }, "cauldron_section/padding_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "cauldron_section/paragraph_6": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "chests_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "chests_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1_keyboard", "paragraph_1_gamepad", "paragraph_1_touch", "padding_1", "paragraph_2", "padding_2", "paragraph_3" ] }, "chests_section/paragraph_1_keyboard": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "chests_section/paragraph_1_gamepad": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad", "namespace": "how_to_play_common" } }, "chests_section/paragraph_1_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "chests_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "chests_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "chests_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "chests_section/paragraph_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "command_blocks_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "command_blocks_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2", "padding_2", "paragraph_3", "padding_3", "paragraph_4", "padding_4", "paragraph_5", "paragraph_5_1", "paragraph_5_2", "paragraph_5_3", "padding_5", "paragraph_6", "paragraph_6_1", "paragraph_6_2", "padding_6", "paragraph_7", "paragraph_7_1", "paragraph_7_2", "padding_7", "paragraph_8" ] }, "command_blocks_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "command_blocks_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "command_blocks_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "command_blocks_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "command_blocks_section/paragraph_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "command_blocks_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "command_blocks_section/paragraph_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "command_blocks_section/padding_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "command_blocks_section/paragraph_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "command_blocks_section/paragraph_5_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "command_blocks_section/paragraph_5_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "command_blocks_section/paragraph_5_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "command_blocks_section/padding_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "command_blocks_section/paragraph_6": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "command_blocks_section/paragraph_6_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "command_blocks_section/paragraph_6_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "command_blocks_section/padding_6": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "command_blocks_section/paragraph_7": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "command_blocks_section/paragraph_7_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "command_blocks_section/paragraph_7_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "command_blocks_section/padding_7": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "command_blocks_section/paragraph_8": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "commands_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "commands_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2" ] }, "commands_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "commands_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "commands_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "crafting_table_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "crafting_table_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2_keyboard", "paragraph_2_gamepad", "paragraph_2_touch" ] }, "crafting_table_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "crafting_table_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "crafting_table_section/paragraph_2_keyboard": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "crafting_table_section/paragraph_2_gamepad": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad", "namespace": "how_to_play_common" } }, "crafting_table_section/paragraph_2_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "creative_mode_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "creative_mode_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "header_1", "paragraph_2", "padding_2", "paragraph_3", "padding_3", "header_2", "paragraph_4_keyboard", "paragraph_4_gamepad", "paragraph_4a_touch_joystick_tap", "paragraph_4a_touch_classic_dpad", "paragraph_4a_touch_joystick_crosshair", "padding_4a_touch", "paragraph_4b_touch_joystick_tap", "paragraph_4b_touch_classic_dpad", "paragraph_4b_touch_joystick_crosshair" ] }, "creative_mode_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "creative_mode_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "creative_mode_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "creative_mode_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "creative_mode_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "creative_mode_section/paragraph_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "creative_mode_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "creative_mode_section/header_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "creative_mode_section/paragraph_4_keyboard": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "creative_mode_section/paragraph_4_gamepad": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad", "namespace": "how_to_play_common" } }, "creative_mode_section/paragraph_4a_touch_joystick_tap": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_joystick_tap", "namespace": "how_to_play_common" } }, "creative_mode_section/paragraph_4a_touch_classic_dpad": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_classic_dpad", "namespace": "how_to_play_common" } }, "creative_mode_section/paragraph_4a_touch_joystick_crosshair": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_joystick_crosshair", "namespace": "how_to_play_common" } }, "creative_mode_section/padding_4a_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "touch_padding", "namespace": "how_to_play_common" } }, "creative_mode_section/paragraph_4b_touch_joystick_tap": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_joystick_tap", "namespace": "how_to_play_common" } }, "creative_mode_section/paragraph_4b_touch_classic_dpad": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_classic_dpad", "namespace": "how_to_play_common" } }, "creative_mode_section/paragraph_4b_touch_joystick_crosshair": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_joystick_crosshair", "namespace": "how_to_play_common" } }, "difficulty_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "difficulty_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "header_1", "paragraph_2", "padding_2", "header_2", "paragraph_3", "padding_3", "header_3", "paragraph_4", "padding_4", "header_4", "paragraph_5" ] }, "difficulty_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "difficulty_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "difficulty_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "difficulty_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "difficulty_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "difficulty_section/header_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "difficulty_section/paragraph_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "difficulty_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "difficulty_section/header_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "difficulty_section/paragraph_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "difficulty_section/padding_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "difficulty_section/header_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "difficulty_section/paragraph_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "dispensers_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "dispensers_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2_keyboard", "paragraph_2_gamepad", "paragraph_2_touch", "padding_2", "header_1", "paragraph_3", "padding_3", "paragraph_4" ] }, "dispensers_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "dispensers_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "dispensers_section/paragraph_2_keyboard": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "dispensers_section/paragraph_2_gamepad": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad", "namespace": "how_to_play_common" } }, "dispensers_section/paragraph_2_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "dispensers_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "dispensers_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "dispensers_section/paragraph_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "dispensers_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "dispensers_section/paragraph_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "droppers_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "droppers_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1_keyboard", "paragraph_1_gamepad", "paragraph_1_touch", "padding_1", "header_1", "paragraph_2" ] }, "droppers_section/paragraph_1_keyboard": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "droppers_section/paragraph_1_gamepad": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad", "namespace": "how_to_play_common" } }, "droppers_section/paragraph_1_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "droppers_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "droppers_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "droppers_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "dyes_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "dyes_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2", "padding_2", "paragraph_3", "padding_3", "paragraph_4", "padding_4", "paragraph_5", "padding_5", "paragraph_6", "padding_6", "paragraph_7" ] }, "dyes_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "dyes_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "dyes_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "dyes_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "dyes_section/paragraph_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "dyes_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "dyes_section/paragraph_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "dyes_section/padding_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "dyes_section/paragraph_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "dyes_section/padding_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "dyes_section/paragraph_6": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "dyes_section/padding_6": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "dyes_section/paragraph_7": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "elytra_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "elytra_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2", "padding_2", "header_1", "paragraph_3_keyboard", "paragraph_3_gamepad", "paragraph_3_touch", "padding_3", "paragraph_4", "paragraph_4_touch", "padding_4", "paragraph_5", "padding_5", "header_2", "paragraph_6" ] }, "elytra_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "elytra_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "elytra_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "elytra_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "elytra_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "elytra_section/paragraph_3_keyboard": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "elytra_section/paragraph_3_gamepad": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad", "namespace": "how_to_play_common" } }, "elytra_section/paragraph_3_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "elytra_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "elytra_section/paragraph_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_not_touch", "namespace": "how_to_play_common" } }, "elytra_section/paragraph_4_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_no_icons", "namespace": "how_to_play_common" } }, "elytra_section/padding_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "elytra_section/paragraph_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "elytra_section/padding_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "elytra_section/header_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "elytra_section/paragraph_6": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "enchanting_table_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "enchanting_table_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "header_1", "paragraph_2", "padding_2", "paragraph_3", "padding_3", "header_2", "paragraph_4", "padding_4", "header_3", "paragraph_5" ] }, "enchanting_table_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "enchanting_table_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "enchanting_table_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "enchanting_table_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "enchanting_table_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "enchanting_table_section/paragraph_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "enchanting_table_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "enchanting_table_section/header_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "enchanting_table_section/paragraph_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "enchanting_table_section/padding_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "enchanting_table_section/header_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "enchanting_table_section/paragraph_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "end_cities_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "end_cities_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2" ] }, "end_cities_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "end_cities_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "end_cities_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "eye_of_ender_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "eye_of_ender_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2" ] }, "eye_of_ender_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "eye_of_ender_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "eye_of_ender_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "farming_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "farming_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "header_1", "paragraph_2", "padding_2", "paragraph_3", "padding_3", "header_2", "paragraph_4", "padding_4", "paragraph_5", "padding_5", "paragraph_6", "padding_6", "paragraph_7" ] }, "farming_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "farming_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "farming_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "farming_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "farming_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "farming_section/paragraph_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "farming_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "farming_section/header_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "farming_section/paragraph_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "farming_section/padding_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "farming_section/paragraph_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "farming_section/padding_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "farming_section/paragraph_6": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "farming_section/padding_6": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "farming_section/paragraph_7": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "fireworks_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "fireworks_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2", "padding_2", "header_1", "paragraph_3_keyboard", "paragraph_3_gamepad", "paragraph_3_touch", "padding_3", "paragraph_4", "padding_4", "header_2", "paragraph_5", "padding_5", "paragraph_6", "padding_5a", "paragraph_6_1", "padding_5b", "paragraph_6_2", "padding_5c", "paragraph_6_3", "padding_5d", "paragraph_6_4", "padding_5e", "paragraph_6_5", "padding_5f", "paragraph_6_6", "padding_6", "header_3", "paragraph_7" ] }, "fireworks_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "fireworks_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "fireworks_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "fireworks_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "fireworks_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "fireworks_section/paragraph_3_keyboard": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "fireworks_section/paragraph_3_gamepad": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad", "namespace": "how_to_play_common" } }, "fireworks_section/paragraph_3_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "fireworks_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "fireworks_section/paragraph_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "fireworks_section/padding_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "fireworks_section/header_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "fireworks_section/paragraph_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "fireworks_section/padding_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "fireworks_section/paragraph_6": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "fireworks_section/padding_5a": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "fireworks_section/paragraph_6_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "fireworks_section/padding_5b": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "fireworks_section/paragraph_6_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "fireworks_section/padding_5c": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "fireworks_section/paragraph_6_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "fireworks_section/padding_5d": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "fireworks_section/paragraph_6_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "fireworks_section/padding_5e": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "fireworks_section/paragraph_6_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "fireworks_section/padding_5f": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "fireworks_section/paragraph_6_6": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "fireworks_section/padding_6": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "fireworks_section/header_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "fireworks_section/paragraph_7": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "jigsaw_blocks_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "jigsaw_blocks_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "header_1", "paragraph_2", "padding_2", "header_2", "paragraph_3", "padding_3", "paragraph_4", "padding_4", "paragraph_5", "padding_5", "paragraph_6", "padding_6", "paragraph_7", "padding_7", "paragraph_8", "padding_8", "paragraph_9" ] }, "jigsaw_blocks_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "jigsaw_blocks_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "jigsaw_blocks_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "jigsaw_blocks_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "jigsaw_blocks_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "jigsaw_blocks_section/header_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "jigsaw_blocks_section/paragraph_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "jigsaw_blocks_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "jigsaw_blocks_section/paragraph_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "jigsaw_blocks_section/padding_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "jigsaw_blocks_section/paragraph_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "jigsaw_blocks_section/padding_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "jigsaw_blocks_section/paragraph_6": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "jigsaw_blocks_section/padding_6": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "jigsaw_blocks_section/paragraph_7": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "jigsaw_blocks_section/padding_7": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "jigsaw_blocks_section/paragraph_8": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "jigsaw_blocks_section/padding_8": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "jigsaw_blocks_section/paragraph_9": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "fishing_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "fishing_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "header_1", "paragraph_2_keyboard", "paragraph_2_gamepad", "paragraph_2_touch", "padding_2", "header_2", "paragraph_3", "padding_3", "paragraph_4_keyboard", "paragraph_4_gamepad", "paragraph_4_touch" ] }, "fishing_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "fishing_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "fishing_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "fishing_section/paragraph_2_keyboard": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "fishing_section/paragraph_2_gamepad": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad", "namespace": "how_to_play_common" } }, "fishing_section/paragraph_2_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "fishing_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "fishing_section/header_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "fishing_section/paragraph_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "fishing_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "fishing_section/paragraph_4_keyboard": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "fishing_section/paragraph_4_gamepad": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad", "namespace": "how_to_play_common" } }, "fishing_section/paragraph_4_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "furnace_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "furnace_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2_keyboard", "paragraph_2_gamepad", "paragraph_2_touch", "padding_2", "paragraph_3" ] }, "furnace_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "furnace_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "furnace_section/paragraph_2_keyboard": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "furnace_section/paragraph_2_gamepad": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad", "namespace": "how_to_play_common" } }, "furnace_section/paragraph_2_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "furnace_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "furnace_section/paragraph_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "game_settings_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "game_settings_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2", "padding_2", "paragraph_3", "padding_3", "paragraph_4", "padding_4", "header_1", "paragraph_5", "padding_5", "paragraph_6", "padding_6", "paragraph_7", "paragraph_7_1", "paragraph_7_2", "padding_7", "paragraph_8", "padding_8", "header_2", "paragraph_9", "padding_9", "paragraph_10", "padding_10", "paragraph_11", "padding_11", "paragraph_12", "padding_12", "paragraph_13", "padding_13", "paragraph_14", "padding_14", "paragraph_15", "padding_15", "paragraph_16", "padding_16", "paragraph_17" ] }, "game_settings_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "game_settings_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "game_settings_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "game_settings_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "game_settings_section/paragraph_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "game_settings_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "game_settings_section/paragraph_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "game_settings_section/padding_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "game_settings_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "game_settings_section/paragraph_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "game_settings_section/padding_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "game_settings_section/paragraph_6": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "game_settings_section/padding_6": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "game_settings_section/paragraph_7": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "game_settings_section/paragraph_7_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "game_settings_section/paragraph_7_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "game_settings_section/padding_7": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "game_settings_section/paragraph_8": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "game_settings_section/padding_8": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "game_settings_section/header_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "game_settings_section/paragraph_9": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "game_settings_section/padding_9": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "game_settings_section/paragraph_10": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "game_settings_section/padding_10": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "game_settings_section/paragraph_11": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "game_settings_section/padding_11": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "game_settings_section/paragraph_12": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "game_settings_section/padding_12": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "game_settings_section/paragraph_13": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "game_settings_section/padding_13": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "game_settings_section/paragraph_14": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "game_settings_section/padding_14": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "game_settings_section/paragraph_15": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "game_settings_section/padding_15": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "game_settings_section/paragraph_16": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "game_settings_section/padding_16": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "game_settings_section/paragraph_17": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "hoppers_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "hoppers_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2", "padding_2", "header_1", "paragraph_3", "padding_3", "paragraph_4" ] }, "hoppers_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "hoppers_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "hoppers_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "hoppers_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "hoppers_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "hoppers_section/paragraph_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "hoppers_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "hoppers_section/paragraph_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "host_and_player_options_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "host_and_player_options_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1_not_touch", "paragraph_1_touch" ] }, "host_and_player_options_section/paragraph_1_not_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_not_touch", "namespace": "how_to_play_common" } }, "host_and_player_options_section/paragraph_1_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "jukebox_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "jukebox_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "header_1", "paragraph_2_not_touch", "paragraph_2_touch", "padding_2", "header_2", "paragraph_3", "padding_3", "paragraph_4", "padding_4", "paragraph_5", "padding_5", "paragraph_6", "padding_6", "header_3", "paragraph_7", "padding_7", "paragraph_8" ] }, "jukebox_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "jukebox_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "jukebox_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "jukebox_section/paragraph_2_not_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_not_touch", "namespace": "how_to_play_common" } }, "jukebox_section/paragraph_2_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "jukebox_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "jukebox_section/header_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "jukebox_section/paragraph_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "jukebox_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "jukebox_section/paragraph_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "jukebox_section/padding_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "jukebox_section/paragraph_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "jukebox_section/padding_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "jukebox_section/paragraph_6": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "jukebox_section/padding_6": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "jukebox_section/header_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "jukebox_section/paragraph_7": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "jukebox_section/padding_7": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "jukebox_section/paragraph_8": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "loom_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "loom_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "header_1", "paragraph_2", "padding_2", "paragraph_3", "padding_3", "header_2", "paragraph_4" ] }, "loom_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "loom_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "loom_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "loom_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "loom_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "loom_section/paragraph_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "loom_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "loom_section/header_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "loom_section/paragraph_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "realms_stories_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "realms_stories_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "header_1", "paragraph_2", "padding_2", "header_2", "paragraph_3", "padding_3", "header_3", "paragraph_4", "padding_4", "header_4", "paragraph_5", "padding_5", "header_5", "paragraph_6" ] }, "realms_stories_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "realms_stories_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "realms_stories_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "realms_stories_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_with_icons", "namespace": "how_to_play_common" } }, "realms_stories_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "realms_stories_section/header_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "realms_stories_section/paragraph_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "realms_stories_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "realms_stories_section/header_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "realms_stories_section/paragraph_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "realms_stories_section/padding_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "realms_stories_section/header_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "realms_stories_section/paragraph_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "realms_stories_section/padding_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "realms_stories_section/header_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "realms_stories_section/paragraph_6": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "smithing_table_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "smithing_table_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2", "padding_2", "header_1", "paragraph_3", "padding_3", "paragraph_4", "padding_4", "paragraph_5", "padding_5", "paragraph_6", "padding_6", "header_2", "paragraph_7", "padding_7", "paragraph_8", "padding_8", "paragraph_9" ] }, "smithing_table_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "smithing_table_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "smithing_table_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "smithing_table_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "smithing_table_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "smithing_table_section/paragraph_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "smithing_table_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "smithing_table_section/paragraph_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "smithing_table_section/padding_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "smithing_table_section/paragraph_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "smithing_table_section/padding_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "smithing_table_section/paragraph_6": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "smithing_table_section/padding_6": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "smithing_table_section/header_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "smithing_table_section/paragraph_7": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "smithing_table_section/padding_7": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "smithing_table_section/paragraph_8": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "smithing_table_section/padding_8": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "smithing_table_section/paragraph_9": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "mounts_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "mounts_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2", "padding_2", "header_1", "paragraph_3_not_touch", "paragraph_3_touch", "padding_3", "paragraph_4", "padding_4", "header_2", "paragraph_5", "padding_5", "paragraph_6", "padding_6", "paragraph_6b", "padding_6b", "paragraph_7", "padding_7", "paragraph_8", "padding_8", "header_3", "paragraph_9", "padding_9", "paragraph_10", "padding_10", "paragraph_11", "padding_11", "paragraph_12", "padding_12", "header_4", "paragraph_13", "padding_13", "paragraph_14", "padding_14", "header_5", "paragraph_15_not_touch", "paragraph_15a_touch", "padding_15", "paragraph_15b_touch" ] }, "mounts_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "mounts_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "mounts_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "mounts_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "mounts_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "mounts_section/paragraph_3_not_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_not_touch", "namespace": "how_to_play_common" } }, "mounts_section/paragraph_3_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "mounts_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "mounts_section/paragraph_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "mounts_section/padding_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "mounts_section/header_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "mounts_section/paragraph_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "mounts_section/padding_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "mounts_section/paragraph_6": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "mounts_section/padding_6": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "mounts_section/paragraph_6b": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "mounts_section/padding_6b": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "mounts_section/paragraph_7": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "mounts_section/padding_7": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "mounts_section/paragraph_8": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "mounts_section/padding_8": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "mounts_section/header_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "mounts_section/paragraph_9": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "mounts_section/padding_9": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "mounts_section/paragraph_10": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "mounts_section/padding_10": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "mounts_section/paragraph_11": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "mounts_section/padding_11": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "mounts_section/paragraph_12": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "mounts_section/padding_12": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "mounts_section/header_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "mounts_section/paragraph_13": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "mounts_section/padding_13": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "mounts_section/paragraph_14": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "mounts_section/padding_14": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "mounts_section/header_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "mounts_section/paragraph_15_not_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_not_touch", "namespace": "how_to_play_common" } }, "mounts_section/paragraph_15a_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_classic_dpad_spacing", "namespace": "how_to_play_common" } }, "mounts_section/padding_15": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "small_padding", "namespace": "how_to_play_common" } }, "mounts_section/paragraph_15b_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "navigation_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "navigation_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2", "padding_2", "header_1", "paragraph_3", "padding_3", "paragraph_4", "padding_4", "paragraph_5", "padding_5", "paragraph_6", "padding_6", "paragraph_7", "padding_7", "header_2", "paragraph_8", "padding_8", "paragraph_9", "padding_9", "header_3", "paragraph_10" ] }, "navigation_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "navigation_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "navigation_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "navigation_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "navigation_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "navigation_section/paragraph_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "navigation_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "navigation_section/paragraph_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "navigation_section/padding_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "navigation_section/paragraph_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "navigation_section/padding_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "navigation_section/paragraph_6": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "navigation_section/padding_6": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "navigation_section/paragraph_7": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "navigation_section/padding_7": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "navigation_section/header_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "navigation_section/paragraph_8": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "navigation_section/padding_8": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "navigation_section/paragraph_9": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "navigation_section/padding_9": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "navigation_section/header_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "navigation_section/paragraph_10": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "nether_portals_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "nether_portals_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2", "padding_2", "paragraph_3", "padding_3", "image_1" ] }, "nether_portals_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "nether_portals_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "nether_portals_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "nether_portals_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "nether_portals_section/paragraph_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "nether_portals_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "nether_portals_section/image_1": { "file": "ui/encyclopedia_screen.json", "type": "image", "extend": { "name": "image", "namespace": "how_to_play_common" } }, "pets_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "pets_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "header_1", "paragraph_1_not_touch", "paragraph_1_touch", "padding_1", "header_2", "paragraph_2", "padding_2", "header_3", "paragraph_3", "padding_3", "header_4", "paragraph_4" ] }, "pets_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "pets_section/paragraph_1_not_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_not_touch", "namespace": "how_to_play_common" } }, "pets_section/paragraph_1_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "pets_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "pets_section/header_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "pets_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "pets_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "pets_section/header_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "pets_section/paragraph_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "pets_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "pets_section/header_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "pets_section/paragraph_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "raids_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "raids_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2", "padding_2", "header_1", "paragraph_3" ] }, "raids_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "raids_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "raids_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "raids_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "raids_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "raids_section/paragraph_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "ranching_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "ranching_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "header_1", "paragraph_2", "padding_2", "paragraph_3", "padding_3", "header_2", "paragraph_4", "padding_4", "paragraph_5" ] }, "ranching_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "ranching_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "ranching_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "ranching_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "ranching_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "ranching_section/paragraph_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "ranching_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "ranching_section/header_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "ranching_section/paragraph_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "ranching_section/padding_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "ranching_section/paragraph_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "redstone_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "redstone_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "header_1", "paragraph_2", "padding_2", "paragraph_3", "padding_3", "paragraph_4", "padding_4", "paragraph_5" ] }, "redstone_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "redstone_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "redstone_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "redstone_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "redstone_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "redstone_section/paragraph_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "redstone_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "redstone_section/paragraph_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "redstone_section/padding_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "redstone_section/paragraph_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "scaffolding_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "scaffolding_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "header_1", "paragraph_1_keyboard", "paragraph_1_gamepad", "paragraph_1a_touch", "padding_1a_touch", "paragraph_1b_touch", "padding_1b_touch", "paragraph_1c_touch", "padding_1", "header_2", "paragraph_2", "image_1", "padding_2", "header_3", "paragraph_3", "padding_3" ] }, "scaffolding_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "scaffolding_section/paragraph_1_keyboard": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "scaffolding_section/paragraph_1_gamepad": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad", "namespace": "how_to_play_common" } }, "scaffolding_section/paragraph_1a_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_no_icons", "namespace": "how_to_play_common" } }, "scaffolding_section/padding_1a_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "touch_padding", "namespace": "how_to_play_common" } }, "scaffolding_section/paragraph_1b_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_classic_dpad_spacing", "namespace": "how_to_play_common" } }, "scaffolding_section/padding_1b_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "touch_padding", "namespace": "how_to_play_common" } }, "scaffolding_section/paragraph_1c_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "scaffolding_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "scaffolding_section/header_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "scaffolding_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "scaffolding_section/image_1": { "file": "ui/encyclopedia_screen.json", "type": "image", "extend": { "name": "image", "namespace": "how_to_play_common" } }, "scaffolding_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "scaffolding_section/header_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "scaffolding_section/paragraph_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "scaffolding_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "structure_blocks_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "structure_blocks_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "header_1", "paragraph_2", "padding_2", "header_2", "paragraph_3", "padding_3", "paragraph_4", "padding_4", "paragraph_5", "padding_5", "paragraph_6", "padding_6", "paragraph_7", "padding_7", "header_3", "paragraph_8", "padding_8", "paragraph_9_keyboard", "paragraph_9_gamepad", "paragraph_9_touch", "padding_9", "header_4", "paragraph_10", "padding_10", "header_5", "paragraph_11", "padding_11", "paragraph_12", "padding_12", "paragraph_13", "padding_13", "header_6", "paragraph_14", "padding_14", "paragraph_15", "padding_15", "header_7", "paragraph_16", "padding_16", "paragraph_17" ] }, "structure_blocks_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "structure_blocks_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "structure_blocks_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "structure_blocks_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "structure_blocks_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "structure_blocks_section/header_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "structure_blocks_section/paragraph_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "structure_blocks_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "structure_blocks_section/paragraph_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "structure_blocks_section/padding_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "structure_blocks_section/paragraph_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "structure_blocks_section/padding_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "structure_blocks_section/paragraph_6": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "structure_blocks_section/padding_6": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "structure_blocks_section/paragraph_7": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "structure_blocks_section/padding_7": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "structure_blocks_section/header_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "structure_blocks_section/paragraph_8": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "structure_blocks_section/padding_8": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "structure_blocks_section/paragraph_9_keyboard": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "structure_blocks_section/paragraph_9_gamepad": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad", "namespace": "how_to_play_common" } }, "structure_blocks_section/paragraph_9_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "structure_blocks_section/padding_9": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "structure_blocks_section/header_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "structure_blocks_section/paragraph_10": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "structure_blocks_section/padding_10": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "structure_blocks_section/header_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "structure_blocks_section/paragraph_11": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "structure_blocks_section/padding_11": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "structure_blocks_section/paragraph_12": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "structure_blocks_section/padding_12": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "structure_blocks_section/paragraph_13": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "structure_blocks_section/padding_13": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "structure_blocks_section/header_6": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "structure_blocks_section/paragraph_14": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "structure_blocks_section/padding_14": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "structure_blocks_section/paragraph_15": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "structure_blocks_section/padding_15": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "structure_blocks_section/header_7": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "structure_blocks_section/paragraph_16": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "structure_blocks_section/padding_16": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "structure_blocks_section/paragraph_17": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "shulker_boxes_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "shulker_boxes_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1" ] }, "shulker_boxes_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "the_end_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "the_end_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2", "padding_2", "header_1", "paragraph_3", "padding_3", "paragraph_4", "padding_4", "paragraph_5" ] }, "the_end_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "the_end_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "the_end_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "the_end_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "the_end_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "the_end_section/paragraph_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "the_end_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "the_end_section/paragraph_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "the_end_section/padding_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "the_end_section/paragraph_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "tools_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "tools_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2", "padding_2", "header_1", "paragraph_3", "padding_3", "paragraph_4", "padding_4", "paragraph_5_not_touch", "paragraph_5_touch", "padding_5", "paragraph_6_not_touch", "paragraph_6_touch", "padding_6", "paragraph_7", "padding_7", "header_2", "paragraph_8", "padding_8", "paragraph_9", "padding_9", "paragraph_10", "padding_10", "paragraph_11", "padding_11", "paragraph_12" ] }, "tools_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "tools_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "tools_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "tools_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "tools_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "tools_section/paragraph_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "tools_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "tools_section/paragraph_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "tools_section/padding_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "tools_section/paragraph_5_not_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_not_touch", "namespace": "how_to_play_common" } }, "tools_section/paragraph_5_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "tools_section/padding_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "tools_section/paragraph_6_not_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_not_touch", "namespace": "how_to_play_common" } }, "tools_section/paragraph_6_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "tools_section/padding_6": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "tools_section/paragraph_7": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "tools_section/padding_7": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "tools_section/header_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "tools_section/paragraph_8": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "tools_section/padding_8": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "tools_section/paragraph_9": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "tools_section/padding_9": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "tools_section/paragraph_10": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "tools_section/padding_10": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "tools_section/paragraph_11": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "tools_section/padding_11": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "tools_section/paragraph_12": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "trading_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "trading_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "header_1", "paragraph_2", "padding_2", "paragraph_3", "padding_3", "paragraph_4" ] }, "trading_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "trading_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "trading_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "trading_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "trading_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "trading_section/paragraph_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "trading_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "trading_section/paragraph_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "transportation_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "transportation_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "header_1", "paragraph_2", "paragraph_2_touch", "padding_2", "paragraph_3_keyboard", "paragraph_3_gamepad", "paragraph_3a_touch", "padding_3a", "paragraph_3b_touch", "padding_3b", "paragraph_3c_touch", "padding_3", "header_2", "paragraph_4", "paragraph_4_touch", "padding_4", "paragraph_5_keyboard", "paragraph_5_gamepad", "paragraph_5a_touch", "padding_5a", "paragraph_5b_touch", "padding_5b", "paragraph_5c_touch" ] }, "transportation_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "transportation_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "transportation_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "transportation_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_not_touch", "namespace": "how_to_play_common" } }, "transportation_section/paragraph_2_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "transportation_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "transportation_section/paragraph_3_keyboard": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "transportation_section/paragraph_3_gamepad": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad", "namespace": "how_to_play_common" } }, "transportation_section/paragraph_3a_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "transportation_section/padding_3a": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "transportation_section/paragraph_3b_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_classic_dpad_spacing", "namespace": "how_to_play_common" } }, "transportation_section/padding_3b": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "transportation_section/paragraph_3c_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "transportation_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "transportation_section/header_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "transportation_section/paragraph_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_not_touch", "namespace": "how_to_play_common" } }, "transportation_section/paragraph_4_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "transportation_section/padding_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "transportation_section/paragraph_5_keyboard": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "transportation_section/paragraph_5_gamepad": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad", "namespace": "how_to_play_common" } }, "transportation_section/paragraph_5a_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "transportation_section/padding_5a": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "transportation_section/paragraph_5b_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_classic_dpad_spacing", "namespace": "how_to_play_common" } }, "transportation_section/padding_5b": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "transportation_section/paragraph_5c_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "weapons_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "weapons_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "header_1", "paragraph_1", "padding_1", "paragraph_2_not_touch", "paragraph_2_touch", "padding_2", "header_2", "paragraph_3_not_touch", "paragraph_3_touch", "padding_3", "paragraph_4", "padding_5", "header_3", "paragraph_5_not_touch", "paragraph_5a_touch", "padding_5a_touch", "paragraph_5b_touch", "padding_5b_touch", "paragraph_5c_touch", "padding_5c_touch", "paragraph_5d_touch", "padding_6", "header_4", "paragraph_6_not_touch", "paragraph_6_touch", "padding_7", "header_5", "paragraph_7" ] }, "weapons_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "weapons_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "weapons_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "weapons_section/paragraph_2_not_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_not_touch", "namespace": "how_to_play_common" } }, "weapons_section/paragraph_2_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "weapons_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "weapons_section/header_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "weapons_section/paragraph_3_not_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_not_touch", "namespace": "how_to_play_common" } }, "weapons_section/paragraph_3_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_no_icons", "namespace": "how_to_play_common" } }, "weapons_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "weapons_section/paragraph_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "weapons_section/padding_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "weapons_section/header_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "weapons_section/paragraph_5_not_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_not_touch", "namespace": "how_to_play_common" } }, "weapons_section/paragraph_5a_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_no_icons", "namespace": "how_to_play_common" } }, "weapons_section/padding_5a_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "touch_padding", "namespace": "how_to_play_common" } }, "weapons_section/paragraph_5b_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_no_icons", "namespace": "how_to_play_common" } }, "weapons_section/padding_5b_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "touch_padding", "namespace": "how_to_play_common" } }, "weapons_section/paragraph_5c_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_no_icons", "namespace": "how_to_play_common" } }, "weapons_section/padding_5c_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "touch_padding", "namespace": "how_to_play_common" } }, "weapons_section/paragraph_5d_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "weapons_section/padding_6": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "weapons_section/header_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "weapons_section/paragraph_6_not_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_not_touch", "namespace": "how_to_play_common" } }, "weapons_section/paragraph_6_touch": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_no_icons", "namespace": "how_to_play_common" } }, "weapons_section/padding_7": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "weapons_section/header_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "weapons_section/paragraph_7": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "minecoins_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "minecoins_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2", "padding_2", "get_minecoins_button", "padding_3", "header_1", "paragraph_3" ] }, "minecoins_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "minecoins_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "minecoins_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "minecoins_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "minecoins_section/get_minecoins_button": { "file": "ui/encyclopedia_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "minecoins_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "minecoins_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "minecoins_section/paragraph_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "addons_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "addons_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2", "padding_2", "header_1", "paragraph_3", "padding_3", "paragraph_4", "padding_4", "paragraph_5", "addons_faq_button" ] }, "addons_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "addons_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "addons_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "addons_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "addons_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "addons_section/paragraph_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "addons_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "addons_section/paragraph_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "addons_section/padding_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "addons_section/paragraph_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "addons_section/addons_faq_button": { "file": "ui/encyclopedia_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "worlds_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "worlds_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2", "padding_2", "paragraph_3", "padding_3", "paragraph_4", "padding_4", "header_1", "paragraph_5", "padding_5", "paragraph_6", "padding_6", "header_2", "paragraph_7", "padding_7", "paragraph_8", "padding_8", "header_3", "paragraph_9", "padding_9", "paragraph_10", "padding_10", "header_4", "paragraph_11", "padding_11", "paragraph_12", "padding_12" ] }, "worlds_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "worlds_section/padding_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "worlds_section/paragraph_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "worlds_section/padding_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "worlds_section/paragraph_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "worlds_section/padding_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "worlds_section/paragraph_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "worlds_section/padding_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "worlds_section/header_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "worlds_section/paragraph_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "worlds_section/padding_5": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "worlds_section/paragraph_6": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "worlds_section/padding_6": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "worlds_section/header_2": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "worlds_section/paragraph_7": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "worlds_section/padding_7": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "worlds_section/paragraph_8": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "worlds_section/padding_8": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "worlds_section/header_3": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "worlds_section/paragraph_9": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "worlds_section/padding_9": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "worlds_section/paragraph_10": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "worlds_section/padding_10": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "worlds_section/header_4": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "worlds_section/paragraph_11": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "worlds_section/padding_11": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "worlds_section/paragraph_12": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "worlds_section/padding_12": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "textures_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "textures_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1" ] }, "textures_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "skins_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "skins_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1" ] }, "skins_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "mashups_button": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "mashups_section": { "file": "ui/encyclopedia_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1" ] }, "mashups_section/paragraph_1": { "file": "ui/encyclopedia_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } } }, "expanded_skin_pack": { "banner_fill": { "file": "ui/expanded_skin_pack_screen.json", "type": "image" }, "title_label": { "file": "ui/expanded_skin_pack_screen.json", "type": "label" }, "label": { "file": "ui/expanded_skin_pack_screen.json", "type": "label" }, "undo_image": { "file": "ui/expanded_skin_pack_screen.json", "type": "image" }, "lock_icon": { "file": "ui/expanded_skin_pack_screen.json", "type": "image" }, "skin_button": { "file": "ui/expanded_skin_pack_screen.json", "type": "button", "children": [ "hover", "pressed" ] }, "skin_button/hover": { "file": "ui/expanded_skin_pack_screen.json", "type": "image", "extend": { "name": "focus_border_white", "namespace": "common" } }, "skin_button/pressed": { "file": "ui/expanded_skin_pack_screen.json", "type": "image", "extend": { "name": "focus_border_white", "namespace": "common" } }, "skin_rotation_arrows": { "file": "ui/expanded_skin_pack_screen.json", "type": "image" }, "skin_viewer_panel": { "file": "ui/expanded_skin_pack_screen.json", "type": "input_panel", "children": [ "skin_model_panel", "lock" ] }, "skin_viewer_panel/skin_model_panel": { "file": "ui/expanded_skin_pack_screen.json", "type": "panel", "children": [ "skin_model" ] }, "skin_viewer_panel/skin_model_panel/skin_model": { "file": "ui/expanded_skin_pack_screen.json", "type": "custom" }, "skin_viewer_panel/lock": { "file": "ui/expanded_skin_pack_screen.json", "type": "image", "extend": { "name": "lock_icon", "namespace": "expanded_skin_pack" } }, "undo_skin_button": { "file": "ui/expanded_skin_pack_screen.json", "type": "button", "extend": { "name": "light_glyph_button", "namespace": "common_buttons" } }, "confirm_skin_button": { "file": "ui/expanded_skin_pack_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "stack_item": { "file": "ui/expanded_skin_pack_screen.json", "type": "panel" }, "accept_skin_panel": { "file": "ui/expanded_skin_pack_screen.json", "type": "stack_panel", "children": [ "stack_item_0", "stack_item_1" ] }, "accept_skin_panel/stack_item_0": { "file": "ui/expanded_skin_pack_screen.json", "type": "panel", "extend": { "name": "stack_item", "namespace": "expanded_skin_pack" }, "children": [ "undo_btn" ] }, "accept_skin_panel/stack_item_0/undo_btn": { "file": "ui/expanded_skin_pack_screen.json", "type": "button", "extend": { "name": "undo_skin_button", "namespace": "expanded_skin_pack" } }, "accept_skin_panel/stack_item_1": { "file": "ui/expanded_skin_pack_screen.json", "type": "panel", "extend": { "name": "stack_item", "namespace": "expanded_skin_pack" }, "children": [ "confirm_button" ] }, "accept_skin_panel/stack_item_1/confirm_button": { "file": "ui/expanded_skin_pack_screen.json", "type": "button", "extend": { "name": "confirm_skin_button", "namespace": "expanded_skin_pack" } }, "preview_skin_panel": { "file": "ui/expanded_skin_pack_screen.json", "type": "panel", "children": [ "preview", "button_frame" ] }, "preview_skin_panel/preview": { "file": "ui/expanded_skin_pack_screen.json", "type": "input_panel", "extend": { "name": "skin_viewer_panel", "namespace": "expanded_skin_pack" } }, "preview_skin_panel/button_frame": { "file": "ui/expanded_skin_pack_screen.json", "type": "stack_panel", "children": [ "stack_item_0", "stack_item_1" ] }, "preview_skin_panel/button_frame/stack_item_0": { "file": "ui/expanded_skin_pack_screen.json", "type": "panel", "extend": { "name": "stack_item", "namespace": "expanded_skin_pack" }, "children": [ "rotation" ] }, "preview_skin_panel/button_frame/stack_item_0/rotation": { "file": "ui/expanded_skin_pack_screen.json", "type": "image", "extend": { "name": "skin_rotation_arrows", "namespace": "expanded_skin_pack" } }, "preview_skin_panel/button_frame/stack_item_1": { "file": "ui/expanded_skin_pack_screen.json", "type": "panel", "extend": { "name": "stack_item", "namespace": "expanded_skin_pack" }, "children": [ "accept" ] }, "preview_skin_panel/button_frame/stack_item_1/accept": { "file": "ui/expanded_skin_pack_screen.json", "type": "stack_panel", "extend": { "name": "accept_skin_panel", "namespace": "expanded_skin_pack" } }, "skin_model": { "file": "ui/expanded_skin_pack_screen.json", "type": "custom" }, "scrolling_content": { "file": "ui/expanded_skin_pack_screen.json", "type": "stack_panel", "children": [ "padding_0", "pack_info_panel", "skin_grid_panel" ] }, "scrolling_content/padding_0": { "file": "ui/expanded_skin_pack_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "scrolling_content/pack_info_panel": { "file": "ui/expanded_skin_pack_screen.json", "type": "panel", "children": [ "pack_info_panel" ] }, "scrolling_content/pack_info_panel/pack_info_panel": { "file": "ui/expanded_skin_pack_screen.json", "type": "stack_panel", "extend": { "name": "pack_info_panel", "namespace": "expanded_skin_pack" } }, "scrolling_content/skin_grid_panel": { "file": "ui/expanded_skin_pack_screen.json", "type": "panel", "children": [ "skins_grid" ] }, "scrolling_content/skin_grid_panel/skins_grid": { "file": "ui/expanded_skin_pack_screen.json", "type": "grid", "extend": { "name": "skins_grid", "namespace": "expanded_skin_pack" } }, "pack_info_panel": { "file": "ui/expanded_skin_pack_screen.json", "type": "stack_panel", "children": [ "lock_icon_panel", "pack_info_panel" ] }, "pack_info_panel/lock_icon_panel": { "file": "ui/expanded_skin_pack_screen.json", "type": "panel", "children": [ "lock_icon" ] }, "pack_info_panel/lock_icon_panel/lock_icon": { "file": "ui/expanded_skin_pack_screen.json", "type": "image", "extend": { "name": "lock_icon", "namespace": "expanded_skin_pack" } }, "pack_info_panel/pack_info_panel": { "file": "ui/expanded_skin_pack_screen.json", "type": "stack_panel", "children": [ "pack_name", "creator_name" ] }, "pack_info_panel/pack_info_panel/pack_name": { "file": "ui/expanded_skin_pack_screen.json", "type": "label" }, "pack_info_panel/pack_info_panel/creator_name": { "file": "ui/expanded_skin_pack_screen.json", "type": "label" }, "skins_grid_item": { "file": "ui/expanded_skin_pack_screen.json", "type": "panel", "children": [ "clip", "lock", "button" ] }, "skins_grid_item/clip": { "file": "ui/expanded_skin_pack_screen.json", "type": "panel", "children": [ "model" ] }, "skins_grid_item/clip/model": { "file": "ui/expanded_skin_pack_screen.json", "type": "custom", "extend": { "name": "skin_model", "namespace": "expanded_skin_pack" } }, "skins_grid_item/lock": { "file": "ui/expanded_skin_pack_screen.json", "type": "image", "extend": { "name": "lock_icon", "namespace": "expanded_skin_pack" } }, "skins_grid_item/button": { "file": "ui/expanded_skin_pack_screen.json", "type": "button", "extend": { "name": "select_skin_button", "namespace": "expanded_skin_pack" } }, "skins_grid": { "file": "ui/expanded_skin_pack_screen.json", "type": "grid" }, "select_skin_button": { "file": "ui/expanded_skin_pack_screen.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed" ] }, "select_skin_button/default": { "file": "ui/expanded_skin_pack_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "select_skin_button/hover": { "file": "ui/expanded_skin_pack_screen.json", "type": "image", "extend": { "name": "focus_border_white", "namespace": "common" } }, "select_skin_button/pressed": { "file": "ui/expanded_skin_pack_screen.json", "type": "image", "extend": { "name": "focus_border_white", "namespace": "common" } }, "all_skins_content": { "file": "ui/expanded_skin_pack_screen.json", "type": "input_panel", "children": [ "scrolling_frame" ] }, "all_skins_content/scrolling_frame": { "file": "ui/expanded_skin_pack_screen.json", "type": "panel", "children": [ "change_skin_scroll" ] }, "all_skins_content/scrolling_frame/change_skin_scroll": { "file": "ui/expanded_skin_pack_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "all_skins_frame": { "file": "ui/expanded_skin_pack_screen.json", "type": "panel", "children": [ "all_skins_content" ] }, "all_skins_frame/all_skins_content": { "file": "ui/expanded_skin_pack_screen.json", "type": "input_panel", "extend": { "name": "all_skins_content", "namespace": "expanded_skin_pack" } }, "title_bar": { "file": "ui/expanded_skin_pack_screen.json", "type": "stack_panel", "children": [ "padding_0", "fill_panel", "padding_1", "skin_name_holder", "padding_2" ] }, "title_bar/padding_0": { "file": "ui/expanded_skin_pack_screen.json", "type": "panel" }, "title_bar/fill_panel": { "file": "ui/expanded_skin_pack_screen.json", "type": "panel", "children": [ "title_holder" ] }, "title_bar/fill_panel/title_holder": { "file": "ui/expanded_skin_pack_screen.json", "type": "panel", "children": [ "change_skin_title" ] }, "title_bar/fill_panel/title_holder/change_skin_title": { "file": "ui/expanded_skin_pack_screen.json", "type": "label", "extend": { "name": "title_label", "namespace": "expanded_skin_pack" } }, "title_bar/padding_1": { "file": "ui/expanded_skin_pack_screen.json", "type": "panel" }, "title_bar/skin_name_holder": { "file": "ui/expanded_skin_pack_screen.json", "type": "panel", "children": [ "preview_skin_name" ] }, "title_bar/skin_name_holder/preview_skin_name": { "file": "ui/expanded_skin_pack_screen.json", "type": "label", "extend": { "name": "title_label", "namespace": "expanded_skin_pack" } }, "title_bar/padding_2": { "file": "ui/expanded_skin_pack_screen.json", "type": "panel" }, "content": { "file": "ui/expanded_skin_pack_screen.json", "type": "panel", "children": [ "title", "selector_area", "content_area", "section_divider" ] }, "content/title": { "file": "ui/expanded_skin_pack_screen.json", "type": "stack_panel", "extend": { "name": "title_bar", "namespace": "expanded_skin_pack" } }, "content/selector_area": { "file": "ui/expanded_skin_pack_screen.json", "type": "input_panel", "extend": { "name": "selector_area", "namespace": "expanded_skin_pack" } }, "content/content_area": { "file": "ui/expanded_skin_pack_screen.json", "type": "input_panel", "extend": { "name": "content_area", "namespace": "expanded_skin_pack" } }, "content/section_divider": { "file": "ui/expanded_skin_pack_screen.json", "type": "image", "extend": { "name": "section_divider", "namespace": "expanded_skin_pack" } }, "expanded_skin_pack_screen": { "file": "ui/expanded_skin_pack_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "skin_picker_screen_content": { "file": "ui/expanded_skin_pack_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" }, "children": [ "bg", "container" ] }, "skin_picker_screen_content/bg": { "file": "ui/expanded_skin_pack_screen.json", "type": "stack_panel", "extend": { "name": "fullscreen_header", "namespace": "common" } }, "skin_picker_screen_content/container": { "file": "ui/expanded_skin_pack_screen.json", "type": "panel", "children": [ "content" ] }, "skin_picker_screen_content/container/content": { "file": "ui/expanded_skin_pack_screen.json", "type": "panel", "extend": { "name": "content", "namespace": "expanded_skin_pack" } }, "scrollable_selector_area_content": { "file": "ui/expanded_skin_pack_screen.json", "type": "panel" }, "selector_area": { "file": "ui/expanded_skin_pack_screen.json", "type": "input_panel", "extend": { "name": "modal_area_panel_base", "namespace": "common" }, "children": [ "all_skins", "inactive_modal_pane_fade" ] }, "selector_area/all_skins": { "file": "ui/expanded_skin_pack_screen.json", "type": "panel", "extend": { "name": "all_skins_frame", "namespace": "expanded_skin_pack" } }, "selector_area/inactive_modal_pane_fade": { "file": "ui/expanded_skin_pack_screen.json", "type": "image", "extend": { "name": "inactive_modal_pane_fade", "namespace": "common" } }, "content_area": { "file": "ui/expanded_skin_pack_screen.json", "type": "input_panel", "extend": { "name": "modal_area_panel_base", "namespace": "common" }, "children": [ "preview_skin", "inactive_modal_pane_fade" ] }, "content_area/preview_skin": { "file": "ui/expanded_skin_pack_screen.json", "type": "panel", "extend": { "name": "preview_skin_panel", "namespace": "expanded_skin_pack" } }, "content_area/inactive_modal_pane_fade": { "file": "ui/expanded_skin_pack_screen.json", "type": "image", "extend": { "name": "inactive_modal_pane_fade", "namespace": "common" } }, "section_divider": { "file": "ui/expanded_skin_pack_screen.json", "type": "image" } }, "feed_common": { "top_bar_gradient": { "file": "ui/feed_common.json", "type": "custom" }, "label": { "file": "ui/feed_common.json", "type": "label" }, "smooth_label": { "file": "ui/feed_common.json", "type": "label", "extend": { "name": "label", "namespace": "feed_common" } }, "share_label": { "file": "ui/feed_common.json", "type": "label", "extend": { "name": "smooth_label", "namespace": "feed_common" } }, "title_label": { "file": "ui/feed_common.json", "type": "label", "extend": { "name": "label", "namespace": "feed_common" } }, "feed_label": { "file": "ui/feed_common.json", "type": "label", "extend": { "name": "label", "namespace": "feed_common" } }, "item_label": { "file": "ui/feed_common.json", "type": "label", "extend": { "name": "label", "namespace": "feed_common" } }, "return_label": { "file": "ui/feed_common.json", "type": "label", "extend": { "name": "label", "namespace": "feed_common" } }, "prev_label": { "file": "ui/feed_common.json", "type": "label", "extend": { "name": "label", "namespace": "feed_common" } }, "next_label": { "file": "ui/feed_common.json", "type": "label", "extend": { "name": "label", "namespace": "feed_common" } }, "delete_label": { "file": "ui/feed_common.json", "type": "label", "extend": { "name": "smooth_label", "namespace": "feed_common" } }, "report_to_club_label": { "file": "ui/feed_common.json", "type": "label", "extend": { "name": "smooth_label", "namespace": "feed_common" } }, "report_to_xbox_label": { "file": "ui/feed_common.json", "type": "label", "extend": { "name": "smooth_label", "namespace": "feed_common" } }, "new_post_header_text": { "file": "ui/feed_common.json", "type": "label" }, "feed_button": { "file": "ui/feed_common.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "return_button": { "file": "ui/feed_common.json", "type": "button", "extend": { "name": "transparent_content_button", "namespace": "common_buttons" } }, "prev_button": { "file": "ui/feed_common.json", "type": "button", "extend": { "name": "transparent_content_button", "namespace": "common_buttons" } }, "prev_panel": { "file": "ui/feed_common.json", "type": "stack_panel", "children": [ "padding_1", "lab_panel" ] }, "prev_panel/padding_1": { "file": "ui/feed_common.json", "type": "panel" }, "prev_panel/lab_panel": { "file": "ui/feed_common.json", "type": "stack_panel", "children": [ "vert_pad", "prevlab" ] }, "prev_panel/lab_panel/vert_pad": { "file": "ui/feed_common.json", "type": "panel" }, "prev_panel/lab_panel/prevlab": { "file": "ui/feed_common.json", "type": "label", "extend": { "name": "prev_label", "namespace": "feed_common" } }, "next_button": { "file": "ui/feed_common.json", "type": "button", "extend": { "name": "transparent_content_button", "namespace": "common_buttons" } }, "next_panel": { "file": "ui/feed_common.json", "type": "stack_panel", "children": [ "lab_panel2", "padding_2" ] }, "next_panel/lab_panel2": { "file": "ui/feed_common.json", "type": "stack_panel", "children": [ "vert_pad2", "nextlab" ] }, "next_panel/lab_panel2/vert_pad2": { "file": "ui/feed_common.json", "type": "panel" }, "next_panel/lab_panel2/nextlab": { "file": "ui/feed_common.json", "type": "label", "extend": { "name": "next_label", "namespace": "feed_common" } }, "next_panel/padding_2": { "file": "ui/feed_common.json", "type": "panel" }, "like_button": { "file": "ui/feed_common.json", "type": "button", "extend": { "name": "feed_button", "namespace": "feed_common" } }, "delete_button": { "file": "ui/feed_common.json", "type": "button", "extend": { "name": "feed_button", "namespace": "feed_common" } }, "report_to_xbox_button": { "file": "ui/feed_common.json", "type": "button", "extend": { "name": "feed_button", "namespace": "feed_common" } }, "report_to_club_button": { "file": "ui/feed_common.json", "type": "button", "extend": { "name": "feed_button", "namespace": "feed_common" } }, "options_button": { "file": "ui/feed_common.json", "type": "button", "extend": { "name": "feed_button", "namespace": "feed_common" } }, "options_close_button_high_contrast": { "file": "ui/feed_common.json", "type": "button", "extend": { "name": "close_button", "namespace": "common" }, "children": [ "background", "default", "hover", "pressed" ] }, "options_close_button_high_contrast/background": { "file": "ui/feed_common.json", "type": "image" }, "options_close_button_high_contrast/default": { "file": "ui/feed_common.json", "type": "panel", "extend": { "name": "close_button_panel", "namespace": "common" } }, "options_close_button_high_contrast/hover": { "file": "ui/feed_common.json", "type": "panel", "extend": { "name": "close_button_panel", "namespace": "common" } }, "options_close_button_high_contrast/pressed": { "file": "ui/feed_common.json", "type": "panel", "extend": { "name": "close_button_panel", "namespace": "common" } }, "share_button": { "file": "ui/feed_common.json", "type": "button", "extend": { "name": "transparent_content_button", "namespace": "common_buttons" } }, "spacing_gap": { "file": "ui/feed_common.json", "type": "panel" }, "platform_icon": { "file": "ui/feed_common.json", "type": "image" }, "platform_icon_panel": { "file": "ui/feed_common.json", "type": "panel", "children": [ "platform_icon" ] }, "platform_icon_panel/platform_icon": { "file": "ui/feed_common.json", "type": "image", "extend": { "name": "platform_icon", "namespace": "feed_common" } }, "account_link_image": { "file": "ui/feed_common.json", "type": "image" }, "account_link_icon": { "file": "ui/feed_common.json", "type": "stack_panel", "children": [ "space_01", "account_link_image", "space_02" ] }, "account_link_icon/space_01": { "file": "ui/feed_common.json", "type": "panel" }, "account_link_icon/account_link_image": { "file": "ui/feed_common.json", "type": "image", "extend": { "name": "account_link_image", "namespace": "feed_common" } }, "account_link_icon/space_02": { "file": "ui/feed_common.json", "type": "panel" }, "player_pic_bevel": { "file": "ui/feed_common.json", "type": "image" }, "no_feed_item_content": { "file": "ui/feed_common.json", "type": "label" }, "gamepad_helpers": { "file": "ui/feed_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helpers_a_and_b", "namespace": "common" } }, "share_text_box": { "file": "ui/feed_common.json", "type": "edit_box", "extend": { "name": "transparent_text_edit_box", "namespace": "common" } }, "progress_loading_bars": { "file": "ui/feed_common.json", "type": "image" }, "popup_dialog_bg": { "file": "ui/feed_common.json", "type": "image" }, "pagination_panel": { "file": "ui/feed_common.json", "type": "panel", "children": [ "prev_button", "page_text", "next_button" ] }, "pagination_panel/prev_button": { "file": "ui/feed_common.json", "type": "button", "extend": { "name": "prev_button", "namespace": "feed_common" } }, "pagination_panel/page_text": { "file": "ui/feed_common.json", "type": "label", "extend": { "name": "page_text", "namespace": "feed_common" } }, "pagination_panel/next_button": { "file": "ui/feed_common.json", "type": "button", "extend": { "name": "next_button", "namespace": "feed_common" } }, "pagination_panel_gamepad": { "file": "ui/feed_common.json", "type": "panel", "children": [ "prev_panel", "page_text", "next_panel" ] }, "pagination_panel_gamepad/prev_panel": { "file": "ui/feed_common.json", "type": "stack_panel", "extend": { "name": "prev_panel", "namespace": "feed_common" } }, "pagination_panel_gamepad/page_text": { "file": "ui/feed_common.json", "type": "label", "extend": { "name": "page_text", "namespace": "feed_common" } }, "pagination_panel_gamepad/next_panel": { "file": "ui/feed_common.json", "type": "stack_panel", "extend": { "name": "next_panel", "namespace": "feed_common" } }, "like_image": { "file": "ui/feed_common.json", "type": "image" }, "like_image_default": { "file": "ui/feed_common.json", "type": "image" }, "like_image_panel": { "file": "ui/feed_common.json", "type": "panel", "children": [ "like_image_instance", "like_image_default" ] }, "like_image_panel/like_image_instance": { "file": "ui/feed_common.json", "type": "image", "extend": { "name": "like_image", "namespace": "feed_common" } }, "like_image_panel/like_image_default": { "file": "ui/feed_common.json", "type": "image", "extend": { "name": "like_image_default", "namespace": "feed_common" } }, "feed_like_content_panel": { "file": "ui/feed_common.json", "type": "stack_panel", "children": [ "like_image_panel", "like_label" ] }, "feed_like_content_panel/like_image_panel": { "file": "ui/feed_common.json", "type": "panel", "extend": { "name": "like_image_panel", "namespace": "feed_common" } }, "feed_like_content_panel/like_label": { "file": "ui/feed_common.json", "type": "label", "extend": { "name": "smooth_label", "namespace": "feed_common" } }, "white_banner": { "file": "ui/feed_common.json", "type": "image" }, "page_text": { "file": "ui/feed_common.json", "type": "label" }, "options_icon": { "file": "ui/feed_common.json", "type": "image" }, "transparent_background": { "file": "ui/feed_common.json", "type": "image" }, "black_arrow": { "file": "ui/feed_common.json", "type": "image" }, "faded_background_image": { "file": "ui/feed_common.json", "type": "image" }, "unviewed_post_badge": { "file": "ui/feed_common.json", "type": "image", "children": [ "unviewed_post_text" ] }, "unviewed_post_badge/unviewed_post_text": { "file": "ui/feed_common.json", "type": "label", "extend": { "name": "smooth_label", "namespace": "feed_common" } } }, "file_upload": { "empty_progress_bar_icon": { "file": "ui/file_upload_screen.json", "type": "image" }, "full_progress_bar_icon": { "file": "ui/file_upload_screen.json", "type": "image" }, "progress_bar_nub": { "file": "ui/file_upload_screen.json", "type": "image" }, "progress_bar_icon": { "file": "ui/file_upload_screen.json", "type": "panel", "children": [ "empty_progress_bar_icon", "progress_percent_panel" ] }, "progress_bar_icon/empty_progress_bar_icon": { "file": "ui/file_upload_screen.json", "type": "image", "extend": { "name": "empty_progress_bar_icon", "namespace": "file_upload" } }, "progress_bar_icon/progress_percent_panel": { "file": "ui/file_upload_screen.json", "type": "panel", "children": [ "full_progress_bar_icon", "progress_bar_nub" ] }, "progress_bar_icon/progress_percent_panel/full_progress_bar_icon": { "file": "ui/file_upload_screen.json", "type": "image", "extend": { "name": "full_progress_bar_icon", "namespace": "file_upload" } }, "progress_bar_icon/progress_percent_panel/progress_bar_nub": { "file": "ui/file_upload_screen.json", "type": "image", "extend": { "name": "progress_bar_nub", "namespace": "file_upload" } }, "common_label": { "file": "ui/file_upload_screen.json", "type": "label" }, "progress_text_panel": { "file": "ui/file_upload_screen.json", "type": "panel", "children": [ "progress", "total" ] }, "progress_text_panel/progress": { "file": "ui/file_upload_screen.json", "type": "label", "extend": { "name": "common_label", "namespace": "file_upload" } }, "progress_text_panel/total": { "file": "ui/file_upload_screen.json", "type": "label", "extend": { "name": "common_label", "namespace": "file_upload" } }, "message_text_panel": { "file": "ui/file_upload_screen.json", "type": "panel", "children": [ "message_text" ] }, "message_text_panel/message_text": { "file": "ui/file_upload_screen.json", "type": "label", "extend": { "name": "common_label", "namespace": "file_upload" } }, "button_common": { "file": "ui/file_upload_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "lets_go_button": { "file": "ui/file_upload_screen.json", "type": "button", "extend": { "name": "button_common", "namespace": "file_upload" } }, "cancel_button": { "file": "ui/file_upload_screen.json", "type": "button", "extend": { "name": "button_common", "namespace": "file_upload" } }, "continue_button": { "file": "ui/file_upload_screen.json", "type": "button", "extend": { "name": "button_common", "namespace": "file_upload" } }, "continue_or_cancel_button": { "file": "ui/file_upload_screen.json", "type": "panel", "children": [ "continue", "cancel" ] }, "continue_or_cancel_button/continue": { "file": "ui/file_upload_screen.json", "type": "button", "extend": { "name": "continue_button", "namespace": "file_upload" } }, "continue_or_cancel_button/cancel": { "file": "ui/file_upload_screen.json", "type": "button", "extend": { "name": "cancel_button", "namespace": "file_upload" } }, "single_title_panel": { "file": "ui/file_upload_screen.json", "type": "panel", "children": [ "center" ] }, "single_title_panel/center": { "file": "ui/file_upload_screen.json", "type": "label", "extend": { "name": "common_label", "namespace": "file_upload" } }, "dual_title_panel": { "file": "ui/file_upload_screen.json", "type": "panel", "children": [ "left", "right" ] }, "dual_title_panel/left": { "file": "ui/file_upload_screen.json", "type": "label", "extend": { "name": "common_label", "namespace": "file_upload" } }, "dual_title_panel/right": { "file": "ui/file_upload_screen.json", "type": "label", "extend": { "name": "common_label", "namespace": "file_upload" } }, "upload_title_panel": { "file": "ui/file_upload_screen.json", "type": "panel", "children": [ "single_label", "dual_label" ] }, "upload_title_panel/single_label": { "file": "ui/file_upload_screen.json", "type": "panel", "extend": { "name": "single_title_panel", "namespace": "file_upload" } }, "upload_title_panel/dual_label": { "file": "ui/file_upload_screen.json", "type": "panel", "extend": { "name": "dual_title_panel", "namespace": "file_upload" } }, "content_panel": { "file": "ui/file_upload_screen.json", "type": "panel", "children": [ "stack_panel_0", "stack_panel_1" ] }, "content_panel/stack_panel_0": { "file": "ui/file_upload_screen.json", "type": "stack_panel", "extend": { "name": "content_stack_panel", "namespace": "file_upload" } }, "content_panel/stack_panel_1": { "file": "ui/file_upload_screen.json", "type": "panel", "extend": { "name": "warning_content_panel", "namespace": "file_upload" } }, "content_stack_panel": { "file": "ui/file_upload_screen.json", "type": "stack_panel", "children": [ "message", "description", "progress" ] }, "content_stack_panel/message": { "file": "ui/file_upload_screen.json", "type": "panel", "extend": { "name": "message_text_panel", "namespace": "file_upload" } }, "content_stack_panel/description": { "file": "ui/file_upload_screen.json", "type": "panel", "extend": { "name": "progress_text_panel", "namespace": "file_upload" } }, "content_stack_panel/progress": { "file": "ui/file_upload_screen.json", "type": "panel", "extend": { "name": "progress_bar_icon", "namespace": "file_upload" } }, "warning_content_panel": { "file": "ui/file_upload_screen.json", "type": "panel", "children": [ "message" ] }, "warning_content_panel/message": { "file": "ui/file_upload_screen.json", "type": "label" }, "button_panel": { "file": "ui/file_upload_screen.json", "type": "panel", "children": [ "play", "cancel", "continue_cancel" ] }, "button_panel/play": { "file": "ui/file_upload_screen.json", "type": "button", "extend": { "name": "lets_go_button", "namespace": "file_upload" } }, "button_panel/cancel": { "file": "ui/file_upload_screen.json", "type": "button", "extend": { "name": "cancel_button", "namespace": "file_upload" } }, "button_panel/continue_cancel": { "file": "ui/file_upload_screen.json", "type": "panel", "extend": { "name": "continue_or_cancel_button", "namespace": "file_upload" } }, "file_upload_content": { "file": "ui/file_upload_screen.json", "type": "panel", "children": [ "title_panel_content", "content" ] }, "file_upload_content/title_panel_content": { "file": "ui/file_upload_screen.json", "type": "panel", "extend": { "name": "title_panel_content", "namespace": "common_art" } }, "file_upload_content/content": { "file": "ui/file_upload_screen.json", "type": "panel", "children": [ "background", "title", "content", "buttons" ] }, "file_upload_content/content/background": { "file": "ui/file_upload_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "file_upload_content/content/title": { "file": "ui/file_upload_screen.json", "type": "panel", "extend": { "name": "upload_title_panel", "namespace": "file_upload" } }, "file_upload_content/content/content": { "file": "ui/file_upload_screen.json", "type": "panel", "extend": { "name": "content_panel", "namespace": "file_upload" } }, "file_upload_content/content/buttons": { "file": "ui/file_upload_screen.json", "type": "panel", "extend": { "name": "button_panel", "namespace": "file_upload" } }, "file_transmission_screen": { "file": "ui/file_upload_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } } }, "furnace": { "flame_panel": { "file": "ui/furnace_screen.json", "type": "panel", "children": [ "flame_empty_image", "flame_full_image" ] }, "flame_panel/flame_empty_image": { "file": "ui/furnace_screen.json", "type": "image", "extend": { "name": "flame_empty_image", "namespace": "furnace" } }, "flame_panel/flame_full_image": { "file": "ui/furnace_screen.json", "type": "image", "extend": { "name": "flame_full_image", "namespace": "furnace" } }, "furnace_arrow_empty_image": { "file": "ui/furnace_screen.json", "type": "image" }, "furnace_arrow_full_image": { "file": "ui/furnace_screen.json", "type": "image" }, "flame_empty_image": { "file": "ui/furnace_screen.json", "type": "image" }, "flame_full_image": { "file": "ui/furnace_screen.json", "type": "image" }, "furnace_label": { "file": "ui/furnace_screen.json", "type": "label" }, "furnace_input_panel": { "file": "ui/furnace_screen.json", "type": "panel", "children": [ "panel" ] }, "furnace_input_panel/panel": { "file": "ui/furnace_screen.json", "type": "panel", "children": [ "furnace_ingredient_panel", "flame_panel", "furnace_fuel_panel" ] }, "furnace_input_panel/panel/furnace_ingredient_panel": { "file": "ui/furnace_screen.json", "type": "panel", "extend": { "name": "furnace_ingredient_panel", "namespace": "furnace" } }, "furnace_input_panel/panel/flame_panel": { "file": "ui/furnace_screen.json", "type": "panel", "extend": { "name": "flame_panel", "namespace": "furnace" } }, "furnace_input_panel/panel/furnace_fuel_panel": { "file": "ui/furnace_screen.json", "type": "panel", "extend": { "name": "furnace_fuel_panel", "namespace": "furnace" } }, "furnace_ingredient_panel": { "file": "ui/furnace_screen.json", "type": "panel", "children": [ "ingredient_item" ] }, "furnace_ingredient_panel/ingredient_item": { "file": "ui/furnace_screen.json", "type": "input_panel", "extend": { "name": "container_item", "namespace": "common" } }, "furnace_fuel_panel": { "file": "ui/furnace_screen.json", "type": "panel", "children": [ "fuel_item" ] }, "furnace_fuel_panel/fuel_item": { "file": "ui/furnace_screen.json", "type": "input_panel", "extend": { "name": "container_item", "namespace": "common" } }, "furnace_output_panel": { "file": "ui/furnace_screen.json", "type": "panel", "children": [ "output_item" ] }, "furnace_output_panel/output_item": { "file": "ui/furnace_screen.json", "type": "input_panel", "extend": { "name": "container_item", "namespace": "common" } }, "furnace_panel_top_half": { "file": "ui/furnace_screen.json", "type": "panel", "children": [ "furnace_label", "input", "furnace_arrow_empty_image", "furnace_arrow_full_image", "output" ] }, "furnace_panel_top_half/furnace_label": { "file": "ui/furnace_screen.json", "type": "label", "extend": { "name": "furnace_label", "namespace": "furnace" } }, "furnace_panel_top_half/input": { "file": "ui/furnace_screen.json", "type": "panel", "extend": { "name": "furnace_input_panel", "namespace": "furnace" } }, "furnace_panel_top_half/furnace_arrow_empty_image": { "file": "ui/furnace_screen.json", "type": "image", "extend": { "name": "furnace_arrow_empty_image", "namespace": "furnace" } }, "furnace_panel_top_half/furnace_arrow_full_image": { "file": "ui/furnace_screen.json", "type": "image", "extend": { "name": "furnace_arrow_full_image", "namespace": "furnace" } }, "furnace_panel_top_half/output": { "file": "ui/furnace_screen.json", "type": "panel", "extend": { "name": "furnace_output_panel", "namespace": "furnace" } }, "furnace_panel": { "file": "ui/furnace_screen.json", "type": "panel", "children": [ "container_gamepad_helpers", "selected_item_details_factory", "item_lock_notification_factory", "root_panel", "flying_item_renderer" ] }, "furnace_panel/container_gamepad_helpers": { "file": "ui/furnace_screen.json", "type": "stack_panel", "extend": { "name": "container_gamepad_helpers", "namespace": "common" } }, "furnace_panel/selected_item_details_factory": { "file": "ui/furnace_screen.json", "type": "factory", "extend": { "name": "selected_item_details_factory", "namespace": "common" } }, "furnace_panel/item_lock_notification_factory": { "file": "ui/furnace_screen.json", "type": "factory", "extend": { "name": "item_lock_notification_factory", "namespace": "common" } }, "furnace_panel/root_panel": { "file": "ui/furnace_screen.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "common_panel", "furnace_screen_inventory", "inventory_selected_icon_button", "gamepad_cursor" ] }, "furnace_panel/root_panel/common_panel": { "file": "ui/furnace_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "furnace_panel/root_panel/furnace_screen_inventory": { "file": "ui/furnace_screen.json", "type": "panel", "children": [ "furnace_panel_top_half", "inventory_panel_bottom_half_with_label", "hotbar_grid", "inventory_take_progress_icon_button" ] }, "furnace_panel/root_panel/furnace_screen_inventory/furnace_panel_top_half": { "file": "ui/furnace_screen.json", "type": "panel", "extend": { "name": "furnace_panel_top_half", "namespace": "furnace" } }, "furnace_panel/root_panel/furnace_screen_inventory/inventory_panel_bottom_half_with_label": { "file": "ui/furnace_screen.json", "type": "panel", "extend": { "name": "inventory_panel_bottom_half_with_label", "namespace": "common" } }, "furnace_panel/root_panel/furnace_screen_inventory/hotbar_grid": { "file": "ui/furnace_screen.json", "type": "grid", "extend": { "name": "hotbar_grid_template", "namespace": "common" } }, "furnace_panel/root_panel/furnace_screen_inventory/inventory_take_progress_icon_button": { "file": "ui/furnace_screen.json", "type": "button", "extend": { "name": "inventory_take_progress_icon_button", "namespace": "common" } }, "furnace_panel/root_panel/inventory_selected_icon_button": { "file": "ui/furnace_screen.json", "type": "button", "extend": { "name": "inventory_selected_icon_button", "namespace": "common" } }, "furnace_panel/root_panel/gamepad_cursor": { "file": "ui/furnace_screen.json", "type": "button", "extend": { "name": "gamepad_cursor_button", "namespace": "common" } }, "furnace_panel/flying_item_renderer": { "file": "ui/furnace_screen.json", "type": "custom", "extend": { "name": "flying_item_renderer", "namespace": "common" } }, "furnace_screen": { "file": "ui/furnace_screen.json", "type": "screen", "extend": { "name": "inventory_screen_common", "namespace": "common" } } }, "furnace_pocket": { "generic_label": { "file": "ui/furnace_screen_pocket.json", "type": "label" }, "background_image": { "file": "ui/furnace_screen_pocket.json", "type": "image" }, "empty_arrow": { "file": "ui/furnace_screen_pocket.json", "type": "image", "extend": { "name": "furnace_arrow_empty_image", "namespace": "furnace" } }, "full_arrow": { "file": "ui/furnace_screen_pocket.json", "type": "image", "extend": { "name": "furnace_arrow_full_image", "namespace": "furnace" } }, "flame_empty": { "file": "ui/furnace_screen_pocket.json", "type": "image", "extend": { "name": "flame_empty_image", "namespace": "furnace" } }, "flame_full": { "file": "ui/furnace_screen_pocket.json", "type": "image", "extend": { "name": "flame_full_image", "namespace": "furnace" } }, "input_label": { "file": "ui/furnace_screen_pocket.json", "type": "label", "extend": { "name": "generic_label", "namespace": "furnace_pocket" } }, "fuel_label": { "file": "ui/furnace_screen_pocket.json", "type": "label", "extend": { "name": "generic_label", "namespace": "furnace_pocket" } }, "result_label": { "file": "ui/furnace_screen_pocket.json", "type": "label", "extend": { "name": "generic_label", "namespace": "furnace_pocket" } }, "result_name_label": { "file": "ui/furnace_screen_pocket.json", "type": "label", "extend": { "name": "generic_label", "namespace": "furnace_pocket" } }, "furnace_content": { "file": "ui/furnace_screen_pocket.json", "type": "panel", "children": [ "input_panel", "flame_empty", "flame_full", "fuel_panel", "empty_arrow", "full_arrow", "output_panel" ] }, "furnace_content/input_panel": { "file": "ui/furnace_screen_pocket.json", "type": "panel", "children": [ "input_label", "ingredient_item" ] }, "furnace_content/input_panel/input_label": { "file": "ui/furnace_screen_pocket.json", "type": "label", "extend": { "name": "input_label", "namespace": "furnace_pocket" } }, "furnace_content/input_panel/ingredient_item": { "file": "ui/furnace_screen_pocket.json", "type": "input_panel", "extend": { "name": "pocket_ui_large_container_item", "namespace": "common" } }, "furnace_content/flame_empty": { "file": "ui/furnace_screen_pocket.json", "type": "image", "extend": { "name": "flame_empty_image", "namespace": "furnace" } }, "furnace_content/flame_full": { "file": "ui/furnace_screen_pocket.json", "type": "image", "extend": { "name": "flame_full_image", "namespace": "furnace" } }, "furnace_content/fuel_panel": { "file": "ui/furnace_screen_pocket.json", "type": "panel", "children": [ "fuel_label", "fuel_item" ] }, "furnace_content/fuel_panel/fuel_label": { "file": "ui/furnace_screen_pocket.json", "type": "label", "extend": { "name": "fuel_label", "namespace": "furnace_pocket" } }, "furnace_content/fuel_panel/fuel_item": { "file": "ui/furnace_screen_pocket.json", "type": "input_panel", "extend": { "name": "pocket_ui_large_container_item", "namespace": "common" } }, "furnace_content/empty_arrow": { "file": "ui/furnace_screen_pocket.json", "type": "image", "extend": { "name": "empty_arrow", "namespace": "furnace_pocket" } }, "furnace_content/full_arrow": { "file": "ui/furnace_screen_pocket.json", "type": "image", "extend": { "name": "full_arrow", "namespace": "furnace_pocket" } }, "furnace_content/output_panel": { "file": "ui/furnace_screen_pocket.json", "type": "panel", "children": [ "result_label", "result_name_label", "output_item" ] }, "furnace_content/output_panel/result_label": { "file": "ui/furnace_screen_pocket.json", "type": "label", "extend": { "name": "result_label", "namespace": "furnace_pocket" } }, "furnace_content/output_panel/result_name_label": { "file": "ui/furnace_screen_pocket.json", "type": "label", "extend": { "name": "result_name_label", "namespace": "furnace_pocket" } }, "furnace_content/output_panel/output_item": { "file": "ui/furnace_screen_pocket.json", "type": "input_panel", "extend": { "name": "pocket_ui_large_container_item", "namespace": "common" } }, "inventory_grid": { "file": "ui/furnace_screen_pocket.json", "type": "grid" }, "inventory_content": { "file": "ui/furnace_screen_pocket.json", "type": "panel", "children": [ "scrolling_panel" ] }, "inventory_content/scrolling_panel": { "file": "ui/furnace_screen_pocket.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "header": { "file": "ui/furnace_screen_pocket.json", "type": "panel", "children": [ "header_background", "close_button", "panel" ] }, "header/header_background": { "file": "ui/furnace_screen_pocket.json", "type": "image" }, "header/close_button": { "file": "ui/furnace_screen_pocket.json", "type": "button", "extend": { "name": "legacy_pocket_close_button", "namespace": "common" } }, "header/panel": { "file": "ui/furnace_screen_pocket.json", "type": "panel", "children": [ "title_label" ] }, "header/panel/title_label": { "file": "ui/furnace_screen_pocket.json", "type": "label", "extend": { "name": "generic_label", "namespace": "furnace_pocket" } }, "inventory_and_furnace_panel": { "file": "ui/furnace_screen_pocket.json", "type": "panel", "children": [ "inventory_half_screen", "furnace_half_screen" ] }, "inventory_and_furnace_panel/inventory_half_screen": { "file": "ui/furnace_screen_pocket.json", "type": "panel", "children": [ "inventory_content" ] }, "inventory_and_furnace_panel/inventory_half_screen/inventory_content": { "file": "ui/furnace_screen_pocket.json", "type": "panel", "extend": { "name": "inventory_content", "namespace": "furnace_pocket" } }, "inventory_and_furnace_panel/furnace_half_screen": { "file": "ui/furnace_screen_pocket.json", "type": "panel", "children": [ "furnace_content" ] }, "inventory_and_furnace_panel/furnace_half_screen/furnace_content": { "file": "ui/furnace_screen_pocket.json", "type": "panel", "extend": { "name": "furnace_content", "namespace": "furnace_pocket" } }, "header_and_content_stack_panel": { "file": "ui/furnace_screen_pocket.json", "type": "stack_panel", "children": [ "header", "inventory_and_furnace_panel" ] }, "header_and_content_stack_panel/header": { "file": "ui/furnace_screen_pocket.json", "type": "panel", "extend": { "name": "header", "namespace": "furnace_pocket" } }, "header_and_content_stack_panel/inventory_and_furnace_panel": { "file": "ui/furnace_screen_pocket.json", "type": "panel", "extend": { "name": "inventory_and_furnace_panel", "namespace": "furnace_pocket" } }, "furnace_panel": { "file": "ui/furnace_screen_pocket.json", "type": "panel", "children": [ "bg", "root_panel", "header_and_content_stack_panel", "container_gamepad_helpers", "inventory_selected_icon_button", "hold_icon", "selected_item_details_factory", "item_lock_notification_factory", "flying_item_renderer" ] }, "furnace_panel/bg": { "file": "ui/furnace_screen_pocket.json", "type": "image", "extend": { "name": "background_image", "namespace": "furnace_pocket" } }, "furnace_panel/root_panel": { "file": "ui/furnace_screen_pocket.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" } }, "furnace_panel/header_and_content_stack_panel": { "file": "ui/furnace_screen_pocket.json", "type": "stack_panel", "extend": { "name": "header_and_content_stack_panel", "namespace": "furnace_pocket" } }, "furnace_panel/container_gamepad_helpers": { "file": "ui/furnace_screen_pocket.json", "type": "stack_panel", "extend": { "name": "container_gamepad_helpers", "namespace": "common" } }, "furnace_panel/inventory_selected_icon_button": { "file": "ui/furnace_screen_pocket.json", "type": "button", "extend": { "name": "inventory_selected_icon_button", "namespace": "common" } }, "furnace_panel/hold_icon": { "file": "ui/furnace_screen_pocket.json", "type": "button", "extend": { "name": "inventory_take_progress_icon_button", "namespace": "common" } }, "furnace_panel/selected_item_details_factory": { "file": "ui/furnace_screen_pocket.json", "type": "factory", "extend": { "name": "selected_item_details_factory", "namespace": "common" } }, "furnace_panel/item_lock_notification_factory": { "file": "ui/furnace_screen_pocket.json", "type": "factory", "extend": { "name": "item_lock_notification_factory", "namespace": "common" } }, "furnace_panel/flying_item_renderer": { "file": "ui/furnace_screen_pocket.json", "type": "custom", "extend": { "name": "flying_item_renderer", "namespace": "common" } } }, "game_tip": { "game_tip_animation": { "file": "ui/game_tip_screen.json", "type": "image" }, "game_tip_animation_panel": { "file": "ui/game_tip_screen.json", "type": "panel", "children": [ "animated_icon" ] }, "game_tip_animation_panel/animated_icon": { "file": "ui/game_tip_screen.json", "type": "image", "extend": { "name": "game_tip_animation", "namespace": "game_tip" } }, "game_tip_label": { "file": "ui/game_tip_screen.json", "type": "label" }, "game_tip_text_panel": { "file": "ui/game_tip_screen.json", "type": "stack_panel", "children": [ "upper_padding", "label", "lower_padding" ] }, "game_tip_text_panel/upper_padding": { "file": "ui/game_tip_screen.json", "type": "panel" }, "game_tip_text_panel/label": { "file": "ui/game_tip_screen.json", "type": "label", "extend": { "name": "game_tip_label", "namespace": "game_tip" } }, "game_tip_text_panel/lower_padding": { "file": "ui/game_tip_screen.json", "type": "panel" }, "game_tip_arrow_image": { "file": "ui/game_tip_screen.json", "type": "image" }, "game_tip_arrow_panel": { "file": "ui/game_tip_screen.json", "type": "panel", "children": [ "tip_arrow" ] }, "game_tip_arrow_panel/tip_arrow": { "file": "ui/game_tip_screen.json", "type": "image", "extend": { "name": "game_tip_arrow_image", "namespace": "game_tip" } }, "game_tip_panel": { "file": "ui/game_tip_screen.json", "type": "stack_panel", "children": [ "animated_panel", "middle_padding", "label", "right_padding" ] }, "game_tip_panel/animated_panel": { "file": "ui/game_tip_screen.json", "type": "panel", "extend": { "name": "game_tip_animation_panel", "namespace": "game_tip" } }, "game_tip_panel/middle_padding": { "file": "ui/game_tip_screen.json", "type": "panel" }, "game_tip_panel/label": { "file": "ui/game_tip_screen.json", "type": "stack_panel", "extend": { "name": "game_tip_text_panel", "namespace": "game_tip" } }, "game_tip_panel/right_padding": { "file": "ui/game_tip_screen.json", "type": "panel" }, "game_tip_item_background": { "file": "ui/game_tip_screen.json", "type": "image", "children": [ "horizontal_container", "arrow_panel" ] }, "game_tip_item_background/horizontal_container": { "file": "ui/game_tip_screen.json", "type": "stack_panel", "extend": { "name": "game_tip_panel", "namespace": "game_tip" } }, "game_tip_item_background/arrow_panel": { "file": "ui/game_tip_screen.json", "type": "panel", "extend": { "name": "game_tip_arrow_panel", "namespace": "game_tip" } }, "chat_stack_game_tip_panel": { "file": "ui/game_tip_screen.json", "type": "stack_panel", "children": [ "top_padding", "game_tip_background" ] }, "chat_stack_game_tip_panel/top_padding": { "file": "ui/game_tip_screen.json", "type": "panel" }, "chat_stack_game_tip_panel/game_tip_background": { "file": "ui/game_tip_screen.json", "type": "image", "extend": { "name": "game_tip_item_background", "namespace": "game_tip" } }, "game_tip_factory": { "file": "ui/game_tip_screen.json", "type": "panel" }, "game_tip_chat_stack_factory": { "file": "ui/game_tip_screen.json", "type": "panel" } }, "gamepad_disconnected": { "gamepad_disconnected_modal": { "file": "ui/gamepad_disconnected.json", "type": "panel", "children": [ "dialog_background_hollow_3" ] }, "gamepad_disconnected_modal/dialog_background_hollow_3": { "file": "ui/gamepad_disconnected.json", "type": "image", "extend": { "name": "dialog_background_hollow_3", "namespace": "common" }, "children": [ "control" ] }, "gamepad_disconnected_modal/dialog_background_hollow_3/control": { "file": "ui/gamepad_disconnected.json", "type": "image", "children": [ "content_panel" ] }, "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel": { "file": "ui/gamepad_disconnected.json", "type": "stack_panel", "children": [ "padding_0", "title", "padding_1", "description" ] }, "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/padding_0": { "file": "ui/gamepad_disconnected.json", "type": "panel" }, "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/title": { "file": "ui/gamepad_disconnected.json", "type": "label" }, "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/padding_1": { "file": "ui/gamepad_disconnected.json", "type": "panel" }, "gamepad_disconnected_modal/dialog_background_hollow_3/control/content_panel/description": { "file": "ui/gamepad_disconnected.json", "type": "label" }, "gamepad_disconnected_screen": { "file": "ui/gamepad_disconnected.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } } }, "gameplay": { "bundle_selected_item_icon": { "file": "ui/gameplay_common.json", "type": "custom", "extend": { "name": "item_renderer", "namespace": "common" } }, "bundle_open_icon_back": { "file": "ui/gameplay_common.json", "type": "custom", "extend": { "name": "item_renderer", "namespace": "common" } }, "bundle_open_icon_front": { "file": "ui/gameplay_common.json", "type": "custom", "extend": { "name": "item_renderer", "namespace": "common" } }, "bundle_selected_item_background": { "file": "ui/gameplay_common.json", "type": "panel", "children": [ "bundle_selected_item_background_colour_green", "bundle_selected_item_background_colour", "bundle_selected_item_frame" ] }, "bundle_selected_item_background/bundle_selected_item_background_colour_green": { "file": "ui/gameplay_common.json", "type": "image", "extend": { "name": "highlight_slot", "namespace": "common" } }, "bundle_selected_item_background/bundle_selected_item_background_colour": { "file": "ui/gameplay_common.json", "type": "image" }, "bundle_selected_item_background/bundle_selected_item_frame": { "file": "ui/gameplay_common.json", "type": "image", "extend": { "name": "pocket_ui_highlight_slot", "namespace": "common" } }, "bundle_selected_item_panel": { "file": "ui/gameplay_common.json", "type": "panel", "children": [ "bundle_selected_item_background", "bundle_open_icon_back", "bundle_selected_item_icon", "bundle_open_icon_front", "storage_bar" ] }, "bundle_selected_item_panel/bundle_selected_item_background": { "file": "ui/gameplay_common.json", "type": "panel", "extend": { "name": "bundle_selected_item_background", "namespace": "gameplay" } }, "bundle_selected_item_panel/bundle_open_icon_back": { "file": "ui/gameplay_common.json", "type": "custom", "extend": { "name": "bundle_open_icon_back", "namespace": "gameplay" } }, "bundle_selected_item_panel/bundle_selected_item_icon": { "file": "ui/gameplay_common.json", "type": "custom", "extend": { "name": "bundle_selected_item_icon", "namespace": "gameplay" } }, "bundle_selected_item_panel/bundle_open_icon_front": { "file": "ui/gameplay_common.json", "type": "custom", "extend": { "name": "bundle_open_icon_front", "namespace": "gameplay" } }, "bundle_selected_item_panel/storage_bar": { "file": "ui/gameplay_common.json", "type": "custom", "extend": { "name": "storage_bar", "namespace": "common" } }, "bundle_slot_panel": { "file": "ui/gameplay_common.json", "type": "panel", "children": [ "bundle_selected_item_panel" ] }, "bundle_slot_panel/bundle_selected_item_panel": { "file": "ui/gameplay_common.json", "type": "panel", "extend": { "name": "bundle_selected_item_panel", "namespace": "gameplay" } }, "bundle_cell_image": { "file": "ui/gameplay_common.json", "type": "panel", "children": [ "background_panel", "highlight_panel" ] }, "bundle_cell_image/background_panel": { "file": "ui/gameplay_common.json", "type": "panel", "children": [ "item_background" ] }, "bundle_cell_image/background_panel/item_background": { "file": "ui/gameplay_common.json", "type": "image" }, "bundle_cell_image/highlight_panel": { "file": "ui/gameplay_common.json", "type": "panel", "children": [ "bundle_selected_item_background_colour_green", "bundle_selected_item_background_border_white", "bundle_selected_item_background_colour_blue" ] }, "bundle_cell_image/highlight_panel/bundle_selected_item_background_colour_green": { "file": "ui/gameplay_common.json", "type": "image", "extend": { "name": "highlight_slot", "namespace": "common" } }, "bundle_cell_image/highlight_panel/bundle_selected_item_background_border_white": { "file": "ui/gameplay_common.json", "type": "image" }, "bundle_cell_image/highlight_panel/bundle_selected_item_background_colour_blue": { "file": "ui/gameplay_common.json", "type": "image", "extend": { "name": "cell_image_selected", "namespace": "common" } }, "bundle_tooltip_slot_button": { "file": "ui/gameplay_common.json", "type": "button", "extend": { "name": "container_slot_button_prototype", "namespace": "common" } }, "bundle_tooltip_slot_pocket": { "file": "ui/gameplay_common.json", "type": "panel", "children": [ "item_in_bundle_tooltip_pocket", "more_hidden_items_label" ] }, "bundle_tooltip_slot_pocket/item_in_bundle_tooltip_pocket": { "file": "ui/gameplay_common.json", "type": "input_panel", "extend": { "name": "pocket_ui_container_item", "namespace": "common" } }, "bundle_tooltip_slot_pocket/more_hidden_items_label": { "file": "ui/gameplay_common.json", "type": "label" }, "bundle_tooltip_slot_classic": { "file": "ui/gameplay_common.json", "type": "panel", "children": [ "item_in_bundle_tooltip_pocket", "more_hidden_items_label" ] }, "bundle_tooltip_slot_classic/item_in_bundle_tooltip_pocket": { "file": "ui/gameplay_common.json", "type": "input_panel", "extend": { "name": "container_item", "namespace": "common" } }, "bundle_tooltip_slot_classic/more_hidden_items_label": { "file": "ui/gameplay_common.json", "type": "label" }, "bundle_tooltip": { "file": "ui/gameplay_common.json", "type": "panel", "children": [ "background", "header_stack", "wrapper" ] }, "bundle_tooltip/background": { "file": "ui/gameplay_common.json", "type": "image", "children": [ "empty_button", "selected_item_tooltip" ] }, "bundle_tooltip/background/empty_button": { "file": "ui/gameplay_common.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed" ] }, "bundle_tooltip/background/empty_button/default": { "file": "ui/gameplay_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "bundle_tooltip/background/empty_button/hover": { "file": "ui/gameplay_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "bundle_tooltip/background/empty_button/pressed": { "file": "ui/gameplay_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "bundle_tooltip/background/selected_item_tooltip": { "file": "ui/gameplay_common.json", "type": "image", "extend": { "name": "item_panel_image", "namespace": "common" }, "children": [ "item_text_label" ] }, "bundle_tooltip/background/selected_item_tooltip/item_text_label": { "file": "ui/gameplay_common.json", "type": "label", "extend": { "name": "item_text_label", "namespace": "common" } }, "bundle_tooltip/header_stack": { "file": "ui/gameplay_common.json", "type": "stack_panel", "children": [ "bundle_label", "close_button" ] }, "bundle_tooltip/header_stack/bundle_label": { "file": "ui/gameplay_common.json", "type": "label" }, "bundle_tooltip/header_stack/close_button": { "file": "ui/gameplay_common.json", "type": "button", "extend": { "name": "close_button", "namespace": "common" }, "children": [ "default", "hover", "pressed" ] }, "bundle_tooltip/header_stack/close_button/default": { "file": "ui/gameplay_common.json", "type": "panel", "extend": { "name": "close_button_panel", "namespace": "common" } }, "bundle_tooltip/header_stack/close_button/hover": { "file": "ui/gameplay_common.json", "type": "panel", "extend": { "name": "close_button_panel", "namespace": "common" } }, "bundle_tooltip/header_stack/close_button/pressed": { "file": "ui/gameplay_common.json", "type": "panel", "extend": { "name": "close_button_panel", "namespace": "common" } }, "bundle_tooltip/wrapper": { "file": "ui/gameplay_common.json", "type": "panel", "children": [ "vertical_layout_stack" ] }, "bundle_tooltip/wrapper/vertical_layout_stack": { "file": "ui/gameplay_common.json", "type": "stack_panel", "children": [ "header_padding", "horisontal_layout_stack" ] }, "bundle_tooltip/wrapper/vertical_layout_stack/header_padding": { "file": "ui/gameplay_common.json", "type": "panel" }, "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack": { "file": "ui/gameplay_common.json", "type": "stack_panel", "children": [ "left_padding", "body_stack" ] }, "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/left_padding": { "file": "ui/gameplay_common.json", "type": "panel" }, "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack": { "file": "ui/gameplay_common.json", "type": "stack_panel", "children": [ "item_grid", "info_message", "footer_panel" ] }, "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/item_grid": { "file": "ui/gameplay_common.json", "type": "grid" }, "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/info_message": { "file": "ui/gameplay_common.json", "type": "label" }, "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel": { "file": "ui/gameplay_common.json", "type": "panel", "children": [ "weight_bar" ] }, "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar": { "file": "ui/gameplay_common.json", "type": "panel", "children": [ "empty_message", "weight_bar_fill", "weight_bar_full", "weight_bar_border" ] }, "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/empty_message": { "file": "ui/gameplay_common.json", "type": "label" }, "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_fill": { "file": "ui/gameplay_common.json", "type": "image" }, "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_full": { "file": "ui/gameplay_common.json", "type": "image", "children": [ "full_label" ] }, "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_full/full_label": { "file": "ui/gameplay_common.json", "type": "label" }, "bundle_tooltip/wrapper/vertical_layout_stack/horisontal_layout_stack/body_stack/footer_panel/weight_bar/weight_bar_border": { "file": "ui/gameplay_common.json", "type": "image" }, "bundle_touch_tooltip": { "file": "ui/gameplay_common.json", "type": "panel", "extend": { "name": "bundle_tooltip", "namespace": "gameplay" } }, "bundle_tooltip_factory_wrapper": { "file": "ui/gameplay_common.json", "type": "panel", "children": [ "bundle_cursor_tooltip" ] }, "bundle_tooltip_factory_wrapper/bundle_cursor_tooltip": { "file": "ui/gameplay_common.json", "type": "custom", "extend": { "name": "bundle_cursor_tooltip", "namespace": "gameplay" } }, "bundle_cursor_tooltip": { "file": "ui/gameplay_common.json", "type": "custom", "children": [ "tooltip" ] }, "bundle_cursor_tooltip/tooltip": { "file": "ui/gameplay_common.json", "type": "panel", "extend": { "name": "bundle_tooltip", "namespace": "gameplay" } } }, "gathering_info": { "gathering_info_screen": { "file": "ui/gathering_info_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "info_content": { "file": "ui/gathering_info_screen.json", "type": "panel", "children": [ "header", "left_panel", "section_divider", "right_panel" ] }, "info_content/header": { "file": "ui/gathering_info_screen.json", "type": "stack_panel", "extend": { "name": "fullscreen_header", "namespace": "common" } }, "info_content/left_panel": { "file": "ui/gathering_info_screen.json", "type": "panel", "children": [ "stack" ] }, "info_content/left_panel/stack": { "file": "ui/gathering_info_screen.json", "type": "stack_panel", "children": [ "event_image", "pad_2", "button_and_caption", "pad_3", "info_button", "pad_4", "gamepad_helper_panel", "pad_fill", "gathering_id_label", "pad_5" ] }, "info_content/left_panel/stack/event_image": { "file": "ui/gathering_info_screen.json", "type": "image" }, "info_content/left_panel/stack/pad_2": { "file": "ui/gathering_info_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "info_content/left_panel/stack/button_and_caption": { "file": "ui/gathering_info_screen.json", "type": "panel", "children": [ "caption", "action_button" ] }, "info_content/left_panel/stack/button_and_caption/caption": { "file": "ui/gathering_info_screen.json", "type": "image", "extend": { "name": "gathering_caption", "namespace": "start" } }, "info_content/left_panel/stack/button_and_caption/action_button": { "file": "ui/gathering_info_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "info_content/left_panel/stack/pad_3": { "file": "ui/gathering_info_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "info_content/left_panel/stack/info_button": { "file": "ui/gathering_info_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "info_content/left_panel/stack/pad_4": { "file": "ui/gathering_info_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "info_content/left_panel/stack/gamepad_helper_panel": { "file": "ui/gathering_info_screen.json", "type": "panel", "children": [ "gamepad_helpers" ] }, "info_content/left_panel/stack/gamepad_helper_panel/gamepad_helpers": { "file": "ui/gathering_info_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helpers", "namespace": "gathering_info" } }, "info_content/left_panel/stack/pad_fill": { "file": "ui/gathering_info_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "info_content/left_panel/stack/gathering_id_label": { "file": "ui/gathering_info_screen.json", "type": "label" }, "info_content/left_panel/stack/pad_5": { "file": "ui/gathering_info_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "info_content/section_divider": { "file": "ui/gathering_info_screen.json", "type": "image", "extend": { "name": "section_divider", "namespace": "gathering_info" } }, "info_content/right_panel": { "file": "ui/gathering_info_screen.json", "type": "panel", "children": [ "scroll" ] }, "info_content/right_panel/scroll": { "file": "ui/gathering_info_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "right_panel_content": { "file": "ui/gathering_info_screen.json", "type": "stack_panel", "children": [ "pad", "sign_in_panel", "sign_in_pad", "qr_panel", "qr_pad", "title", "pad_1", "body", "pad_2", "body_image", "footer" ] }, "right_panel_content/pad": { "file": "ui/gathering_info_screen.json", "type": "panel" }, "right_panel_content/sign_in_panel": { "file": "ui/gathering_info_screen.json", "type": "stack_panel", "children": [ "sign_in_image", "horizontal_pad", "text_stack" ] }, "right_panel_content/sign_in_panel/sign_in_image": { "file": "ui/gathering_info_screen.json", "type": "image" }, "right_panel_content/sign_in_panel/horizontal_pad": { "file": "ui/gathering_info_screen.json", "type": "panel" }, "right_panel_content/sign_in_panel/text_stack": { "file": "ui/gathering_info_screen.json", "type": "stack_panel", "children": [ "sign_in_title", "text_pad", "sign_in_body" ] }, "right_panel_content/sign_in_panel/text_stack/sign_in_title": { "file": "ui/gathering_info_screen.json", "type": "panel", "extend": { "name": "tts_label_title", "namespace": "gathering_info" } }, "right_panel_content/sign_in_panel/text_stack/text_pad": { "file": "ui/gathering_info_screen.json", "type": "panel" }, "right_panel_content/sign_in_panel/text_stack/sign_in_body": { "file": "ui/gathering_info_screen.json", "type": "panel", "extend": { "name": "tts_label", "namespace": "gathering_info" } }, "right_panel_content/sign_in_pad": { "file": "ui/gathering_info_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "right_panel_content/qr_panel": { "file": "ui/gathering_info_screen.json", "type": "stack_panel", "children": [ "qr_background", "horizontal_pad", "text_stack" ] }, "right_panel_content/qr_panel/qr_background": { "file": "ui/gathering_info_screen.json", "type": "image", "children": [ "qr_image" ] }, "right_panel_content/qr_panel/qr_background/qr_image": { "file": "ui/gathering_info_screen.json", "type": "image" }, "right_panel_content/qr_panel/horizontal_pad": { "file": "ui/gathering_info_screen.json", "type": "panel" }, "right_panel_content/qr_panel/text_stack": { "file": "ui/gathering_info_screen.json", "type": "stack_panel", "children": [ "qr_title", "text_pad", "qr_body" ] }, "right_panel_content/qr_panel/text_stack/qr_title": { "file": "ui/gathering_info_screen.json", "type": "panel", "extend": { "name": "tts_label_title", "namespace": "gathering_info" } }, "right_panel_content/qr_panel/text_stack/text_pad": { "file": "ui/gathering_info_screen.json", "type": "panel" }, "right_panel_content/qr_panel/text_stack/qr_body": { "file": "ui/gathering_info_screen.json", "type": "panel", "extend": { "name": "tts_label", "namespace": "gathering_info" } }, "right_panel_content/qr_pad": { "file": "ui/gathering_info_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "right_panel_content/title": { "file": "ui/gathering_info_screen.json", "type": "panel", "extend": { "name": "tts_label_title", "namespace": "gathering_info" } }, "right_panel_content/pad_1": { "file": "ui/gathering_info_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "right_panel_content/body": { "file": "ui/gathering_info_screen.json", "type": "panel", "extend": { "name": "tts_label", "namespace": "gathering_info" } }, "right_panel_content/pad_2": { "file": "ui/gathering_info_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "right_panel_content/body_image": { "file": "ui/gathering_info_screen.json", "type": "image" }, "right_panel_content/footer": { "file": "ui/gathering_info_screen.json", "type": "input_panel" }, "tts_label": { "file": "ui/gathering_info_screen.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "tts_label_title": { "file": "ui/gathering_info_screen.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "sign_in_title": { "file": "ui/gathering_info_screen.json", "type": "label" }, "sign_in_body": { "file": "ui/gathering_info_screen.json", "type": "label" }, "qr_title": { "file": "ui/gathering_info_screen.json", "type": "label" }, "qr_body": { "file": "ui/gathering_info_screen.json", "type": "label" }, "title_panel": { "file": "ui/gathering_info_screen.json", "type": "label" }, "body_panel": { "file": "ui/gathering_info_screen.json", "type": "label" }, "section_divider": { "file": "ui/gathering_info_screen.json", "type": "image" }, "gamepad_helpers": { "file": "ui/gathering_info_screen.json", "type": "stack_panel", "children": [ "gamepad_helper_a", "gamepad_helper_b" ] }, "gamepad_helpers/gamepad_helper_a": { "file": "ui/gathering_info_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_a", "namespace": "common" } }, "gamepad_helpers/gamepad_helper_b": { "file": "ui/gathering_info_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_b", "namespace": "common" } } }, "globalpause": { "message": { "file": "ui/global_pause_screen.json", "type": "label" }, "quit_button": { "file": "ui/global_pause_screen.json", "type": "button", "extend": { "name": "light_text_form_fitting_button", "namespace": "common_buttons" } }, "globalpause_screen": { "file": "ui/global_pause_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "pause_screen_content": { "file": "ui/global_pause_screen.json", "type": "panel", "children": [ "transparentFill", "message", "quit_button" ] }, "pause_screen_content/transparentFill": { "file": "ui/global_pause_screen.json", "type": "image" }, "pause_screen_content/message": { "file": "ui/global_pause_screen.json", "type": "label", "extend": { "name": "message", "namespace": "globalpause" } }, "pause_screen_content/quit_button": { "file": "ui/global_pause_screen.json", "type": "button", "extend": { "name": "quit_button", "namespace": "globalpause" } } }, "grindstone": { "title_label": { "file": "ui/grindstone_screen.json", "type": "label" }, "arrow_icon": { "file": "ui/grindstone_screen.json", "type": "image" }, "cross_out_icon": { "file": "ui/grindstone_screen.json", "type": "image" }, "grindstone_output_slot_button": { "file": "ui/grindstone_screen.json", "type": "button", "extend": { "name": "container_slot_button_prototype", "namespace": "common" } }, "grindstone_item_slot": { "file": "ui/grindstone_screen.json", "type": "panel", "children": [ "container_item" ] }, "grindstone_item_slot/container_item": { "file": "ui/grindstone_screen.json", "type": "input_panel", "extend": { "name": "container_item", "namespace": "common" } }, "grindstone_middle_panel": { "file": "ui/grindstone_screen.json", "type": "panel", "children": [ "input_item_slot", "additional_item_slot" ] }, "grindstone_middle_panel/input_item_slot": { "file": "ui/grindstone_screen.json", "type": "panel", "extend": { "name": "grindstone_item_slot", "namespace": "grindstone" } }, "grindstone_middle_panel/additional_item_slot": { "file": "ui/grindstone_screen.json", "type": "panel", "extend": { "name": "grindstone_item_slot", "namespace": "grindstone" } }, "grindstone_slots_panel": { "file": "ui/grindstone_screen.json", "type": "panel", "children": [ "grindstone_middle_panel", "yields", "result_item_slot" ] }, "grindstone_slots_panel/grindstone_middle_panel": { "file": "ui/grindstone_screen.json", "type": "panel", "extend": { "name": "grindstone_middle_panel", "namespace": "grindstone" } }, "grindstone_slots_panel/yields": { "file": "ui/grindstone_screen.json", "type": "panel", "children": [ "arrow_icon", "cross_out_icon" ] }, "grindstone_slots_panel/yields/arrow_icon": { "file": "ui/grindstone_screen.json", "type": "image", "extend": { "name": "arrow_icon", "namespace": "grindstone" } }, "grindstone_slots_panel/yields/cross_out_icon": { "file": "ui/grindstone_screen.json", "type": "image", "extend": { "name": "cross_out_icon", "namespace": "grindstone" } }, "grindstone_slots_panel/result_item_slot": { "file": "ui/grindstone_screen.json", "type": "panel", "extend": { "name": "grindstone_item_slot", "namespace": "grindstone" } }, "top_half_panel": { "file": "ui/grindstone_screen.json", "type": "panel", "children": [ "title_label", "grindstone_slots_panel" ] }, "top_half_panel/title_label": { "file": "ui/grindstone_screen.json", "type": "label", "extend": { "name": "title_label", "namespace": "grindstone" } }, "top_half_panel/grindstone_slots_panel": { "file": "ui/grindstone_screen.json", "type": "panel", "extend": { "name": "grindstone_slots_panel", "namespace": "grindstone" } }, "grindstone_panel": { "file": "ui/grindstone_screen.json", "type": "panel", "children": [ "container_gamepad_helpers", "selected_item_details_factory", "item_lock_notification_factory", "root_panel", "flying_item_renderer" ] }, "grindstone_panel/container_gamepad_helpers": { "file": "ui/grindstone_screen.json", "type": "stack_panel", "extend": { "name": "container_gamepad_helpers", "namespace": "common" } }, "grindstone_panel/selected_item_details_factory": { "file": "ui/grindstone_screen.json", "type": "factory", "extend": { "name": "selected_item_details_factory", "namespace": "common" } }, "grindstone_panel/item_lock_notification_factory": { "file": "ui/grindstone_screen.json", "type": "factory", "extend": { "name": "item_lock_notification_factory", "namespace": "common" } }, "grindstone_panel/root_panel": { "file": "ui/grindstone_screen.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "common_panel", "grindstone_screen_inventory", "inventory_selected_icon_button", "gamepad_cursor" ] }, "grindstone_panel/root_panel/common_panel": { "file": "ui/grindstone_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "grindstone_panel/root_panel/grindstone_screen_inventory": { "file": "ui/grindstone_screen.json", "type": "panel", "children": [ "top_half_panel", "inventory_panel_bottom_half_with_label", "hotbar_grid", "inventory_take_progress_icon_button" ] }, "grindstone_panel/root_panel/grindstone_screen_inventory/top_half_panel": { "file": "ui/grindstone_screen.json", "type": "panel", "extend": { "name": "top_half_panel", "namespace": "grindstone" } }, "grindstone_panel/root_panel/grindstone_screen_inventory/inventory_panel_bottom_half_with_label": { "file": "ui/grindstone_screen.json", "type": "panel", "extend": { "name": "inventory_panel_bottom_half_with_label", "namespace": "common" } }, "grindstone_panel/root_panel/grindstone_screen_inventory/hotbar_grid": { "file": "ui/grindstone_screen.json", "type": "grid", "extend": { "name": "hotbar_grid_template", "namespace": "common" } }, "grindstone_panel/root_panel/grindstone_screen_inventory/inventory_take_progress_icon_button": { "file": "ui/grindstone_screen.json", "type": "button", "extend": { "name": "inventory_take_progress_icon_button", "namespace": "common" } }, "grindstone_panel/root_panel/inventory_selected_icon_button": { "file": "ui/grindstone_screen.json", "type": "button", "extend": { "name": "inventory_selected_icon_button", "namespace": "common" } }, "grindstone_panel/root_panel/gamepad_cursor": { "file": "ui/grindstone_screen.json", "type": "button", "extend": { "name": "gamepad_cursor_button", "namespace": "common" } }, "grindstone_panel/flying_item_renderer": { "file": "ui/grindstone_screen.json", "type": "custom", "extend": { "name": "flying_item_renderer", "namespace": "common" } }, "grindstone_screen": { "file": "ui/grindstone_screen.json", "type": "screen", "extend": { "name": "inventory_screen_common", "namespace": "common" } } }, "grindstone_pocket": { "background_image": { "file": "ui/grindstone_screen_pocket.json", "type": "image" }, "repair_title_label": { "file": "ui/grindstone_screen_pocket.json", "type": "label" }, "grindstone_middle_panel": { "file": "ui/grindstone_screen_pocket.json", "type": "panel", "children": [ "input_slot", "additional_slot" ] }, "grindstone_middle_panel/input_slot": { "file": "ui/grindstone_screen_pocket.json", "type": "input_panel", "extend": { "name": "pocket_ui_large_container_item", "namespace": "common" } }, "grindstone_middle_panel/additional_slot": { "file": "ui/grindstone_screen_pocket.json", "type": "input_panel", "extend": { "name": "pocket_ui_large_container_item", "namespace": "common" } }, "slots_panel": { "file": "ui/grindstone_screen_pocket.json", "type": "panel", "children": [ "grindstone_middle_panel", "arrow", "result_slot" ] }, "slots_panel/grindstone_middle_panel": { "file": "ui/grindstone_screen_pocket.json", "type": "panel", "extend": { "name": "grindstone_middle_panel", "namespace": "grindstone_pocket" } }, "slots_panel/arrow": { "file": "ui/grindstone_screen_pocket.json", "type": "image", "children": [ "cross_out" ] }, "slots_panel/arrow/cross_out": { "file": "ui/grindstone_screen_pocket.json", "type": "image" }, "slots_panel/result_slot": { "file": "ui/grindstone_screen_pocket.json", "type": "input_panel", "extend": { "name": "pocket_ui_large_container_item", "namespace": "common" } }, "grindstone_contents_panel": { "file": "ui/grindstone_screen_pocket.json", "type": "panel", "children": [ "repair_title_label", "slots_panel" ] }, "grindstone_contents_panel/repair_title_label": { "file": "ui/grindstone_screen_pocket.json", "type": "label", "extend": { "name": "repair_title_label", "namespace": "grindstone_pocket" } }, "grindstone_contents_panel/slots_panel": { "file": "ui/grindstone_screen_pocket.json", "type": "panel", "extend": { "name": "slots_panel", "namespace": "grindstone_pocket" } }, "inventory_grid": { "file": "ui/grindstone_screen_pocket.json", "type": "grid" }, "inventory_content": { "file": "ui/grindstone_screen_pocket.json", "type": "panel", "children": [ "scrolling_panel" ] }, "inventory_content/scrolling_panel": { "file": "ui/grindstone_screen_pocket.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "header": { "file": "ui/grindstone_screen_pocket.json", "type": "panel", "children": [ "header_background", "legacy_pocket_close_button", "panel" ] }, "header/header_background": { "file": "ui/grindstone_screen_pocket.json", "type": "image" }, "header/legacy_pocket_close_button": { "file": "ui/grindstone_screen_pocket.json", "type": "button", "extend": { "name": "legacy_pocket_close_button", "namespace": "common" } }, "header/panel": { "file": "ui/grindstone_screen_pocket.json", "type": "panel", "children": [ "title_label" ] }, "header/panel/title_label": { "file": "ui/grindstone_screen_pocket.json", "type": "label" }, "inventory_and_grindstone_panel": { "file": "ui/grindstone_screen_pocket.json", "type": "panel", "children": [ "inventory_half_screen", "grindstone_half_screen" ] }, "inventory_and_grindstone_panel/inventory_half_screen": { "file": "ui/grindstone_screen_pocket.json", "type": "panel", "children": [ "inventory_content" ] }, "inventory_and_grindstone_panel/inventory_half_screen/inventory_content": { "file": "ui/grindstone_screen_pocket.json", "type": "panel", "extend": { "name": "inventory_content", "namespace": "grindstone_pocket" } }, "inventory_and_grindstone_panel/grindstone_half_screen": { "file": "ui/grindstone_screen_pocket.json", "type": "panel", "children": [ "grindstone_content" ] }, "inventory_and_grindstone_panel/grindstone_half_screen/grindstone_content": { "file": "ui/grindstone_screen_pocket.json", "type": "panel", "extend": { "name": "grindstone_contents_panel", "namespace": "grindstone_pocket" } }, "header_and_content_stack_panel": { "file": "ui/grindstone_screen_pocket.json", "type": "stack_panel", "children": [ "header", "inventory_and_grindstone_panel" ] }, "header_and_content_stack_panel/header": { "file": "ui/grindstone_screen_pocket.json", "type": "panel", "extend": { "name": "header", "namespace": "grindstone_pocket" } }, "header_and_content_stack_panel/inventory_and_grindstone_panel": { "file": "ui/grindstone_screen_pocket.json", "type": "panel", "extend": { "name": "inventory_and_grindstone_panel", "namespace": "grindstone_pocket" } }, "grindstone_panel": { "file": "ui/grindstone_screen_pocket.json", "type": "panel", "children": [ "bg", "root_panel", "header_and_content_stack_panel", "container_gamepad_helpers", "inventory_selected_icon_button", "hold_icon", "selected_item_details_factory", "item_lock_notification_factory", "flying_item_renderer" ] }, "grindstone_panel/bg": { "file": "ui/grindstone_screen_pocket.json", "type": "image", "extend": { "name": "background_image", "namespace": "grindstone_pocket" } }, "grindstone_panel/root_panel": { "file": "ui/grindstone_screen_pocket.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" } }, "grindstone_panel/header_and_content_stack_panel": { "file": "ui/grindstone_screen_pocket.json", "type": "stack_panel", "extend": { "name": "header_and_content_stack_panel", "namespace": "grindstone_pocket" } }, "grindstone_panel/container_gamepad_helpers": { "file": "ui/grindstone_screen_pocket.json", "type": "stack_panel", "extend": { "name": "container_gamepad_helpers", "namespace": "common" } }, "grindstone_panel/inventory_selected_icon_button": { "file": "ui/grindstone_screen_pocket.json", "type": "button", "extend": { "name": "inventory_selected_icon_button", "namespace": "common" } }, "grindstone_panel/hold_icon": { "file": "ui/grindstone_screen_pocket.json", "type": "button", "extend": { "name": "inventory_take_progress_icon_button", "namespace": "common" } }, "grindstone_panel/selected_item_details_factory": { "file": "ui/grindstone_screen_pocket.json", "type": "factory", "extend": { "name": "selected_item_details_factory", "namespace": "common" } }, "grindstone_panel/item_lock_notification_factory": { "file": "ui/grindstone_screen_pocket.json", "type": "factory", "extend": { "name": "item_lock_notification_factory", "namespace": "common" } }, "grindstone_panel/flying_item_renderer": { "file": "ui/grindstone_screen_pocket.json", "type": "custom", "extend": { "name": "flying_item_renderer", "namespace": "common" } } }, "gamma_calibration": { "stack_panel_centering_panel": { "file": "ui/gamma_calibration_screen.json", "type": "panel", "children": [ "child" ] }, "stack_panel_centering_panel/child": { "file": "ui/gamma_calibration_screen.json", "type": "unknown" }, "stack_panel_align_left_panel": { "file": "ui/gamma_calibration_screen.json", "type": "panel", "children": [ "child" ] }, "stack_panel_align_left_panel/child": { "file": "ui/gamma_calibration_screen.json", "type": "unknown" }, "stack_panel_align_right_panel": { "file": "ui/gamma_calibration_screen.json", "type": "panel", "children": [ "child" ] }, "stack_panel_align_right_panel/child": { "file": "ui/gamma_calibration_screen.json", "type": "unknown" }, "image_panel": { "file": "ui/gamma_calibration_screen.json", "type": "stack_panel", "children": [ "padding", "image" ] }, "image_panel/padding": { "file": "ui/gamma_calibration_screen.json", "type": "panel" }, "image_panel/image": { "file": "ui/gamma_calibration_screen.json", "type": "image" }, "horizontal_padding": { "file": "ui/gamma_calibration_screen.json", "type": "panel" }, "image_stack": { "file": "ui/gamma_calibration_screen.json", "type": "stack_panel", "children": [ "not_visible_image", "padding_0", "barely_visible_image", "padding_1", "easily_visible_image" ] }, "image_stack/not_visible_image": { "file": "ui/gamma_calibration_screen.json", "type": "stack_panel", "extend": { "name": "image_panel", "namespace": "gamma_calibration" } }, "image_stack/padding_0": { "file": "ui/gamma_calibration_screen.json", "type": "panel", "extend": { "name": "horizontal_padding", "namespace": "gamma_calibration" } }, "image_stack/barely_visible_image": { "file": "ui/gamma_calibration_screen.json", "type": "stack_panel", "extend": { "name": "image_panel", "namespace": "gamma_calibration" } }, "image_stack/padding_1": { "file": "ui/gamma_calibration_screen.json", "type": "panel", "extend": { "name": "horizontal_padding", "namespace": "gamma_calibration" } }, "image_stack/easily_visible_image": { "file": "ui/gamma_calibration_screen.json", "type": "stack_panel", "extend": { "name": "image_panel", "namespace": "gamma_calibration" } }, "button_stack": { "file": "ui/gamma_calibration_screen.json", "type": "stack_panel", "children": [ "continue_button_panel", "padding", "reset_button_panel" ] }, "button_stack/continue_button_panel": { "file": "ui/gamma_calibration_screen.json", "type": "panel", "extend": { "name": "stack_panel_align_left_panel", "namespace": "gamma_calibration" } }, "button_stack/padding": { "file": "ui/gamma_calibration_screen.json", "type": "panel" }, "button_stack/reset_button_panel": { "file": "ui/gamma_calibration_screen.json", "type": "panel", "extend": { "name": "stack_panel_align_right_panel", "namespace": "gamma_calibration" } }, "message_panel": { "file": "ui/gamma_calibration_screen.json", "type": "panel", "children": [ "message_label" ] }, "message_panel/message_label": { "file": "ui/gamma_calibration_screen.json", "type": "label" }, "calibration_slider": { "file": "ui/gamma_calibration_screen.json", "type": "panel", "children": [ "slider" ] }, "calibration_slider/slider": { "file": "ui/gamma_calibration_screen.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "continue_button": { "file": "ui/gamma_calibration_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "reset_button": { "file": "ui/gamma_calibration_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "main_panel": { "file": "ui/gamma_calibration_screen.json", "type": "stack_panel", "children": [ "hdr_message_panel", "image_stack_panel", "padding_0", "slider_panel", "padding_1", "button_stack_panel" ] }, "main_panel/hdr_message_panel": { "file": "ui/gamma_calibration_screen.json", "type": "panel", "extend": { "name": "stack_panel_centering_panel", "namespace": "gamma_calibration" } }, "main_panel/image_stack_panel": { "file": "ui/gamma_calibration_screen.json", "type": "panel", "extend": { "name": "stack_panel_centering_panel", "namespace": "gamma_calibration" } }, "main_panel/padding_0": { "file": "ui/gamma_calibration_screen.json", "type": "panel" }, "main_panel/slider_panel": { "file": "ui/gamma_calibration_screen.json", "type": "panel", "extend": { "name": "stack_panel_centering_panel", "namespace": "gamma_calibration" } }, "main_panel/padding_1": { "file": "ui/gamma_calibration_screen.json", "type": "panel" }, "main_panel/button_stack_panel": { "file": "ui/gamma_calibration_screen.json", "type": "panel", "extend": { "name": "stack_panel_centering_panel", "namespace": "gamma_calibration" } }, "gamma_calibration_screen": { "file": "ui/gamma_calibration_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } } }, "horse": { "renderer_bg": { "file": "ui/horse_screen.json", "type": "image" }, "overlay_image": { "file": "ui/horse_screen.json", "type": "image" }, "saddle_image": { "file": "ui/horse_screen.json", "type": "image", "extend": { "name": "overlay_image", "namespace": "horse" } }, "horse_armor_image": { "file": "ui/horse_screen.json", "type": "image", "extend": { "name": "overlay_image", "namespace": "horse" } }, "carpet_image": { "file": "ui/horse_screen.json", "type": "image", "extend": { "name": "overlay_image", "namespace": "horse" } }, "nautilus_armor_image": { "file": "ui/horse_screen.json", "type": "image", "extend": { "name": "overlay_image", "namespace": "horse" } }, "horse_label": { "file": "ui/horse_screen.json", "type": "label", "extend": { "name": "section_heading_label", "namespace": "common" } }, "equip_grid": { "file": "ui/horse_screen.json", "type": "grid" }, "inv_grid": { "file": "ui/horse_screen.json", "type": "grid" }, "inv_bg_panel": { "file": "ui/horse_screen.json", "type": "panel", "children": [ "cell_image" ] }, "inv_bg_panel/cell_image": { "file": "ui/horse_screen.json", "type": "image", "extend": { "name": "cell_image", "namespace": "common" } }, "equip_panel": { "file": "ui/horse_screen.json", "type": "panel", "children": [ "equip_grid", "saddle", "horse_armor_0", "carpet_0", "nautilus_armor_0", "horse_armor_1", "carpet_1", "nautilus_armor_1" ] }, "equip_panel/equip_grid": { "file": "ui/horse_screen.json", "type": "grid", "extend": { "name": "equip_grid", "namespace": "horse" } }, "equip_panel/saddle": { "file": "ui/horse_screen.json", "type": "image", "extend": { "name": "saddle_image", "namespace": "horse" } }, "equip_panel/horse_armor_0": { "file": "ui/horse_screen.json", "type": "image", "extend": { "name": "horse_armor_image", "namespace": "horse" } }, "equip_panel/carpet_0": { "file": "ui/horse_screen.json", "type": "image", "extend": { "name": "carpet_image", "namespace": "horse" } }, "equip_panel/nautilus_armor_0": { "file": "ui/horse_screen.json", "type": "image", "extend": { "name": "nautilus_armor_image", "namespace": "horse" } }, "equip_panel/horse_armor_1": { "file": "ui/horse_screen.json", "type": "image", "extend": { "name": "horse_armor_image", "namespace": "horse" } }, "equip_panel/carpet_1": { "file": "ui/horse_screen.json", "type": "image", "extend": { "name": "carpet_image", "namespace": "horse" } }, "equip_panel/nautilus_armor_1": { "file": "ui/horse_screen.json", "type": "image", "extend": { "name": "nautilus_armor_image", "namespace": "horse" } }, "inv_panel": { "file": "ui/horse_screen.json", "type": "panel", "children": [ "inv_bg_panel", "inv_grid" ] }, "inv_panel/inv_bg_panel": { "file": "ui/horse_screen.json", "type": "panel", "extend": { "name": "inv_bg_panel", "namespace": "horse" } }, "inv_panel/inv_grid": { "file": "ui/horse_screen.json", "type": "grid", "extend": { "name": "inv_grid", "namespace": "horse" } }, "horse_renderer": { "file": "ui/horse_screen.json", "type": "panel", "children": [ "renderer_bg", "horse_custom_panel" ] }, "horse_renderer/renderer_bg": { "file": "ui/horse_screen.json", "type": "image", "extend": { "name": "renderer_bg", "namespace": "horse" } }, "horse_renderer/horse_custom_panel": { "file": "ui/horse_screen.json", "type": "panel", "children": [ "horse_custom" ] }, "horse_renderer/horse_custom_panel/horse_custom": { "file": "ui/horse_screen.json", "type": "custom" }, "horse_panel": { "file": "ui/horse_screen.json", "type": "panel", "children": [ "container_gamepad_helpers", "selected_item_details_factory", "item_lock_notification_factory", "root_panel", "flying_item_renderer" ] }, "horse_panel/container_gamepad_helpers": { "file": "ui/horse_screen.json", "type": "stack_panel", "extend": { "name": "container_gamepad_helpers", "namespace": "common" } }, "horse_panel/selected_item_details_factory": { "file": "ui/horse_screen.json", "type": "factory", "extend": { "name": "selected_item_details_factory", "namespace": "common" } }, "horse_panel/item_lock_notification_factory": { "file": "ui/horse_screen.json", "type": "factory", "extend": { "name": "item_lock_notification_factory", "namespace": "common" } }, "horse_panel/root_panel": { "file": "ui/horse_screen.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "common_panel", "horse_section_label", "inv_panel", "equipment", "renderer", "inventory_panel_bottom_half_with_label", "hotbar_grid_template", "inventory_selected_icon_button", "gamepad_cursor" ] }, "horse_panel/root_panel/common_panel": { "file": "ui/horse_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "horse_panel/root_panel/horse_section_label": { "file": "ui/horse_screen.json", "type": "label", "extend": { "name": "horse_label", "namespace": "horse" } }, "horse_panel/root_panel/inv_panel": { "file": "ui/horse_screen.json", "type": "panel", "extend": { "name": "inv_panel", "namespace": "horse" } }, "horse_panel/root_panel/equipment": { "file": "ui/horse_screen.json", "type": "panel", "extend": { "name": "equip_panel", "namespace": "horse" } }, "horse_panel/root_panel/renderer": { "file": "ui/horse_screen.json", "type": "panel", "extend": { "name": "horse_renderer", "namespace": "horse" } }, "horse_panel/root_panel/inventory_panel_bottom_half_with_label": { "file": "ui/horse_screen.json", "type": "panel", "extend": { "name": "inventory_panel_bottom_half_with_label", "namespace": "common" } }, "horse_panel/root_panel/hotbar_grid_template": { "file": "ui/horse_screen.json", "type": "grid", "extend": { "name": "hotbar_grid_template", "namespace": "common" } }, "horse_panel/root_panel/inventory_selected_icon_button": { "file": "ui/horse_screen.json", "type": "button", "extend": { "name": "inventory_selected_icon_button", "namespace": "common" } }, "horse_panel/root_panel/gamepad_cursor": { "file": "ui/horse_screen.json", "type": "button", "extend": { "name": "gamepad_cursor_button", "namespace": "common" } }, "horse_panel/flying_item_renderer": { "file": "ui/horse_screen.json", "type": "custom", "extend": { "name": "flying_item_renderer", "namespace": "common" } }, "horse_screen": { "file": "ui/horse_screen.json", "type": "screen", "extend": { "name": "inventory_screen_common", "namespace": "common" } } }, "horse_pocket": { "horse_panel": { "file": "ui/horse_screen_pocket.json", "type": "panel", "children": [ "gamepad_helpers", "inventory_selected_icon_button", "gamepad_cursor", "selected_item_details_factory", "item_lock_notification_factory", "base_panel", "flying_item_renderer" ] }, "horse_panel/gamepad_helpers": { "file": "ui/horse_screen_pocket.json", "type": "stack_panel", "extend": { "name": "container_gamepad_helpers", "namespace": "common" } }, "horse_panel/inventory_selected_icon_button": { "file": "ui/horse_screen_pocket.json", "type": "button", "extend": { "name": "inventory_selected_icon_button", "namespace": "common" } }, "horse_panel/gamepad_cursor": { "file": "ui/horse_screen_pocket.json", "type": "button", "extend": { "name": "gamepad_cursor_button", "namespace": "common" } }, "horse_panel/selected_item_details_factory": { "file": "ui/horse_screen_pocket.json", "type": "factory", "extend": { "name": "selected_item_details_factory", "namespace": "common" } }, "horse_panel/item_lock_notification_factory": { "file": "ui/horse_screen_pocket.json", "type": "factory", "extend": { "name": "item_lock_notification_factory", "namespace": "common" } }, "horse_panel/base_panel": { "file": "ui/horse_screen_pocket.json", "type": "panel", "children": [ "root_panel", "hold_icon", "bg", "interactive_tabs", "close_button", "inventory", "equipment", "chest_tab", "renderer_tab" ] }, "horse_panel/base_panel/root_panel": { "file": "ui/horse_screen_pocket.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" } }, "horse_panel/base_panel/hold_icon": { "file": "ui/horse_screen_pocket.json", "type": "button", "extend": { "name": "inventory_take_progress_icon_button", "namespace": "common" } }, "horse_panel/base_panel/bg": { "file": "ui/horse_screen_pocket.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "horse_panel/base_panel/interactive_tabs": { "file": "ui/horse_screen_pocket.json", "type": "panel", "extend": { "name": "interactive_tabs", "namespace": "horse_pocket" } }, "horse_panel/base_panel/close_button": { "file": "ui/horse_screen_pocket.json", "type": "button", "extend": { "name": "close_button", "namespace": "horse_pocket" } }, "horse_panel/base_panel/inventory": { "file": "ui/horse_screen_pocket.json", "type": "panel", "extend": { "name": "half_screen_inventory", "namespace": "horse_pocket" } }, "horse_panel/base_panel/equipment": { "file": "ui/horse_screen_pocket.json", "type": "panel", "extend": { "name": "equip_middle_screen", "namespace": "horse_pocket" } }, "horse_panel/base_panel/chest_tab": { "file": "ui/horse_screen_pocket.json", "type": "panel", "children": [ "visual_tabs_chest", "chest" ] }, "horse_panel/base_panel/chest_tab/visual_tabs_chest": { "file": "ui/horse_screen_pocket.json", "type": "panel", "extend": { "name": "visual_tabs_chest", "namespace": "horse_pocket" } }, "horse_panel/base_panel/chest_tab/chest": { "file": "ui/horse_screen_pocket.json", "type": "panel", "extend": { "name": "half_screen_chest", "namespace": "horse_pocket" } }, "horse_panel/base_panel/renderer_tab": { "file": "ui/horse_screen_pocket.json", "type": "panel", "children": [ "visual_tabs_equip", "renderer" ] }, "horse_panel/base_panel/renderer_tab/visual_tabs_equip": { "file": "ui/horse_screen_pocket.json", "type": "panel", "extend": { "name": "visual_tabs_equip", "namespace": "horse_pocket" } }, "horse_panel/base_panel/renderer_tab/renderer": { "file": "ui/horse_screen_pocket.json", "type": "panel", "extend": { "name": "half_screen_renderer", "namespace": "horse_pocket" } }, "horse_panel/flying_item_renderer": { "file": "ui/horse_screen_pocket.json", "type": "custom", "extend": { "name": "flying_item_renderer", "namespace": "common" } }, "background_image": { "file": "ui/horse_screen_pocket.json", "type": "image" }, "dark_bg": { "file": "ui/horse_screen_pocket.json", "type": "image" }, "renderer_bg": { "file": "ui/horse_screen_pocket.json", "type": "image" }, "saddle_image": { "file": "ui/horse_screen_pocket.json", "type": "image" }, "horse_armor_image": { "file": "ui/horse_screen_pocket.json", "type": "image" }, "carpet_image": { "file": "ui/horse_screen_pocket.json", "type": "image" }, "nautilus_armor_image": { "file": "ui/horse_screen_pocket.json", "type": "image" }, "panel_outline": { "file": "ui/horse_screen_pocket.json", "type": "image" }, "close_button_default": { "file": "ui/horse_screen_pocket.json", "type": "image" }, "close_button_pressed": { "file": "ui/horse_screen_pocket.json", "type": "image", "extend": { "name": "close_button_default", "namespace": "horse_pocket" } }, "close_button": { "file": "ui/horse_screen_pocket.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed" ] }, "close_button/default": { "file": "ui/horse_screen_pocket.json", "type": "image", "extend": { "name": "close_button_default", "namespace": "horse_pocket" } }, "close_button/hover": { "file": "ui/horse_screen_pocket.json", "type": "image", "extend": { "name": "close_button_default", "namespace": "horse_pocket" } }, "close_button/pressed": { "file": "ui/horse_screen_pocket.json", "type": "image", "extend": { "name": "close_button_pressed", "namespace": "horse_pocket" } }, "base_grid": { "file": "ui/horse_screen_pocket.json", "type": "grid" }, "inventory_grid": { "file": "ui/horse_screen_pocket.json", "type": "grid", "extend": { "name": "base_grid", "namespace": "horse_pocket" } }, "chest_grid": { "file": "ui/horse_screen_pocket.json", "type": "grid", "extend": { "name": "base_grid", "namespace": "horse_pocket" } }, "base_grid_panel": { "file": "ui/horse_screen_pocket.json", "type": "panel", "children": [ "panel_outline", "dark_bg", "scrolling_panel" ] }, "base_grid_panel/panel_outline": { "file": "ui/horse_screen_pocket.json", "type": "image", "extend": { "name": "panel_outline", "namespace": "horse_pocket" } }, "base_grid_panel/dark_bg": { "file": "ui/horse_screen_pocket.json", "type": "image", "extend": { "name": "dark_bg", "namespace": "horse_pocket" } }, "base_grid_panel/scrolling_panel": { "file": "ui/horse_screen_pocket.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "inventory_panel": { "file": "ui/horse_screen_pocket.json", "type": "panel", "extend": { "name": "base_grid_panel", "namespace": "horse_pocket" } }, "chest_panel": { "file": "ui/horse_screen_pocket.json", "type": "panel", "extend": { "name": "base_grid_panel", "namespace": "horse_pocket" } }, "half_screen": { "file": "ui/horse_screen_pocket.json", "type": "panel" }, "middle_screen": { "file": "ui/horse_screen_pocket.json", "type": "panel" }, "half_screen_inventory": { "file": "ui/horse_screen_pocket.json", "type": "panel", "extend": { "name": "half_screen", "namespace": "horse_pocket" }, "children": [ "inventory_panel" ] }, "half_screen_inventory/inventory_panel": { "file": "ui/horse_screen_pocket.json", "type": "panel", "extend": { "name": "inventory_panel", "namespace": "horse_pocket" } }, "half_screen_chest": { "file": "ui/horse_screen_pocket.json", "type": "panel", "extend": { "name": "half_screen", "namespace": "horse_pocket" }, "children": [ "chest_panel" ] }, "half_screen_chest/chest_panel": { "file": "ui/horse_screen_pocket.json", "type": "panel", "extend": { "name": "chest_panel", "namespace": "horse_pocket" } }, "horse_renderer": { "file": "ui/horse_screen_pocket.json", "type": "panel", "children": [ "horse_custom" ] }, "horse_renderer/horse_custom": { "file": "ui/horse_screen_pocket.json", "type": "custom" }, "half_screen_renderer": { "file": "ui/horse_screen_pocket.json", "type": "panel", "extend": { "name": "half_screen", "namespace": "horse_pocket" }, "children": [ "renderer_bg", "horse_custom_panel", "camel_custom_panel" ] }, "half_screen_renderer/renderer_bg": { "file": "ui/horse_screen_pocket.json", "type": "image", "extend": { "name": "renderer_bg", "namespace": "horse_pocket" } }, "half_screen_renderer/horse_custom_panel": { "file": "ui/horse_screen_pocket.json", "type": "panel", "extend": { "name": "horse_renderer", "namespace": "horse_pocket" } }, "half_screen_renderer/camel_custom_panel": { "file": "ui/horse_screen_pocket.json", "type": "panel", "extend": { "name": "horse_renderer", "namespace": "horse_pocket" } }, "equip_item_panel": { "file": "ui/horse_screen_pocket.json", "type": "panel", "children": [ "equip_container_item" ] }, "equip_item_panel/equip_container_item": { "file": "ui/horse_screen_pocket.json", "type": "input_panel", "extend": { "name": "pocket_ui_container_item", "namespace": "common" } }, "equip_grid": { "file": "ui/horse_screen_pocket.json", "type": "grid" }, "equip_middle_screen": { "file": "ui/horse_screen_pocket.json", "type": "panel", "extend": { "name": "middle_screen", "namespace": "horse_pocket" }, "children": [ "equip_grid_panel" ] }, "equip_middle_screen/equip_grid_panel": { "file": "ui/horse_screen_pocket.json", "type": "panel", "children": [ "equip_grid", "centered_0", "offset", "centered_1", "centered_2", "horse_armor_image", "carpet_image" ] }, "equip_middle_screen/equip_grid_panel/equip_grid": { "file": "ui/horse_screen_pocket.json", "type": "grid", "extend": { "name": "equip_grid", "namespace": "horse_pocket" } }, "equip_middle_screen/equip_grid_panel/centered_0": { "file": "ui/horse_screen_pocket.json", "type": "image", "extend": { "name": "saddle_image", "namespace": "horse_pocket" } }, "equip_middle_screen/equip_grid_panel/offset": { "file": "ui/horse_screen_pocket.json", "type": "image", "extend": { "name": "saddle_image", "namespace": "horse_pocket" } }, "equip_middle_screen/equip_grid_panel/centered_1": { "file": "ui/horse_screen_pocket.json", "type": "image", "extend": { "name": "horse_armor_image", "namespace": "horse_pocket" } }, "equip_middle_screen/equip_grid_panel/centered_2": { "file": "ui/horse_screen_pocket.json", "type": "image", "extend": { "name": "carpet_image", "namespace": "horse_pocket" } }, "equip_middle_screen/equip_grid_panel/horse_armor_image": { "file": "ui/horse_screen_pocket.json", "type": "image", "extend": { "name": "horse_armor_image", "namespace": "horse_pocket" } }, "equip_middle_screen/equip_grid_panel/carpet_image": { "file": "ui/horse_screen_pocket.json", "type": "image", "extend": { "name": "carpet_image", "namespace": "horse_pocket" } }, "horse_screen_tab_toggle": { "file": "ui/horse_screen_pocket.json", "type": "toggle", "extend": { "name": "toggle", "namespace": "common" } }, "interactive_tabs": { "file": "ui/horse_screen_pocket.json", "type": "panel", "children": [ "renderer_tab_interactive", "chest_tab_interactive" ] }, "interactive_tabs/renderer_tab_interactive": { "file": "ui/horse_screen_pocket.json", "type": "toggle", "extend": { "name": "horse_screen_tab_toggle", "namespace": "horse_pocket" } }, "interactive_tabs/chest_tab_interactive": { "file": "ui/horse_screen_pocket.json", "type": "toggle", "extend": { "name": "horse_screen_tab_toggle", "namespace": "horse_pocket" } }, "tab_front": { "file": "ui/horse_screen_pocket.json", "type": "image" }, "tab_back": { "file": "ui/horse_screen_pocket.json", "type": "image", "extend": { "name": "tab_front", "namespace": "horse_pocket" } }, "close_tab": { "file": "ui/horse_screen_pocket.json", "type": "image", "extend": { "name": "tab_back", "namespace": "horse_pocket" } }, "item_icon_renderer": { "file": "ui/horse_screen_pocket.json", "type": "custom" }, "saddle_icon_front": { "file": "ui/horse_screen_pocket.json", "type": "custom", "extend": { "name": "item_icon_renderer", "namespace": "horse_pocket" } }, "chest_icon_front": { "file": "ui/horse_screen_pocket.json", "type": "custom", "extend": { "name": "item_icon_renderer", "namespace": "horse_pocket" } }, "visual_tabs_equip": { "file": "ui/horse_screen_pocket.json", "type": "panel", "children": [ "close_tab", "chest", "equip" ] }, "visual_tabs_equip/close_tab": { "file": "ui/horse_screen_pocket.json", "type": "image", "extend": { "name": "close_tab", "namespace": "horse_pocket" }, "children": [ "nodrop_zone" ] }, "visual_tabs_equip/close_tab/nodrop_zone": { "file": "ui/horse_screen_pocket.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" } }, "visual_tabs_equip/chest": { "file": "ui/horse_screen_pocket.json", "type": "image", "extend": { "name": "tab_back", "namespace": "horse_pocket" }, "children": [ "chest_icon" ] }, "visual_tabs_equip/chest/chest_icon": { "file": "ui/horse_screen_pocket.json", "type": "custom", "extend": { "name": "chest_icon_front", "namespace": "horse_pocket" } }, "visual_tabs_equip/equip": { "file": "ui/horse_screen_pocket.json", "type": "image", "extend": { "name": "tab_front", "namespace": "horse_pocket" }, "children": [ "equip_icon" ] }, "visual_tabs_equip/equip/equip_icon": { "file": "ui/horse_screen_pocket.json", "type": "custom", "extend": { "name": "saddle_icon_front", "namespace": "horse_pocket" } }, "visual_tabs_chest": { "file": "ui/horse_screen_pocket.json", "type": "panel", "children": [ "close_tab", "chest", "equip" ] }, "visual_tabs_chest/close_tab": { "file": "ui/horse_screen_pocket.json", "type": "image", "extend": { "name": "close_tab", "namespace": "horse_pocket" } }, "visual_tabs_chest/chest": { "file": "ui/horse_screen_pocket.json", "type": "image", "extend": { "name": "tab_front", "namespace": "horse_pocket" }, "children": [ "chest_icon" ] }, "visual_tabs_chest/chest/chest_icon": { "file": "ui/horse_screen_pocket.json", "type": "custom", "extend": { "name": "chest_icon_front", "namespace": "horse_pocket" } }, "visual_tabs_chest/equip": { "file": "ui/horse_screen_pocket.json", "type": "image", "extend": { "name": "tab_back", "namespace": "horse_pocket" }, "children": [ "equip_icon" ] }, "visual_tabs_chest/equip/equip_icon": { "file": "ui/horse_screen_pocket.json", "type": "custom", "extend": { "name": "saddle_icon_front", "namespace": "horse_pocket" } } }, "how_to_play_common": { "dynamic_dialog_screen": { "file": "ui/how_to_play_common.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "screen_background": { "file": "ui/how_to_play_common.json", "type": "image" }, "top_bar": { "file": "ui/how_to_play_common.json", "type": "image" }, "button_panel": { "file": "ui/how_to_play_common.json", "type": "label", "extend": { "name": "new_ui_binding_button_label", "namespace": "common_buttons" } }, "light_text_button": { "file": "ui/how_to_play_common.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "action_button": { "file": "ui/how_to_play_common.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "how_to_play_common" } }, "topic_category": { "file": "ui/how_to_play_common.json", "type": "panel", "children": [ "top_padding", "category_text" ] }, "topic_category/top_padding": { "file": "ui/how_to_play_common.json", "type": "panel" }, "topic_category/category_text": { "file": "ui/how_to_play_common.json", "type": "label" }, "toggle_button_control": { "file": "ui/how_to_play_common.json", "type": "panel", "children": [ "tab_button_text" ] }, "toggle_button_control/tab_button_text": { "file": "ui/how_to_play_common.json", "type": "label" }, "glyph_button_control": { "file": "ui/how_to_play_common.json", "type": "panel", "children": [ "tab_button_text", "glyph" ] }, "glyph_button_control/tab_button_text": { "file": "ui/how_to_play_common.json", "type": "label" }, "glyph_button_control/glyph": { "file": "ui/how_to_play_common.json", "type": "image" }, "section_toggle_button": { "file": "ui/how_to_play_common.json", "type": "panel", "children": [ "section_toggle_button" ] }, "section_toggle_button/section_toggle_button": { "file": "ui/how_to_play_common.json", "type": "panel", "extend": { "name": "light_ui_toggle", "namespace": "common_toggles" } }, "edu_section_toggle_button": { "file": "ui/how_to_play_common.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "padding": { "file": "ui/how_to_play_common.json", "type": "panel" }, "touch_padding": { "file": "ui/how_to_play_common.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "small_padding": { "file": "ui/how_to_play_common.json", "type": "panel" }, "large_padding": { "file": "ui/how_to_play_common.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "section_contents_header": { "file": "ui/how_to_play_common.json", "type": "input_panel" }, "section_contents_footer": { "file": "ui/how_to_play_common.json", "type": "input_panel" }, "main_sections": { "file": "ui/how_to_play_common.json", "type": "stack_panel" }, "splitscreen_only_content": { "file": "ui/how_to_play_common.json", "type": "stack_panel", "children": [ "0", "0", "0", "0", "0", "0", "0", "0" ] }, "splitscreen_only_content/0": { "file": "ui/how_to_play_common.json", "type": "unknown" }, "tts_focus_border": { "file": "ui/how_to_play_common.json", "type": "button", "extend": { "name": "non_interact_focus_border_button", "namespace": "common" } }, "header_tts_focus_border": { "file": "ui/how_to_play_common.json", "type": "button", "extend": { "name": "tts_focus_border", "namespace": "how_to_play_common" } }, "header_background": { "file": "ui/how_to_play_common.json", "type": "image", "children": [ "header_label", "focus_border" ] }, "header_background/header_label": { "file": "ui/how_to_play_common.json", "type": "label" }, "header_background/focus_border": { "file": "ui/how_to_play_common.json", "type": "button", "extend": { "name": "header_tts_focus_border", "namespace": "how_to_play_common" } }, "header": { "file": "ui/how_to_play_common.json", "type": "panel", "children": [ "header" ] }, "header/header": { "file": "ui/how_to_play_common.json", "type": "image", "extend": { "name": "header_background", "namespace": "how_to_play_common" } }, "paragraph_panel": { "file": "ui/how_to_play_common.json", "type": "panel" }, "paragraph_label": { "file": "ui/how_to_play_common.json", "type": "label" }, "paragraph_tts_focus_border": { "file": "ui/how_to_play_common.json", "type": "button", "extend": { "name": "tts_focus_border", "namespace": "how_to_play_common" } }, "paragraph": { "file": "ui/how_to_play_common.json", "type": "panel", "extend": { "name": "paragraph_panel", "namespace": "how_to_play_common" }, "children": [ "label", "focus_border" ] }, "paragraph/label": { "file": "ui/how_to_play_common.json", "type": "label", "extend": { "name": "paragraph_label", "namespace": "how_to_play_common" } }, "paragraph/focus_border": { "file": "ui/how_to_play_common.json", "type": "button", "extend": { "name": "paragraph_tts_focus_border", "namespace": "how_to_play_common" } }, "paragraph_with_icons": { "file": "ui/how_to_play_common.json", "type": "panel", "extend": { "name": "paragraph_panel", "namespace": "how_to_play_common" }, "children": [ "label", "focus_border" ] }, "paragraph_with_icons/label": { "file": "ui/how_to_play_common.json", "type": "label", "extend": { "name": "paragraph_label", "namespace": "how_to_play_common" } }, "paragraph_with_icons/focus_border": { "file": "ui/how_to_play_common.json", "type": "button", "extend": { "name": "paragraph_tts_focus_border", "namespace": "how_to_play_common" } }, "input_conditional_paragraph": { "file": "ui/how_to_play_common.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "input_conditional_paragraph_with_icons": { "file": "ui/how_to_play_common.json", "type": "panel", "extend": { "name": "paragraph_with_icons", "namespace": "how_to_play_common" } }, "paragraph_keyboard": { "file": "ui/how_to_play_common.json", "type": "panel", "extend": { "name": "input_conditional_paragraph_with_icons", "namespace": "how_to_play_common" } }, "paragraph_gamepad": { "file": "ui/how_to_play_common.json", "type": "panel", "extend": { "name": "input_conditional_paragraph_with_icons", "namespace": "how_to_play_common" } }, "paragraph_gamepad_no_icons": { "file": "ui/how_to_play_common.json", "type": "panel", "extend": { "name": "input_conditional_paragraph", "namespace": "how_to_play_common" } }, "paragraph_touch": { "file": "ui/how_to_play_common.json", "type": "panel", "extend": { "name": "input_conditional_paragraph_with_icons", "namespace": "how_to_play_common" } }, "paragraph_touch_classic_dpad_spacing": { "file": "ui/how_to_play_common.json", "type": "panel", "extend": { "name": "input_conditional_paragraph_with_icons", "namespace": "how_to_play_common" } }, "paragraph_touch_no_icons": { "file": "ui/how_to_play_common.json", "type": "panel", "extend": { "name": "input_conditional_paragraph", "namespace": "how_to_play_common" } }, "paragraph_touch_joystick_tap": { "file": "ui/how_to_play_common.json", "type": "panel", "extend": { "name": "input_conditional_paragraph_with_icons", "namespace": "how_to_play_common" } }, "paragraph_touch_classic_dpad": { "file": "ui/how_to_play_common.json", "type": "panel", "extend": { "name": "input_conditional_paragraph_with_icons", "namespace": "how_to_play_common" } }, "paragraph_touch_joystick_crosshair": { "file": "ui/how_to_play_common.json", "type": "panel", "extend": { "name": "input_conditional_paragraph_with_icons", "namespace": "how_to_play_common" } }, "paragraph_not_touch": { "file": "ui/how_to_play_common.json", "type": "panel", "extend": { "name": "input_conditional_paragraph_with_icons", "namespace": "how_to_play_common" } }, "image": { "file": "ui/how_to_play_common.json", "type": "image" }, "how_to_play_header": { "file": "ui/how_to_play_common.json", "type": "panel", "children": [ "top_bar" ] }, "how_to_play_header/top_bar": { "file": "ui/how_to_play_common.json", "type": "image", "extend": { "name": "top_bar", "namespace": "how_to_play_common" }, "children": [ "back_button", "how_to_play_title", "gamepad_bumper_helpers" ] }, "how_to_play_header/top_bar/back_button": { "file": "ui/how_to_play_common.json", "type": "stack_panel", "extend": { "name": "back_title_button", "namespace": "common" } }, "how_to_play_header/top_bar/how_to_play_title": { "file": "ui/how_to_play_common.json", "type": "panel", "extend": { "name": "screen_header_title_panel", "namespace": "common" } }, "how_to_play_header/top_bar/gamepad_bumper_helpers": { "file": "ui/how_to_play_common.json", "type": "stack_panel", "extend": { "name": "gamepad_bumper_helpers", "namespace": "how_to_play_common" } }, "how_to_play_content": { "file": "ui/how_to_play_common.json", "type": "panel", "children": [ "header", "container" ] }, "how_to_play_content/header": { "file": "ui/how_to_play_common.json", "type": "panel", "extend": { "name": "how_to_play_header", "namespace": "how_to_play_common" } }, "how_to_play_content/container": { "file": "ui/how_to_play_common.json", "type": "panel" }, "dialog_content": { "file": "ui/how_to_play_common.json", "type": "panel", "children": [ "selector_area", "content_area", "section_divider" ] }, "dialog_content/selector_area": { "file": "ui/how_to_play_common.json", "type": "panel", "extend": { "name": "selector_area", "namespace": "how_to_play_common" } }, "dialog_content/content_area": { "file": "ui/how_to_play_common.json", "type": "panel", "extend": { "name": "content_area_wrapper", "namespace": "how_to_play_common" } }, "dialog_content/section_divider": { "file": "ui/how_to_play_common.json", "type": "image", "extend": { "name": "section_divider", "namespace": "how_to_play_common" } }, "scrollable_selector_area_content": { "file": "ui/how_to_play_common.json", "type": "panel" }, "selector_area": { "file": "ui/how_to_play_common.json", "type": "panel", "children": [ "scrolling_panel" ] }, "selector_area/scrolling_panel": { "file": "ui/how_to_play_common.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "section_divider": { "file": "ui/how_to_play_common.json", "type": "image" }, "content_area_wrapper": { "file": "ui/how_to_play_common.json", "type": "panel", "children": [ "content_area" ] }, "content_area_wrapper/content_area": { "file": "ui/how_to_play_common.json", "type": "panel", "extend": { "name": "content_area", "namespace": "how_to_play_common" } }, "content_area": { "file": "ui/how_to_play_common.json", "type": "panel", "children": [ "control" ] }, "content_area/control": { "file": "ui/how_to_play_common.json", "type": "stack_panel", "children": [ "scrolling_panel" ] }, "content_area/control/scrolling_panel": { "file": "ui/how_to_play_common.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "screen_base": { "file": "ui/how_to_play_common.json", "type": "screen", "extend": { "name": "dynamic_dialog_screen", "namespace": "how_to_play_common" } }, "gamepad_bumper_helper_description": { "file": "ui/how_to_play_common.json", "type": "label", "extend": { "name": "gamepad_helper_icon_description", "namespace": "common" } }, "gamepad_bumper_helpers": { "file": "ui/how_to_play_common.json", "type": "stack_panel", "children": [ "gamepad_helper_left_bumper", "padding", "gamepad_helper_right_bumper" ] }, "gamepad_bumper_helpers/gamepad_helper_left_bumper": { "file": "ui/how_to_play_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_left_bumper", "namespace": "common" } }, "gamepad_bumper_helpers/padding": { "file": "ui/how_to_play_common.json", "type": "panel" }, "gamepad_bumper_helpers/gamepad_helper_right_bumper": { "file": "ui/how_to_play_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_right_bumper", "namespace": "common" } } }, "how_to_play": { "how_to_play_screen": { "file": "ui/how_to_play_screen.json", "type": "screen", "extend": { "name": "screen_base", "namespace": "how_to_play_common" } }, "how_to_play_selector_stack_panel": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "children": [ "how_to_play_selector_pane" ] }, "how_to_play_selector_stack_panel/how_to_play_selector_pane": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "children": [ "getting_started_category", "moving_around_button", "gathering_resources_button", "selecting_items_button", "placing_blocks_button", "inventory_button", "preparing_for_the_night_category", "your_first_craft_button", "recipe_book_button", "the_crafting_table_button", "crafting_a_tool_button", "mining_button", "surviving_the_first_night_category", "nightfall_new_button", "building_a_shelter_button", "death_and_respawn_button", "getting_settled_category", "food_button", "beds_new_button", "improved_tools_button", "education_category", "world_builder_button", "permission_blocks_button", "chalkboard_button", "chemistry_button", "npc_button", "camera_button", "portfolio_button", "classroom_mode_button", "code_builder_button", "padding_1", "playing_together_button", "encyclopedia_button" ] }, "how_to_play_selector_stack_panel/how_to_play_selector_pane/getting_started_category": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "topic_category", "namespace": "how_to_play_common" } }, "how_to_play_selector_stack_panel/how_to_play_selector_pane/moving_around_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "moving_around_button", "namespace": "how_to_play" } }, "how_to_play_selector_stack_panel/how_to_play_selector_pane/gathering_resources_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "gathering_resources_button", "namespace": "how_to_play" } }, "how_to_play_selector_stack_panel/how_to_play_selector_pane/selecting_items_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "selecting_items_button", "namespace": "how_to_play" } }, "how_to_play_selector_stack_panel/how_to_play_selector_pane/placing_blocks_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "placing_blocks_button", "namespace": "how_to_play" } }, "how_to_play_selector_stack_panel/how_to_play_selector_pane/inventory_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "inventory_button", "namespace": "how_to_play" } }, "how_to_play_selector_stack_panel/how_to_play_selector_pane/preparing_for_the_night_category": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "topic_category", "namespace": "how_to_play_common" } }, "how_to_play_selector_stack_panel/how_to_play_selector_pane/your_first_craft_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "your_first_craft_button", "namespace": "how_to_play" } }, "how_to_play_selector_stack_panel/how_to_play_selector_pane/recipe_book_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "recipe_book_button", "namespace": "how_to_play" } }, "how_to_play_selector_stack_panel/how_to_play_selector_pane/the_crafting_table_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "the_crafting_table_button", "namespace": "how_to_play" } }, "how_to_play_selector_stack_panel/how_to_play_selector_pane/crafting_a_tool_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "crafting_a_tool_button", "namespace": "how_to_play" } }, "how_to_play_selector_stack_panel/how_to_play_selector_pane/mining_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "mining_button", "namespace": "how_to_play" } }, "how_to_play_selector_stack_panel/how_to_play_selector_pane/surviving_the_first_night_category": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "topic_category", "namespace": "how_to_play_common" } }, "how_to_play_selector_stack_panel/how_to_play_selector_pane/nightfall_new_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "nightfall_new_button", "namespace": "how_to_play" } }, "how_to_play_selector_stack_panel/how_to_play_selector_pane/building_a_shelter_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "building_a_shelter_button", "namespace": "how_to_play" } }, "how_to_play_selector_stack_panel/how_to_play_selector_pane/death_and_respawn_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "death_and_respawn_button", "namespace": "how_to_play" } }, "how_to_play_selector_stack_panel/how_to_play_selector_pane/getting_settled_category": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "topic_category", "namespace": "how_to_play_common" } }, "how_to_play_selector_stack_panel/how_to_play_selector_pane/food_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "food_button", "namespace": "how_to_play" } }, "how_to_play_selector_stack_panel/how_to_play_selector_pane/beds_new_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "beds_new_button", "namespace": "how_to_play" } }, "how_to_play_selector_stack_panel/how_to_play_selector_pane/improved_tools_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "improved_tools_button", "namespace": "how_to_play" } }, "how_to_play_selector_stack_panel/how_to_play_selector_pane/education_category": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "topic_category", "namespace": "how_to_play_common" } }, "how_to_play_selector_stack_panel/how_to_play_selector_pane/world_builder_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "world_builder_button", "namespace": "how_to_play" } }, "how_to_play_selector_stack_panel/how_to_play_selector_pane/permission_blocks_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "permission_blocks_button", "namespace": "how_to_play" } }, "how_to_play_selector_stack_panel/how_to_play_selector_pane/chalkboard_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "chalkboard_button", "namespace": "how_to_play" } }, "how_to_play_selector_stack_panel/how_to_play_selector_pane/chemistry_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "chemistry_button", "namespace": "how_to_play" } }, "how_to_play_selector_stack_panel/how_to_play_selector_pane/npc_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "npc_button", "namespace": "how_to_play" } }, "how_to_play_selector_stack_panel/how_to_play_selector_pane/camera_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "camera_button", "namespace": "how_to_play" } }, "how_to_play_selector_stack_panel/how_to_play_selector_pane/portfolio_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "portfolio_button", "namespace": "how_to_play" } }, "how_to_play_selector_stack_panel/how_to_play_selector_pane/classroom_mode_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "classroom_mode_button", "namespace": "how_to_play" } }, "how_to_play_selector_stack_panel/how_to_play_selector_pane/code_builder_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "code_builder_button", "namespace": "how_to_play" } }, "how_to_play_selector_stack_panel/how_to_play_selector_pane/padding_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "how_to_play_selector_stack_panel/how_to_play_selector_pane/playing_together_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "playing_together_button", "namespace": "how_to_play" } }, "how_to_play_selector_stack_panel/how_to_play_selector_pane/encyclopedia_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "encyclopedia_button", "namespace": "how_to_play" } }, "how_to_play_section_content_panels": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "children": [ "general_tips_sections" ] }, "how_to_play_section_content_panels/general_tips_sections": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "children": [ "section_contents_header", "moving_around_section", "gathering_resources_section", "selecting_items_section", "placing_blocks_section", "inventory_section", "your_first_craft_section", "recipe_book_section", "the_crafting_table_section", "crafting_a_tool_section", "mining_section", "nightfall_new_section", "building_a_shelter_section", "death_and_respawn_section", "food_section", "beds_new_section", "improved_tools_section", "world_builder_section", "permission_blocks_section", "chalkboard_section", "chemistry_section", "npc_section", "camera_section", "portfolio_section", "classroom_mode_section", "code_builder_section", "playing_together_section", "encyclopedia_section", "section_contents_footer" ] }, "how_to_play_section_content_panels/general_tips_sections/section_contents_header": { "file": "ui/how_to_play_screen.json", "type": "input_panel", "extend": { "name": "section_contents_header", "namespace": "how_to_play_common" } }, "how_to_play_section_content_panels/general_tips_sections/moving_around_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "moving_around_section", "namespace": "how_to_play" } }, "how_to_play_section_content_panels/general_tips_sections/gathering_resources_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "gathering_resources_section", "namespace": "how_to_play" } }, "how_to_play_section_content_panels/general_tips_sections/selecting_items_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "selecting_items_section", "namespace": "how_to_play" } }, "how_to_play_section_content_panels/general_tips_sections/placing_blocks_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "placing_blocks_section", "namespace": "how_to_play" } }, "how_to_play_section_content_panels/general_tips_sections/inventory_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "inventory_section", "namespace": "how_to_play" } }, "how_to_play_section_content_panels/general_tips_sections/your_first_craft_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "your_first_craft_section", "namespace": "how_to_play" } }, "how_to_play_section_content_panels/general_tips_sections/recipe_book_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "recipe_book_section", "namespace": "how_to_play" } }, "how_to_play_section_content_panels/general_tips_sections/the_crafting_table_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "the_crafting_table_section", "namespace": "how_to_play" } }, "how_to_play_section_content_panels/general_tips_sections/crafting_a_tool_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "crafting_a_tool_section", "namespace": "how_to_play" } }, "how_to_play_section_content_panels/general_tips_sections/mining_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "mining_section", "namespace": "how_to_play" } }, "how_to_play_section_content_panels/general_tips_sections/nightfall_new_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "nightfall_new_section", "namespace": "how_to_play" } }, "how_to_play_section_content_panels/general_tips_sections/building_a_shelter_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "building_a_shelter_section", "namespace": "how_to_play" } }, "how_to_play_section_content_panels/general_tips_sections/death_and_respawn_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "death_and_respawn_section", "namespace": "how_to_play" } }, "how_to_play_section_content_panels/general_tips_sections/food_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "food_section", "namespace": "how_to_play" } }, "how_to_play_section_content_panels/general_tips_sections/beds_new_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "beds_new_section", "namespace": "how_to_play" } }, "how_to_play_section_content_panels/general_tips_sections/improved_tools_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "improved_tools_section", "namespace": "how_to_play" } }, "how_to_play_section_content_panels/general_tips_sections/world_builder_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "world_builder_section", "namespace": "how_to_play" } }, "how_to_play_section_content_panels/general_tips_sections/permission_blocks_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "permission_blocks_section", "namespace": "how_to_play" } }, "how_to_play_section_content_panels/general_tips_sections/chalkboard_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "chalkboard_section", "namespace": "how_to_play" } }, "how_to_play_section_content_panels/general_tips_sections/chemistry_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "chemistry_section", "namespace": "how_to_play" } }, "how_to_play_section_content_panels/general_tips_sections/npc_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "npc_section", "namespace": "how_to_play" } }, "how_to_play_section_content_panels/general_tips_sections/camera_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "camera_section", "namespace": "how_to_play" } }, "how_to_play_section_content_panels/general_tips_sections/portfolio_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "portfolio_section", "namespace": "how_to_play" } }, "how_to_play_section_content_panels/general_tips_sections/classroom_mode_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "classroom_mode_section", "namespace": "how_to_play" } }, "how_to_play_section_content_panels/general_tips_sections/code_builder_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "code_builder_section", "namespace": "how_to_play" } }, "how_to_play_section_content_panels/general_tips_sections/playing_together_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "playing_together_section", "namespace": "how_to_play" } }, "how_to_play_section_content_panels/general_tips_sections/encyclopedia_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "encyclopedia_section", "namespace": "how_to_play" } }, "how_to_play_section_content_panels/general_tips_sections/section_contents_footer": { "file": "ui/how_to_play_screen.json", "type": "input_panel", "extend": { "name": "section_contents_footer", "namespace": "how_to_play_common" } }, "moving_around_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "moving_around_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2_keyboard", "paragraph_2_gamepad", "paragraph_touch_joystick_tap", "padding_2", "paragraph_3a_keyboard", "paragraph_3b_keyboard", "paragraph_3a_gamepad", "paragraph_3b_gamepad", "paragraph_3_touch_joystick_tap", "paragraph_3a_touch_classic_dpad", "paragraph_3b_touch_classic_dpad", "paragraph_3c_touch_classic_dpad", "paragraph_3d_touch_classic_dpad", "paragraph_3e_touch_classic_dpad", "paragraph_3_touch_joystick_crosshair", "image_1" ] }, "moving_around_section/paragraph_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "moving_around_section/padding_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "moving_around_section/paragraph_2_keyboard": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "moving_around_section/paragraph_2_gamepad": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad", "namespace": "how_to_play_common" } }, "moving_around_section/paragraph_touch_joystick_tap": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_no_icons", "namespace": "how_to_play_common" } }, "moving_around_section/padding_2": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "moving_around_section/paragraph_3a_keyboard": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "moving_around_section/paragraph_3b_keyboard": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "moving_around_section/paragraph_3a_gamepad": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad", "namespace": "how_to_play_common" } }, "moving_around_section/paragraph_3b_gamepad": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad", "namespace": "how_to_play_common" } }, "moving_around_section/paragraph_3_touch_joystick_tap": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_joystick_tap", "namespace": "how_to_play_common" } }, "moving_around_section/paragraph_3a_touch_classic_dpad": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_classic_dpad", "namespace": "how_to_play_common" } }, "moving_around_section/paragraph_3b_touch_classic_dpad": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_classic_dpad", "namespace": "how_to_play_common" } }, "moving_around_section/paragraph_3c_touch_classic_dpad": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_classic_dpad", "namespace": "how_to_play_common" } }, "moving_around_section/paragraph_3d_touch_classic_dpad": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_classic_dpad", "namespace": "how_to_play_common" } }, "moving_around_section/paragraph_3e_touch_classic_dpad": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_classic_dpad", "namespace": "how_to_play_common" } }, "moving_around_section/paragraph_3_touch_joystick_crosshair": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_joystick_crosshair", "namespace": "how_to_play_common" } }, "moving_around_section/image_1": { "file": "ui/how_to_play_screen.json", "type": "image", "extend": { "name": "image", "namespace": "how_to_play_common" } }, "gathering_resources_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "gathering_resources_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2_keyboard", "paragraph_2_gamepad", "paragraph_2_touch_joystick_tap", "paragraph_2_touch_classic_dpad", "paragraph_2_touch_joystick_crosshair", "padding_2", "paragraph_3" ] }, "gathering_resources_section/paragraph_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "gathering_resources_section/padding_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "gathering_resources_section/paragraph_2_keyboard": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "gathering_resources_section/paragraph_2_gamepad": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad", "namespace": "how_to_play_common" } }, "gathering_resources_section/paragraph_2_touch_joystick_tap": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_joystick_tap", "namespace": "how_to_play_common" } }, "gathering_resources_section/paragraph_2_touch_classic_dpad": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_classic_dpad", "namespace": "how_to_play_common" } }, "gathering_resources_section/paragraph_2_touch_joystick_crosshair": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_joystick_crosshair", "namespace": "how_to_play_common" } }, "gathering_resources_section/padding_2": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "gathering_resources_section/paragraph_3": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "selecting_items_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "selecting_items_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2_keyboard", "paragraph_2_gamepad", "paragraph_touch_joystick_tap", "padding_2", "paragraph_3_keyboard", "paragraph_3_gamepad", "paragraph_3_touch_joystick_tap", "paragraph_3_touch_classic_dpad", "paragraph_3_touch_joystick_crosshair", "padding_3", "header_1", "image_1_not_touch", "image_1_touch" ] }, "selecting_items_section/paragraph_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "selecting_items_section/padding_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "selecting_items_section/paragraph_2_keyboard": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "selecting_items_section/paragraph_2_gamepad": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad", "namespace": "how_to_play_common" } }, "selecting_items_section/paragraph_touch_joystick_tap": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_no_icons", "namespace": "how_to_play_common" } }, "selecting_items_section/padding_2": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "selecting_items_section/paragraph_3_keyboard": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "selecting_items_section/paragraph_3_gamepad": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad", "namespace": "how_to_play_common" } }, "selecting_items_section/paragraph_3_touch_joystick_tap": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_joystick_tap", "namespace": "how_to_play_common" } }, "selecting_items_section/paragraph_3_touch_classic_dpad": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_classic_dpad", "namespace": "how_to_play_common" } }, "selecting_items_section/paragraph_3_touch_joystick_crosshair": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_joystick_crosshair", "namespace": "how_to_play_common" } }, "selecting_items_section/padding_3": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "selecting_items_section/header_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "selecting_items_section/image_1_not_touch": { "file": "ui/how_to_play_screen.json", "type": "image", "extend": { "name": "image", "namespace": "how_to_play_common" } }, "selecting_items_section/image_1_touch": { "file": "ui/how_to_play_screen.json", "type": "image", "extend": { "name": "image", "namespace": "how_to_play_common" } }, "placing_blocks_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "placing_blocks_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2_keyboard", "paragraph_2_gamepad", "paragraph_2_touch_joystick_tap", "paragraph_2_touch_classic_dpad", "paragraph_2_touch_joystick_crosshair", "padding_2", "paragraph_3" ] }, "placing_blocks_section/paragraph_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "placing_blocks_section/padding_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "placing_blocks_section/paragraph_2_keyboard": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "placing_blocks_section/paragraph_2_gamepad": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad", "namespace": "how_to_play_common" } }, "placing_blocks_section/paragraph_2_touch_joystick_tap": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_joystick_tap", "namespace": "how_to_play_common" } }, "placing_blocks_section/paragraph_2_touch_classic_dpad": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_classic_dpad", "namespace": "how_to_play_common" } }, "placing_blocks_section/paragraph_2_touch_joystick_crosshair": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_joystick_crosshair", "namespace": "how_to_play_common" } }, "placing_blocks_section/padding_2": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "placing_blocks_section/paragraph_3": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "inventory_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "inventory_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "image_1_not_touch", "image_1_touch", "header_1", "paragraph_1_keyboard", "paragraph_1_gamepad", "paragraph_1_touch", "padding_2", "header_2", "paragraph_2_keyboard", "paragraph_2_gamepad", "paragraph_2_touch" ] }, "inventory_section/image_1_not_touch": { "file": "ui/how_to_play_screen.json", "type": "image", "extend": { "name": "image", "namespace": "how_to_play_common" } }, "inventory_section/image_1_touch": { "file": "ui/how_to_play_screen.json", "type": "image", "extend": { "name": "image", "namespace": "how_to_play_common" } }, "inventory_section/header_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "inventory_section/paragraph_1_keyboard": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "inventory_section/paragraph_1_gamepad": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad", "namespace": "how_to_play_common" } }, "inventory_section/paragraph_1_touch": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "inventory_section/padding_2": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "inventory_section/header_2": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "inventory_section/paragraph_2_keyboard": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "inventory_section/paragraph_2_gamepad": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad", "namespace": "how_to_play_common" } }, "inventory_section/paragraph_2_touch": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_no_icons", "namespace": "how_to_play_common" } }, "your_first_craft_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "your_first_craft_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "image_1_not_touch", "image_1_touch", "header_1", "paragraph_1", "padding_2", "paragraph_2", "padding_3", "paragraph_3_touch", "paragraph_3_keyboard", "paragraph_3_gamepad", "padding_4", "header_2", "paragraph_4", "padding_5", "paragraph_5" ] }, "your_first_craft_section/image_1_not_touch": { "file": "ui/how_to_play_screen.json", "type": "image", "extend": { "name": "image", "namespace": "how_to_play_common" } }, "your_first_craft_section/image_1_touch": { "file": "ui/how_to_play_screen.json", "type": "image", "extend": { "name": "image", "namespace": "how_to_play_common" } }, "your_first_craft_section/header_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "your_first_craft_section/paragraph_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "your_first_craft_section/padding_2": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "your_first_craft_section/paragraph_2": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "your_first_craft_section/padding_3": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "your_first_craft_section/paragraph_3_touch": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_no_icons", "namespace": "how_to_play_common" } }, "your_first_craft_section/paragraph_3_keyboard": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "your_first_craft_section/paragraph_3_gamepad": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad_no_icons", "namespace": "how_to_play_common" } }, "your_first_craft_section/padding_4": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "your_first_craft_section/header_2": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "your_first_craft_section/paragraph_4": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "your_first_craft_section/padding_5": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "your_first_craft_section/paragraph_5": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "recipe_book_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "recipe_book_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1_keyboard", "paragraph_1_gamepad", "paragraph_1_touch", "padding_1", "paragraph_2_keyboard", "paragraph_2_gamepad", "paragraph_2_touch" ] }, "recipe_book_section/paragraph_1_keyboard": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "recipe_book_section/paragraph_1_gamepad": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad_no_icons", "namespace": "how_to_play_common" } }, "recipe_book_section/paragraph_1_touch": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_no_icons", "namespace": "how_to_play_common" } }, "recipe_book_section/padding_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "recipe_book_section/paragraph_2_keyboard": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "recipe_book_section/paragraph_2_gamepad": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad_no_icons", "namespace": "how_to_play_common" } }, "recipe_book_section/paragraph_2_touch": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_no_icons", "namespace": "how_to_play_common" } }, "the_crafting_table_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "the_crafting_table_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "image_1", "paragraph_1", "padding_2", "paragraph_2_keyboard", "paragraph_2_gamepad", "paragraph_2_touch" ] }, "the_crafting_table_section/image_1": { "file": "ui/how_to_play_screen.json", "type": "image", "extend": { "name": "image", "namespace": "how_to_play_common" } }, "the_crafting_table_section/paragraph_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_with_icons", "namespace": "how_to_play_common" } }, "the_crafting_table_section/padding_2": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "the_crafting_table_section/paragraph_2_keyboard": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "the_crafting_table_section/paragraph_2_gamepad": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad", "namespace": "how_to_play_common" } }, "the_crafting_table_section/paragraph_2_touch": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_no_icons", "namespace": "how_to_play_common" } }, "crafting_a_tool_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "crafting_a_tool_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2_keyboard", "paragraph_2_gamepad", "paragraph_2_touch" ] }, "crafting_a_tool_section/paragraph_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_with_icons", "namespace": "how_to_play_common" } }, "crafting_a_tool_section/padding_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "crafting_a_tool_section/paragraph_2_keyboard": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "crafting_a_tool_section/paragraph_2_gamepad": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad", "namespace": "how_to_play_common" } }, "crafting_a_tool_section/paragraph_2_touch": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "mining_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "mining_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "image_1", "paragraph_1", "padding_2", "paragraph_2", "padding_3", "paragraph_3" ] }, "mining_section/image_1": { "file": "ui/how_to_play_screen.json", "type": "image", "extend": { "name": "image", "namespace": "how_to_play_common" } }, "mining_section/paragraph_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_with_icons", "namespace": "how_to_play_common" } }, "mining_section/padding_2": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "mining_section/paragraph_2": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_with_icons", "namespace": "how_to_play_common" } }, "mining_section/padding_3": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "mining_section/paragraph_3": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_with_icons", "namespace": "how_to_play_common" } }, "nightfall_new_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "nightfall_new_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2", "padding_2", "paragraph_3", "padding_3", "paragraph_4_keyboard", "paragraph_4_gamepad", "paragraph_4_touch_joystick_tap", "paragraph_4_touch_classic_dpad", "paragraph_4_touch_joystick_crosshair" ] }, "nightfall_new_section/paragraph_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "nightfall_new_section/padding_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "nightfall_new_section/paragraph_2": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "nightfall_new_section/padding_2": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "nightfall_new_section/paragraph_3": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "nightfall_new_section/padding_3": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "nightfall_new_section/paragraph_4_keyboard": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "nightfall_new_section/paragraph_4_gamepad": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad", "namespace": "how_to_play_common" } }, "nightfall_new_section/paragraph_4_touch_joystick_tap": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_joystick_tap", "namespace": "how_to_play_common" } }, "nightfall_new_section/paragraph_4_touch_classic_dpad": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_classic_dpad", "namespace": "how_to_play_common" } }, "nightfall_new_section/paragraph_4_touch_joystick_crosshair": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_touch_joystick_crosshair", "namespace": "how_to_play_common" } }, "building_a_shelter_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "building_a_shelter_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "image_1", "paragraph_1", "padding_2", "paragraph_2", "padding_3", "paragraph_3" ] }, "building_a_shelter_section/image_1": { "file": "ui/how_to_play_screen.json", "type": "image", "extend": { "name": "image", "namespace": "how_to_play_common" } }, "building_a_shelter_section/paragraph_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "building_a_shelter_section/padding_2": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "building_a_shelter_section/paragraph_2": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "building_a_shelter_section/padding_3": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "building_a_shelter_section/paragraph_3": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "death_and_respawn_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "death_and_respawn_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2" ] }, "death_and_respawn_section/paragraph_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_with_icons", "namespace": "how_to_play_common" } }, "death_and_respawn_section/padding_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "death_and_respawn_section/paragraph_2": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "food_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "food_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2_keyboard", "paragraph_2_gamepad", "paragraph_2_touch", "padding_2", "paragraph_3" ] }, "food_section/paragraph_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "food_section/padding_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "food_section/paragraph_2_keyboard": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "food_section/paragraph_2_gamepad": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad", "namespace": "how_to_play_common" } }, "food_section/paragraph_2_touch": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "food_section/padding_2": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "food_section/paragraph_3": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "beds_new_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "beds_new_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2", "padding_2", "paragraph_3" ] }, "beds_new_section/paragraph_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "beds_new_section/padding_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "beds_new_section/paragraph_2": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "beds_new_section/padding_2": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "beds_new_section/paragraph_3": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "improved_tools_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "improved_tools_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2" ] }, "improved_tools_section/paragraph_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "improved_tools_section/padding_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "improved_tools_section/paragraph_2": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "world_builder_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "edu_section_toggle_button", "namespace": "how_to_play_common" } }, "world_builder_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2", "padding_2", "paragraph_3", "padding_3", "paragraph_4", "padding_4", "paragraph_5", "padding_5", "paragraph_6", "paragraph_7", "padding_7", "paragraph_8", "padding_8", "paragraph_9" ] }, "world_builder_section/paragraph_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "world_builder_section/padding_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "world_builder_section/paragraph_2": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "world_builder_section/padding_2": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "world_builder_section/paragraph_3": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "world_builder_section/padding_3": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "small_padding", "namespace": "how_to_play_common" } }, "world_builder_section/paragraph_4": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "world_builder_section/padding_4": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "world_builder_section/paragraph_5": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "world_builder_section/padding_5": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "small_padding", "namespace": "how_to_play_common" } }, "world_builder_section/paragraph_6": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "world_builder_section/paragraph_7": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "world_builder_section/padding_7": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "world_builder_section/paragraph_8": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "world_builder_section/padding_8": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "small_padding", "namespace": "how_to_play_common" } }, "world_builder_section/paragraph_9": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "permission_blocks_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "edu_section_toggle_button", "namespace": "how_to_play_common" } }, "permission_blocks_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "header_1", "paragraph_2", "padding_3", "paragraph_3", "padding_4", "paragraph_4", "padding_5", "paragraph_5", "padding_7", "header_2", "paragraph_6" ] }, "permission_blocks_section/paragraph_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "permission_blocks_section/padding_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "permission_blocks_section/header_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "permission_blocks_section/paragraph_2": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "permission_blocks_section/padding_3": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "permission_blocks_section/paragraph_3": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "permission_blocks_section/padding_4": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "permission_blocks_section/paragraph_4": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "permission_blocks_section/padding_5": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "permission_blocks_section/paragraph_5": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "permission_blocks_section/padding_7": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "permission_blocks_section/header_2": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "permission_blocks_section/paragraph_6": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "chalkboard_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "edu_section_toggle_button", "namespace": "how_to_play_common" } }, "chalkboard_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1_keyboard", "paragraph_1_gamepad", "paragraph_1_touch" ] }, "chalkboard_section/paragraph_1_keyboard": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "chalkboard_section/paragraph_1_gamepad": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad", "namespace": "how_to_play_common" } }, "chalkboard_section/paragraph_1_touch": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "chemistry_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "edu_section_toggle_button", "namespace": "how_to_play_common" } }, "chemistry_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2" ] }, "chemistry_section/paragraph_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "chemistry_section/padding_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "chemistry_section/paragraph_2": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "npc_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "edu_section_toggle_button", "namespace": "how_to_play_common" } }, "npc_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2", "padding_2", "paragraph_3" ] }, "npc_section/paragraph_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "npc_section/padding_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "npc_section/paragraph_2": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "npc_section/padding_2": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "npc_section/paragraph_3": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "camera_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "edu_section_toggle_button", "namespace": "how_to_play_common" } }, "camera_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2_keyboard", "paragraph_2_gamepad", "paragraph_2_touch", "padding_2", "paragraph_3_keyboard", "paragraph_3_gamepad", "paragraph_3_touch", "padding_3", "paragraph_4" ] }, "camera_section/paragraph_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "camera_section/padding_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "camera_section/paragraph_2_keyboard": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "camera_section/paragraph_2_gamepad": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad", "namespace": "how_to_play_common" } }, "camera_section/paragraph_2_touch": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "camera_section/padding_2": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "camera_section/paragraph_3_keyboard": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "camera_section/paragraph_3_gamepad": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad", "namespace": "how_to_play_common" } }, "camera_section/paragraph_3_touch": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "camera_section/padding_3": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "camera_section/paragraph_4": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "portfolio_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "edu_section_toggle_button", "namespace": "how_to_play_common" } }, "portfolio_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1_keyboard", "paragraph_1_gamepad", "paragraph_1_touch" ] }, "portfolio_section/paragraph_1_keyboard": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "portfolio_section/paragraph_1_gamepad": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad", "namespace": "how_to_play_common" } }, "portfolio_section/paragraph_1_touch": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "classroom_mode_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "edu_section_toggle_button", "namespace": "how_to_play_common" } }, "classroom_mode_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2" ] }, "classroom_mode_section/paragraph_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "classroom_mode_section/padding_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "classroom_mode_section/paragraph_2": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "code_builder_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "edu_section_toggle_button", "namespace": "how_to_play_common" } }, "code_builder_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "paragraph_2_keyboard", "paragraph_2_gamepad", "paragraph_2_touch" ] }, "code_builder_section/paragraph_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "code_builder_section/padding_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "code_builder_section/paragraph_2_keyboard": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_keyboard", "namespace": "how_to_play_common" } }, "code_builder_section/paragraph_2_gamepad": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_gamepad", "namespace": "how_to_play_common" } }, "code_builder_section/paragraph_2_touch": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph_touch", "namespace": "how_to_play_common" } }, "playing_together_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "playing_together_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1", "padding_1", "header_1", "paragraph_2", "padding_2", "header_2", "paragraph_3", "padding_3", "paragraph_4", "padding_4", "paragraph_5", "padding_5", "header_3", "paragraph_6", "padding_6", "paragraph_7", "padding_7", "paragraph_8", "realms_button", "sign_in_button", "padding_8", "header_4", "paragraph_9", "padding_9", "paragraph_10" ] }, "playing_together_section/paragraph_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "playing_together_section/padding_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "playing_together_section/header_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "playing_together_section/paragraph_2": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "playing_together_section/padding_2": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "playing_together_section/header_2": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "playing_together_section/paragraph_3": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "playing_together_section/padding_3": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "playing_together_section/paragraph_4": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "playing_together_section/padding_4": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "playing_together_section/paragraph_5": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "playing_together_section/padding_5": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "playing_together_section/header_3": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "playing_together_section/paragraph_6": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "playing_together_section/padding_6": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "playing_together_section/paragraph_7": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "playing_together_section/padding_7": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "playing_together_section/paragraph_8": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "playing_together_section/realms_button": { "file": "ui/how_to_play_screen.json", "type": "button", "extend": { "name": "try_realms_action_button", "namespace": "how_to_play" } }, "playing_together_section/sign_in_button": { "file": "ui/how_to_play_screen.json", "type": "button", "extend": { "name": "try_realms_action_button", "namespace": "how_to_play" } }, "playing_together_section/padding_8": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "playing_together_section/header_4": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "header", "namespace": "how_to_play_common" } }, "playing_together_section/paragraph_9": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "playing_together_section/padding_9": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "how_to_play_common" } }, "playing_together_section/paragraph_10": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "try_realms_action_button": { "file": "ui/how_to_play_screen.json", "type": "button", "extend": { "name": "action_button", "namespace": "how_to_play_common" } }, "encyclopedia_button": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "section_toggle_button", "namespace": "how_to_play_common" } }, "encyclopedia_section": { "file": "ui/how_to_play_screen.json", "type": "stack_panel", "extend": { "name": "main_sections", "namespace": "how_to_play_common" }, "children": [ "paragraph_1" ] }, "encyclopedia_section/paragraph_1": { "file": "ui/how_to_play_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } } }, "hud": { "hud_player_renderer": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "hud_player" ] }, "hud_player_renderer/hud_player": { "file": "ui/hud_screen.json", "type": "custom" }, "hotbar_renderer": { "file": "ui/hud_screen.json", "type": "custom", "children": [ "hotbar_slot_image" ] }, "hotbar_renderer/hotbar_slot_image": { "file": "ui/hud_screen.json", "type": "image", "extend": { "name": "hotbar_slot_image", "namespace": "hud" } }, "cooldown_renderer": { "file": "ui/hud_screen.json", "type": "custom" }, "heart_renderer": { "file": "ui/hud_screen.json", "type": "custom" }, "horse_heart_renderer": { "file": "ui/hud_screen.json", "type": "custom" }, "armor_renderer": { "file": "ui/hud_screen.json", "type": "custom" }, "exp_progress_bar_and_hotbar": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "resizing_xp_bar_with_hotbar", "resizing_hotbar_no_xp_bar", "resizing_hotbar_locator_bar", "item_text_factory" ] }, "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "empty_progress_bar", "progress_text_label" ] }, "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar": { "file": "ui/hud_screen.json", "type": "image", "extend": { "name": "empty_progress_bar", "namespace": "hud" }, "children": [ "full_progress_bar" ] }, "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar": { "file": "ui/hud_screen.json", "type": "image", "extend": { "name": "full_progress_bar", "namespace": "hud" }, "children": [ "progress_bar_nub" ] }, "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub": { "file": "ui/hud_screen.json", "type": "image", "extend": { "name": "progress_bar_nub", "namespace": "hud" }, "children": [ "horse_jump_rend" ] }, "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub/horse_jump_rend": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "horse_jump_renderer", "namespace": "hud" }, "children": [ "dash_rend" ] }, "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub/horse_jump_rend/dash_rend": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "dash_renderer", "namespace": "hud" }, "children": [ "hotbar" ] }, "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub/horse_jump_rend/dash_rend/hotbar": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "hotbar_chooser", "namespace": "hud" } }, "exp_progress_bar_and_hotbar/resizing_xp_bar_with_hotbar/progress_text_label": { "file": "ui/hud_screen.json", "type": "label", "extend": { "name": "progress_text_label", "namespace": "hud" } }, "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "horse_jump_rend" ] }, "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "horse_jump_renderer", "namespace": "hud" }, "children": [ "dash_rend" ] }, "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend/dash_rend": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "dash_renderer", "namespace": "hud" }, "children": [ "hotbar" ] }, "exp_progress_bar_and_hotbar/resizing_hotbar_no_xp_bar/horse_jump_rend/dash_rend/hotbar": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "hotbar_chooser", "namespace": "hud" } }, "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "size_owner", "horse_jump_rend", "dash_rend", "locator_bar", "progress_text_label" ] }, "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "hotbar", "size_without_hotbar" ] }, "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner/hotbar": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "hotbar_chooser", "namespace": "hud" } }, "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/size_owner/size_without_hotbar": { "file": "ui/hud_screen.json", "type": "panel" }, "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/horse_jump_rend": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "horse_jump_renderer", "namespace": "hud" } }, "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/dash_rend": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "dash_renderer", "namespace": "hud" } }, "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/locator_bar": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "locator_bar", "namespace": "hud" } }, "exp_progress_bar_and_hotbar/resizing_hotbar_locator_bar/progress_text_label": { "file": "ui/hud_screen.json", "type": "label", "extend": { "name": "progress_text_label", "namespace": "hud" } }, "exp_progress_bar_and_hotbar/item_text_factory": { "file": "ui/hud_screen.json", "type": "factory" }, "exp_progress_bar_and_hotbar_pocket": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "resizing_xp_bar_with_hotbar", "resizing_locator_bar", "hotbar_panel", "item_text", "horse_jump_rend", "dash_rend" ] }, "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "empty_progress_bar", "progress_text_label" ] }, "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar": { "file": "ui/hud_screen.json", "type": "image", "extend": { "name": "empty_progress_bar", "namespace": "hud" }, "children": [ "full_progress_bar" ] }, "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar": { "file": "ui/hud_screen.json", "type": "image", "extend": { "name": "full_progress_bar", "namespace": "hud" }, "children": [ "progress_bar_nub" ] }, "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/empty_progress_bar/full_progress_bar/progress_bar_nub": { "file": "ui/hud_screen.json", "type": "image", "extend": { "name": "progress_bar_nub", "namespace": "hud" } }, "exp_progress_bar_and_hotbar_pocket/resizing_xp_bar_with_hotbar/progress_text_label": { "file": "ui/hud_screen.json", "type": "label", "extend": { "name": "progress_text_label", "namespace": "hud" } }, "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "locator_bar", "progress_text_label" ] }, "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar/locator_bar": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "locator_bar", "namespace": "hud" } }, "exp_progress_bar_and_hotbar_pocket/resizing_locator_bar/progress_text_label": { "file": "ui/hud_screen.json", "type": "label", "extend": { "name": "progress_text_label", "namespace": "hud" } }, "exp_progress_bar_and_hotbar_pocket/hotbar_panel": { "file": "ui/hud_screen.json", "type": "stack_panel", "extend": { "name": "hotbar_panel_pocket", "namespace": "hud" } }, "exp_progress_bar_and_hotbar_pocket/item_text": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "item_text_factory" ] }, "exp_progress_bar_and_hotbar_pocket/item_text/item_text_factory": { "file": "ui/hud_screen.json", "type": "factory" }, "exp_progress_bar_and_hotbar_pocket/horse_jump_rend": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "horse_jump_renderer", "namespace": "hud" } }, "exp_progress_bar_and_hotbar_pocket/dash_rend": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "dash_renderer", "namespace": "hud" } }, "full_progress_bar": { "file": "ui/hud_screen.json", "type": "image" }, "empty_progress_bar": { "file": "ui/hud_screen.json", "type": "image" }, "progress_bar_nub": { "file": "ui/hud_screen.json", "type": "image" }, "progress_text_label": { "file": "ui/hud_screen.json", "type": "label" }, "horse_jump_renderer": { "file": "ui/hud_screen.json", "type": "custom" }, "dash_renderer": { "file": "ui/hud_screen.json", "type": "custom" }, "locator_bar": { "file": "ui/hud_screen.json", "type": "custom" }, "hunger_renderer": { "file": "ui/hud_screen.json", "type": "custom" }, "bubbles_renderer": { "file": "ui/hud_screen.json", "type": "custom" }, "mob_effects_renderer": { "file": "ui/hud_screen.json", "type": "custom" }, "vignette_renderer": { "file": "ui/hud_screen.json", "type": "custom" }, "editor_gizmo_renderer": { "file": "ui/hud_screen.json", "type": "custom" }, "cursor_renderer": { "file": "ui/hud_screen.json", "type": "custom" }, "progress_indicator_renderer": { "file": "ui/hud_screen.json", "type": "custom" }, "camera_renderer": { "file": "ui/hud_screen.json", "type": "custom" }, "editor_volume_highlight_renderer": { "file": "ui/hud_screen.json", "type": "custom" }, "editor_compass_renderer": { "file": "ui/hud_screen.json", "type": "custom" }, "hotbar_hud_item_icon": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "item_renderer", "namespace": "common" } }, "elipses_image": { "file": "ui/hud_screen.json", "type": "image" }, "bound_button_label": { "file": "ui/hud_screen.json", "type": "unknown", "extend": { "name": "button_label", "namespace": "hud" } }, "default_borderless_button_layout": { "file": "ui/hud_screen.json", "type": "image" }, "hover_borderless_button_layout": { "file": "ui/hud_screen.json", "type": "image", "extend": { "name": "default_borderless_button_layout", "namespace": "hud" } }, "pressed_borderless_button_layout": { "file": "ui/hud_screen.json", "type": "image", "extend": { "name": "default_borderless_button_layout", "namespace": "hud" } }, "borderless_button": { "file": "ui/hud_screen.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed", "elipses" ] }, "borderless_button/default": { "file": "ui/hud_screen.json", "type": "image", "extend": { "name": "default_borderless_button_layout", "namespace": "hud" } }, "borderless_button/hover": { "file": "ui/hud_screen.json", "type": "image", "extend": { "name": "hover_borderless_button_layout", "namespace": "hud" } }, "borderless_button/pressed": { "file": "ui/hud_screen.json", "type": "image", "extend": { "name": "pressed_borderless_button_layout", "namespace": "hud" } }, "borderless_button/elipses": { "file": "ui/hud_screen.json", "type": "image", "extend": { "name": "elipses_image", "namespace": "hud" } }, "hotbar_elipses_button": { "file": "ui/hud_screen.json", "type": "button", "extend": { "name": "borderless_button", "namespace": "hud" } }, "start_cap_image": { "file": "ui/hud_screen.json", "type": "image" }, "end_cap_image": { "file": "ui/hud_screen.json", "type": "image", "extend": { "name": "start_cap_image", "namespace": "hud" } }, "hotbar_start_cap": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "start_cap_image" ] }, "hotbar_start_cap/start_cap_image": { "file": "ui/hud_screen.json", "type": "image", "extend": { "name": "start_cap_image", "namespace": "hud" } }, "hotbar_end_cap": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "hotbar_start_cap", "namespace": "hud" }, "children": [ "end_cap_image" ] }, "hotbar_end_cap/end_cap_image": { "file": "ui/hud_screen.json", "type": "image", "extend": { "name": "end_cap_image", "namespace": "hud" } }, "heart_image": { "file": "ui/hud_screen.json", "type": "image" }, "hotbar_slot_image": { "file": "ui/hud_screen.json", "type": "image" }, "hotbar_slot_selected_image": { "file": "ui/hud_screen.json", "type": "image" }, "gui_hotbar_slot_button_prototype": { "file": "ui/hud_screen.json", "type": "button" }, "player_position": { "file": "ui/hud_screen.json", "type": "image", "children": [ "player_position_text" ] }, "player_position/player_position_text": { "file": "ui/hud_screen.json", "type": "label" }, "number_of_days_played": { "file": "ui/hud_screen.json", "type": "image", "children": [ "number_of_days_played_text" ] }, "number_of_days_played/number_of_days_played_text": { "file": "ui/hud_screen.json", "type": "label" }, "chat_label": { "file": "ui/hud_screen.json", "type": "label" }, "chat_grid_item": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "chat_background" ] }, "chat_grid_item/chat_background": { "file": "ui/hud_screen.json", "type": "image", "children": [ "chat_text" ] }, "chat_grid_item/chat_background/chat_text": { "file": "ui/hud_screen.json", "type": "label", "extend": { "name": "chat_label", "namespace": "hud" } }, "chat_panel": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "stack_panel" ] }, "chat_panel/stack_panel": { "file": "ui/hud_screen.json", "type": "stack_panel" }, "subtitle_panel": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "stack_panel" ] }, "subtitle_panel/stack_panel": { "file": "ui/hud_screen.json", "type": "stack_panel" }, "item_durability": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "durability_bar", "namespace": "common" } }, "item_storage": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "storage_bar", "namespace": "common" } }, "container_item_lock_overlay": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "container_item_lock_overlay", "namespace": "common" } }, "item_lock_cell_image": { "file": "ui/hud_screen.json", "type": "image", "extend": { "name": "item_lock_cell_image", "namespace": "common" } }, "gui_hotbar_grid_item": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "hotbar_slot_selected_image", "hotbar_renderer", "hotbar_parent", "cooldown_renderer", "hotbar_slot_button" ] }, "gui_hotbar_grid_item/hotbar_slot_selected_image": { "file": "ui/hud_screen.json", "type": "image", "extend": { "name": "hotbar_slot_selected_image", "namespace": "hud" } }, "gui_hotbar_grid_item/hotbar_renderer": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "hotbar_renderer", "namespace": "hud" } }, "gui_hotbar_grid_item/hotbar_parent": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "item_icon", "item_count", "hotbar_hint", "item_dura", "item_store", "container_item_lock_overlay" ] }, "gui_hotbar_grid_item/hotbar_parent/item_icon": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "hotbar_hud_item_icon", "namespace": "hud" } }, "gui_hotbar_grid_item/hotbar_parent/item_count": { "file": "ui/hud_screen.json", "type": "label", "extend": { "name": "stack_count_label", "namespace": "common" } }, "gui_hotbar_grid_item/hotbar_parent/hotbar_hint": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "hotbar_hint", "namespace": "edu_common" } }, "gui_hotbar_grid_item/hotbar_parent/item_dura": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "item_durability", "namespace": "hud" } }, "gui_hotbar_grid_item/hotbar_parent/item_store": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "item_storage", "namespace": "hud" } }, "gui_hotbar_grid_item/hotbar_parent/container_item_lock_overlay": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "container_item_lock_overlay", "namespace": "hud" } }, "gui_hotbar_grid_item/cooldown_renderer": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "cooldown_renderer", "namespace": "hud" } }, "gui_hotbar_grid_item/hotbar_slot_button": { "file": "ui/hud_screen.json", "type": "button", "extend": { "name": "gui_hotbar_slot_button_prototype", "namespace": "hud" } }, "gui_hotbar_grid_item_pocket": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "hotbar_slot_selected_image", "hotbar_renderer", "hotbar_parent", "cooldown_renderer", "hotbar_slot_button" ] }, "gui_hotbar_grid_item_pocket/hotbar_slot_selected_image": { "file": "ui/hud_screen.json", "type": "image", "extend": { "name": "hotbar_slot_selected_image", "namespace": "hud" } }, "gui_hotbar_grid_item_pocket/hotbar_renderer": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "hotbar_renderer", "namespace": "hud" } }, "gui_hotbar_grid_item_pocket/hotbar_parent": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "item_icon", "item_count", "item_dura", "item_store", "container_item_lock_overlay" ] }, "gui_hotbar_grid_item_pocket/hotbar_parent/item_icon": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "hotbar_hud_item_icon", "namespace": "hud" } }, "gui_hotbar_grid_item_pocket/hotbar_parent/item_count": { "file": "ui/hud_screen.json", "type": "label", "extend": { "name": "stack_count_label", "namespace": "common" } }, "gui_hotbar_grid_item_pocket/hotbar_parent/item_dura": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "item_durability", "namespace": "hud" } }, "gui_hotbar_grid_item_pocket/hotbar_parent/item_store": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "item_storage", "namespace": "hud" } }, "gui_hotbar_grid_item_pocket/hotbar_parent/container_item_lock_overlay": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "container_item_lock_overlay", "namespace": "hud" } }, "gui_hotbar_grid_item_pocket/cooldown_renderer": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "cooldown_renderer", "namespace": "hud" } }, "gui_hotbar_grid_item_pocket/hotbar_slot_button": { "file": "ui/hud_screen.json", "type": "button", "extend": { "name": "gui_hotbar_slot_button_prototype", "namespace": "hud" } }, "centered_gui_elements": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "hud_player_rend_desktop" ] }, "centered_gui_elements/hud_player_rend_desktop": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "hud_player_renderer", "namespace": "hud" } }, "centered_gui_elements_at_bottom_middle": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "heart_rend", "horse_heart_rend_0", "horse_heart_rend_1", "armor_rend", "hunger_rend", "bubbles_rend_0", "bubbles_rend_1", "exp_rend" ] }, "centered_gui_elements_at_bottom_middle/heart_rend": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "heart_renderer", "namespace": "hud" } }, "centered_gui_elements_at_bottom_middle/horse_heart_rend_0": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "horse_heart_renderer", "namespace": "hud" } }, "centered_gui_elements_at_bottom_middle/horse_heart_rend_1": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "horse_heart_renderer", "namespace": "hud" } }, "centered_gui_elements_at_bottom_middle/armor_rend": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "armor_renderer", "namespace": "hud" } }, "centered_gui_elements_at_bottom_middle/hunger_rend": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "hunger_renderer", "namespace": "hud" } }, "centered_gui_elements_at_bottom_middle/bubbles_rend_0": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "bubbles_renderer", "namespace": "hud" } }, "centered_gui_elements_at_bottom_middle/bubbles_rend_1": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "bubbles_renderer", "namespace": "hud" } }, "centered_gui_elements_at_bottom_middle/exp_rend": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "exp_progress_bar_and_hotbar", "namespace": "hud" } }, "centered_gui_elements_at_bottom_middle_touch": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "heart_rend", "horse_heart_rend_0", "horse_heart_rend_1", "armor_rend", "hunger_rend", "bubbles_rend_0", "bubbles_rend_1", "exp_rend" ] }, "centered_gui_elements_at_bottom_middle_touch/heart_rend": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "heart_renderer", "namespace": "hud" } }, "centered_gui_elements_at_bottom_middle_touch/horse_heart_rend_0": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "horse_heart_renderer", "namespace": "hud" } }, "centered_gui_elements_at_bottom_middle_touch/horse_heart_rend_1": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "horse_heart_renderer", "namespace": "hud" } }, "centered_gui_elements_at_bottom_middle_touch/armor_rend": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "armor_renderer", "namespace": "hud" } }, "centered_gui_elements_at_bottom_middle_touch/hunger_rend": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "hunger_renderer", "namespace": "hud" } }, "centered_gui_elements_at_bottom_middle_touch/bubbles_rend_0": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "bubbles_renderer", "namespace": "hud" } }, "centered_gui_elements_at_bottom_middle_touch/bubbles_rend_1": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "bubbles_renderer", "namespace": "hud" } }, "centered_gui_elements_at_bottom_middle_touch/exp_rend": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "exp_progress_bar_and_hotbar", "namespace": "hud" } }, "not_centered_gui_elements": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "heart_rend", "horse_heart_rend", "hunger_rend", "armor_rend", "hud_player_rend_pocket", "bubbles_rend_0", "bubbles_rend_1" ] }, "not_centered_gui_elements/heart_rend": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "heart_renderer", "namespace": "hud" } }, "not_centered_gui_elements/horse_heart_rend": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "horse_heart_renderer", "namespace": "hud" } }, "not_centered_gui_elements/hunger_rend": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "hunger_renderer", "namespace": "hud" } }, "not_centered_gui_elements/armor_rend": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "armor_renderer", "namespace": "hud" } }, "not_centered_gui_elements/hud_player_rend_pocket": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "hud_player_renderer", "namespace": "hud" } }, "not_centered_gui_elements/bubbles_rend_0": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "bubbles_renderer", "namespace": "hud" } }, "not_centered_gui_elements/bubbles_rend_1": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "bubbles_renderer", "namespace": "hud" } }, "hotbar_chooser": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "desktop_hotbar", "pocket_hotbar" ] }, "hotbar_chooser/desktop_hotbar": { "file": "ui/hud_screen.json", "type": "stack_panel", "extend": { "name": "hotbar_panel", "namespace": "hud" } }, "hotbar_chooser/pocket_hotbar": { "file": "ui/hud_screen.json", "type": "stack_panel", "extend": { "name": "hotbar_panel", "namespace": "hud" } }, "hotbar_elipses_panel_right_content": { "file": "ui/hud_screen.json", "type": "stack_panel", "children": [ "elipses_content" ] }, "hotbar_elipses_panel_right_content/elipses_content": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "hotbar_elipses_panel_right_art", "namespace": "hud" } }, "hotbar_elipses_panel_right_art": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "slot", "button" ] }, "hotbar_elipses_panel_right_art/slot": { "file": "ui/hud_screen.json", "type": "image", "extend": { "name": "hotbar_slot_image", "namespace": "hud" } }, "hotbar_elipses_panel_right_art/button": { "file": "ui/hud_screen.json", "type": "button", "extend": { "name": "hotbar_elipses_button", "namespace": "hud" } }, "hotbar_elipses_panel_left_content": { "file": "ui/hud_screen.json", "type": "stack_panel", "children": [ "button" ] }, "hotbar_elipses_panel_left_content/button": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "hotbar_elipses_panel_left_art", "namespace": "hud" } }, "hotbar_elipses_panel_left_art": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "slot", "button" ] }, "hotbar_elipses_panel_left_art/slot": { "file": "ui/hud_screen.json", "type": "image", "extend": { "name": "hotbar_slot_image", "namespace": "hud" } }, "hotbar_elipses_panel_left_art/button": { "file": "ui/hud_screen.json", "type": "button", "extend": { "name": "hotbar_elipses_button", "namespace": "hud" } }, "hotbar_panel": { "file": "ui/hud_screen.json", "type": "stack_panel", "children": [ "hotbar_start_cap", "hotbar_elipses_panel_left", "hotbar_grid", "hotbar_elipses_panel_right", "hotbar_end_cap" ] }, "hotbar_panel/hotbar_start_cap": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "hotbar_start_cap", "namespace": "hud" } }, "hotbar_panel/hotbar_elipses_panel_left": { "file": "ui/hud_screen.json", "type": "stack_panel", "extend": { "name": "hotbar_elipses_panel_left_content", "namespace": "hud" } }, "hotbar_panel/hotbar_grid": { "file": "ui/hud_screen.json", "type": "grid", "extend": { "name": "hotbar_grid", "namespace": "hud" } }, "hotbar_panel/hotbar_elipses_panel_right": { "file": "ui/hud_screen.json", "type": "stack_panel", "extend": { "name": "hotbar_elipses_panel_right_content", "namespace": "hud" } }, "hotbar_panel/hotbar_end_cap": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "hotbar_end_cap", "namespace": "hud" } }, "hotbar_panel_pocket": { "file": "ui/hud_screen.json", "type": "stack_panel", "children": [ "hotbar_start_cap_frame", "hotbar_elipses_panel_left", "hotbar_grid", "hotbar_elipses_panel_right", "hotbar_end_cap_frame" ] }, "hotbar_panel_pocket/hotbar_start_cap_frame": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "hotbar_start_cap" ] }, "hotbar_panel_pocket/hotbar_start_cap_frame/hotbar_start_cap": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "hotbar_start_cap", "namespace": "hud" } }, "hotbar_panel_pocket/hotbar_elipses_panel_left": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "hotbar_elipses_panel_left" ] }, "hotbar_panel_pocket/hotbar_elipses_panel_left/hotbar_elipses_panel_left": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "hotbar_elipses_panel_left_art", "namespace": "hud" } }, "hotbar_panel_pocket/hotbar_grid": { "file": "ui/hud_screen.json", "type": "grid", "extend": { "name": "hotbar_grid", "namespace": "hud" } }, "hotbar_panel_pocket/hotbar_elipses_panel_right": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "hotbar_elipses_panel_right" ] }, "hotbar_panel_pocket/hotbar_elipses_panel_right/hotbar_elipses_panel_right": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "hotbar_elipses_panel_right_art", "namespace": "hud" } }, "hotbar_panel_pocket/hotbar_end_cap_frame": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "hotbar_end_cap" ] }, "hotbar_panel_pocket/hotbar_end_cap_frame/hotbar_end_cap": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "hotbar_end_cap", "namespace": "hud" } }, "hotbar_grid": { "file": "ui/hud_screen.json", "type": "grid" }, "edu_hotbar_grid": { "file": "ui/hud_screen.json", "type": "grid" }, "item_name_text_root": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "item_text_aligner" ] }, "item_name_text_root/item_text_aligner": { "file": "ui/hud_screen.json", "type": "stack_panel", "children": [ "item_text_control", "interact_padding", "survival_buffer" ] }, "item_name_text_root/item_text_aligner/item_text_control": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "item_text_background", "item_text_label" ] }, "item_name_text_root/item_text_aligner/item_text_control/item_text_background": { "file": "ui/hud_screen.json", "type": "image" }, "item_name_text_root/item_text_aligner/item_text_control/item_text_label": { "file": "ui/hud_screen.json", "type": "label" }, "item_name_text_root/item_text_aligner/interact_padding": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "item_name_text_root/item_text_aligner/survival_buffer": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "item_name_text": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "item_name_text_root", "namespace": "hud" } }, "jukebox_popup_text": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "item_name_text_root", "namespace": "hud" } }, "hud_tip_text": { "file": "ui/hud_screen.json", "type": "image", "children": [ "item_text_label" ] }, "hud_tip_text/item_text_label": { "file": "ui/hud_screen.json", "type": "label" }, "auto_save": { "file": "ui/hud_screen.json", "type": "image" }, "hud_actionbar_text": { "file": "ui/hud_screen.json", "type": "image", "children": [ "actionbar_message" ] }, "hud_actionbar_text/actionbar_message": { "file": "ui/hud_screen.json", "type": "label" }, "hud_title_text": { "file": "ui/hud_screen.json", "type": "stack_panel", "children": [ "title_frame", "subtitle_frame" ] }, "hud_title_text/title_frame": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "title_background", "title" ] }, "hud_title_text/title_frame/title_background": { "file": "ui/hud_screen.json", "type": "image" }, "hud_title_text/title_frame/title": { "file": "ui/hud_screen.json", "type": "label" }, "hud_title_text/subtitle_frame": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "subtitle_background", "subtitle" ] }, "hud_title_text/subtitle_frame/subtitle_background": { "file": "ui/hud_screen.json", "type": "image" }, "hud_title_text/subtitle_frame/subtitle": { "file": "ui/hud_screen.json", "type": "label" }, "boss_name_panel": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "boss_name" ] }, "boss_name_panel/boss_name": { "file": "ui/hud_screen.json", "type": "label" }, "tooltip_helper_icon_description": { "file": "ui/hud_screen.json", "type": "label", "children": [ "label_background" ] }, "tooltip_helper_icon_description/label_background": { "file": "ui/hud_screen.json", "type": "image" }, "tooltip_helper": { "file": "ui/hud_screen.json", "type": "stack_panel", "children": [ "icon", "padding", "centerer" ] }, "tooltip_helper/icon": { "file": "ui/hud_screen.json", "type": "unknown" }, "tooltip_helper/padding": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "tooltip_helper/centerer": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "desc" ] }, "tooltip_helper/centerer/desc": { "file": "ui/hud_screen.json", "type": "label", "extend": { "name": "tooltip_helper_icon_description", "namespace": "hud" } }, "tooltip_helper_form_fitting": { "file": "ui/hud_screen.json", "type": "stack_panel", "children": [ "icon", "padding", "centerer" ] }, "tooltip_helper_form_fitting/icon": { "file": "ui/hud_screen.json", "type": "unknown" }, "tooltip_helper_form_fitting/padding": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "tooltip_helper_form_fitting/centerer": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "desc" ] }, "tooltip_helper_form_fitting/centerer/desc": { "file": "ui/hud_screen.json", "type": "label", "extend": { "name": "tooltip_helper_icon_description", "namespace": "hud" } }, "keyboard_tooltip_helper": { "file": "ui/hud_screen.json", "type": "stack_panel", "extend": { "name": "tooltip_helper", "namespace": "hud" } }, "keyboard_tooltip_helper_form_fitting": { "file": "ui/hud_screen.json", "type": "stack_panel", "extend": { "name": "tooltip_helper_form_fitting", "namespace": "hud" } }, "mixed_tooltip_helper": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "gamepad_tooltip", "keyboard_tooltip" ] }, "mixed_tooltip_helper/gamepad_tooltip": { "file": "ui/hud_screen.json", "type": "stack_panel", "extend": { "name": "tooltip_helper", "namespace": "hud" } }, "mixed_tooltip_helper/keyboard_tooltip": { "file": "ui/hud_screen.json", "type": "stack_panel", "extend": { "name": "keyboard_tooltip_helper", "namespace": "hud" } }, "mixed_tooltip_helper_form_fitting": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "gamepad_tooltip", "keyboard_tooltip" ] }, "mixed_tooltip_helper_form_fitting/gamepad_tooltip": { "file": "ui/hud_screen.json", "type": "stack_panel", "extend": { "name": "tooltip_helper_form_fitting", "namespace": "hud" } }, "mixed_tooltip_helper_form_fitting/keyboard_tooltip": { "file": "ui/hud_screen.json", "type": "stack_panel", "extend": { "name": "keyboard_tooltip_helper_form_fitting", "namespace": "hud" } }, "base_icon_image": { "file": "ui/hud_screen.json", "type": "stack_panel", "children": [ "icon", "postfix_label_wrapper" ] }, "base_icon_image/icon": { "file": "ui/hud_screen.json", "type": "image" }, "base_icon_image/postfix_label_wrapper": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "label" ] }, "base_icon_image/postfix_label_wrapper/label": { "file": "ui/hud_screen.json", "type": "label" }, "base_keyboard_icon": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "icon" ] }, "base_keyboard_icon/icon": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "key_backing", "mouse_buttons" ] }, "base_keyboard_icon/icon/key_backing": { "file": "ui/hud_screen.json", "type": "image", "children": [ "key_label" ] }, "base_keyboard_icon/icon/key_backing/key_label": { "file": "ui/hud_screen.json", "type": "label" }, "base_keyboard_icon/icon/mouse_buttons": { "file": "ui/hud_screen.json", "type": "label" }, "left_helpers_edu": { "file": "ui/hud_screen.json", "type": "stack_panel", "children": [ "tip_window", "tip_paddding", "controls_toggle_label", "controls_inventory_label", "controls_menu_label" ] }, "left_helpers_edu/tip_window": { "file": "ui/hud_screen.json", "type": "image", "extend": { "name": "tooltip_background", "namespace": "common" }, "children": [ "stack_panel" ] }, "left_helpers_edu/tip_window/stack_panel": { "file": "ui/hud_screen.json", "type": "stack_panel" }, "left_helpers_edu/tip_paddding": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "left_helpers_edu/controls_toggle_label": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "tip" ] }, "left_helpers_edu/controls_toggle_label/tip": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "mixed_tooltip_helper", "namespace": "hud" } }, "left_helpers_edu/controls_inventory_label": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "tip" ] }, "left_helpers_edu/controls_inventory_label/tip": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "mixed_tooltip_helper", "namespace": "hud" } }, "left_helpers_edu/controls_menu_label": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "tip" ] }, "left_helpers_edu/controls_menu_label/tip": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "mixed_tooltip_helper", "namespace": "hud" } }, "left_helpers": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "stack_panel" ] }, "left_helpers/stack_panel": { "file": "ui/hud_screen.json", "type": "stack_panel" }, "emote_label_background": { "file": "ui/hud_screen.json", "type": "image" }, "emote_tip": { "file": "ui/hud_screen.json", "type": "image", "extend": { "name": "emote_label_background", "namespace": "hud" }, "children": [ "emote_keyboard_centerer", "emote_gamepad_helper" ] }, "emote_tip/emote_keyboard_centerer": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "emote_keyboard_helper" ] }, "emote_tip/emote_keyboard_centerer/emote_keyboard_helper": { "file": "ui/hud_screen.json", "type": "stack_panel", "extend": { "name": "keyboard_helper_keys", "namespace": "common" } }, "emote_tip/emote_gamepad_helper": { "file": "ui/hud_screen.json", "type": "unknown" }, "emote_expediate_helpers": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "stack_panel" ] }, "emote_expediate_helpers/stack_panel": { "file": "ui/hud_screen.json", "type": "stack_panel", "children": [ "emote_tip_0", "emote_tip_1", "emote_tip_2", "emote_tip_3" ] }, "emote_expediate_helpers/stack_panel/emote_tip_0": { "file": "ui/hud_screen.json", "type": "image", "extend": { "name": "emote_tip", "namespace": "hud" } }, "emote_expediate_helpers/stack_panel/emote_tip_1": { "file": "ui/hud_screen.json", "type": "image", "extend": { "name": "emote_tip", "namespace": "hud" } }, "emote_expediate_helpers/stack_panel/emote_tip_2": { "file": "ui/hud_screen.json", "type": "image", "extend": { "name": "emote_tip", "namespace": "hud" } }, "emote_expediate_helpers/stack_panel/emote_tip_3": { "file": "ui/hud_screen.json", "type": "image", "extend": { "name": "emote_tip", "namespace": "hud" } }, "right_helpers": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "stack_panel" ] }, "right_helpers/stack_panel": { "file": "ui/hud_screen.json", "type": "stack_panel" }, "boss_health_panel": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "boss_name", "progress_bar_for_collections" ] }, "boss_health_panel/boss_name": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "boss_name_panel", "namespace": "hud" } }, "boss_health_panel/progress_bar_for_collections": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "progress_bar_for_collections", "namespace": "common" } }, "boss_health_grid": { "file": "ui/hud_screen.json", "type": "grid" }, "wysiwyg_reset_modal_ok": { "file": "ui/hud_screen.json", "type": "button", "extend": { "name": "modal_button", "namespace": "library_modal" } }, "wysiwyg_reset_modal_cancel": { "file": "ui/hud_screen.json", "type": "button", "extend": { "name": "modal_button", "namespace": "library_modal" } }, "wysiwyg_close_without_saving_modal_ok": { "file": "ui/hud_screen.json", "type": "button", "extend": { "name": "modal_button", "namespace": "library_modal" } }, "wysiwyg_close_without_saving_modal_cancel": { "file": "ui/hud_screen.json", "type": "button", "extend": { "name": "modal_button", "namespace": "library_modal" } }, "root_panel": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "layout_customization_reset", "layout_customization_close_without_saving", "layout_customization_main_panel", "layout_customization_sub_panel", "layout_customization_hint_drag_frame", "layout_customization_hint_deselect_frame", "layout_customization_hint_saved", "left_helpers", "right_helpers", "subtitle_stack", "emote_expediate_helpers", "centered_gui_elements", "centered_gui_elements_at_bottom_middle", "centered_gui_elements_at_bottom_middle_touch", "not_centered_gui_elements", "gamertag_label_for_splitscreen", "exp_rend", "exp_rend_resizable", "hud_tip_text_factory", "hud_actionbar_text_area", "hud_title_text_area", "mob_effects_renderer", "vignette_rend", "curor_rend", "game_tip", "sidebar", "progress_rend", "chat_stack", "boss_health_panel", "save_icon" ] }, "root_panel/layout_customization_reset": { "file": "ui/hud_screen.json", "type": "image", "children": [ "layout_customization_reset_modal" ] }, "root_panel/layout_customization_reset/layout_customization_reset_modal": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "main_panel_two_buttons", "namespace": "common_dialogs" } }, "root_panel/layout_customization_close_without_saving": { "file": "ui/hud_screen.json", "type": "image", "children": [ "layout_customization_close_without_saving_modal" ] }, "root_panel/layout_customization_close_without_saving/layout_customization_close_without_saving_modal": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "main_panel_two_buttons", "namespace": "common_dialogs" } }, "root_panel/layout_customization_main_panel": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "layout_customization_main_panel", "namespace": "hud" } }, "root_panel/layout_customization_sub_panel": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "layout_customization_sub_panel", "namespace": "hud" } }, "root_panel/layout_customization_hint_drag_frame": { "file": "ui/hud_screen.json", "type": "image", "children": [ "layout_customization_hint_drag" ] }, "root_panel/layout_customization_hint_drag_frame/layout_customization_hint_drag": { "file": "ui/hud_screen.json", "type": "label" }, "root_panel/layout_customization_hint_deselect_frame": { "file": "ui/hud_screen.json", "type": "image", "children": [ "layout_customization_hint_deselect" ] }, "root_panel/layout_customization_hint_deselect_frame/layout_customization_hint_deselect": { "file": "ui/hud_screen.json", "type": "label" }, "root_panel/layout_customization_hint_saved": { "file": "ui/hud_screen.json", "type": "image", "children": [ "layout_customization_hint_saved" ] }, "root_panel/layout_customization_hint_saved/layout_customization_hint_saved": { "file": "ui/hud_screen.json", "type": "label" }, "root_panel/left_helpers": { "file": "ui/hud_screen.json", "type": "unknown" }, "root_panel/right_helpers": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "right_helpers", "namespace": "hud" } }, "root_panel/subtitle_stack": { "file": "ui/hud_screen.json", "type": "stack_panel", "children": [ "subtitle_padding", "subtitle_panel" ] }, "root_panel/subtitle_stack/subtitle_padding": { "file": "ui/hud_screen.json", "type": "panel" }, "root_panel/subtitle_stack/subtitle_panel": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "subtitle_panel", "namespace": "hud" } }, "root_panel/emote_expediate_helpers": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "emote_expediate_helpers", "namespace": "hud" } }, "root_panel/centered_gui_elements": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "centered_gui_elements", "namespace": "hud" } }, "root_panel/centered_gui_elements_at_bottom_middle": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "centered_gui_elements_at_bottom_middle", "namespace": "hud" } }, "root_panel/centered_gui_elements_at_bottom_middle_touch": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "centered_gui_elements_at_bottom_middle_touch", "namespace": "hud" } }, "root_panel/not_centered_gui_elements": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "not_centered_gui_elements", "namespace": "hud" } }, "root_panel/gamertag_label_for_splitscreen": { "file": "ui/hud_screen.json", "type": "label" }, "root_panel/exp_rend": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "exp_progress_bar_and_hotbar", "namespace": "hud" } }, "root_panel/exp_rend_resizable": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "exp_progress_bar_and_hotbar_pocket", "namespace": "hud" } }, "root_panel/hud_tip_text_factory": { "file": "ui/hud_screen.json", "type": "factory" }, "root_panel/hud_actionbar_text_area": { "file": "ui/hud_screen.json", "type": "panel" }, "root_panel/hud_title_text_area": { "file": "ui/hud_screen.json", "type": "panel" }, "root_panel/mob_effects_renderer": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "mob_effects_renderer", "namespace": "hud" } }, "root_panel/vignette_rend": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "vignette_renderer", "namespace": "hud" } }, "root_panel/curor_rend": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "cursor_renderer", "namespace": "hud" } }, "root_panel/game_tip": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "game_tip_factory", "namespace": "game_tip" } }, "root_panel/sidebar": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "scoreboard_sidebar", "namespace": "scoreboard" } }, "root_panel/progress_rend": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "progress_indicator_renderer", "namespace": "hud" } }, "root_panel/chat_stack": { "file": "ui/hud_screen.json", "type": "stack_panel", "children": [ "paper_doll_padding", "non_centered_gui_padding", "player_position", "number_of_days_played", "game_tip", "chat_panel" ] }, "root_panel/chat_stack/paper_doll_padding": { "file": "ui/hud_screen.json", "type": "panel" }, "root_panel/chat_stack/non_centered_gui_padding": { "file": "ui/hud_screen.json", "type": "panel" }, "root_panel/chat_stack/player_position": { "file": "ui/hud_screen.json", "type": "image", "extend": { "name": "player_position", "namespace": "hud" } }, "root_panel/chat_stack/number_of_days_played": { "file": "ui/hud_screen.json", "type": "image", "extend": { "name": "number_of_days_played", "namespace": "hud" } }, "root_panel/chat_stack/game_tip": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "game_tip_chat_stack_factory", "namespace": "game_tip" } }, "root_panel/chat_stack/chat_panel": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "chat_panel", "namespace": "hud" } }, "root_panel/boss_health_panel": { "file": "ui/hud_screen.json", "type": "stack_panel", "children": [ "boss_hud_padding", "boss_hud_touch_padding", "boss_hud_panel" ] }, "root_panel/boss_health_panel/boss_hud_padding": { "file": "ui/hud_screen.json", "type": "panel" }, "root_panel/boss_health_panel/boss_hud_touch_padding": { "file": "ui/hud_screen.json", "type": "panel" }, "root_panel/boss_health_panel/boss_hud_panel": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "boss_health_grid" ] }, "root_panel/boss_health_panel/boss_hud_panel/boss_health_grid": { "file": "ui/hud_screen.json", "type": "grid", "extend": { "name": "boss_health_grid", "namespace": "hud" } }, "root_panel/save_icon": { "file": "ui/hud_screen.json", "type": "image", "extend": { "name": "auto_save", "namespace": "hud" } }, "hud_screen": { "file": "ui/hud_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "hud_content": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "root_panel", "editor_gizmo_renderer", "editor_compass_renderer", "editor_volume_highlight_renderer", "camera_renderer" ] }, "hud_content/root_panel": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "root_panel", "namespace": "hud" } }, "hud_content/editor_gizmo_renderer": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "editor_gizmo_renderer", "namespace": "hud" } }, "hud_content/editor_compass_renderer": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "editor_compass_renderer", "namespace": "hud" } }, "hud_content/editor_volume_highlight_renderer": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "editor_volume_highlight_renderer", "namespace": "hud" } }, "hud_content/camera_renderer": { "file": "ui/hud_screen.json", "type": "custom", "extend": { "name": "camera_renderer", "namespace": "hud" } }, "layout_customization_main_panel_button": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "button" ] }, "layout_customization_main_panel_button/button": { "file": "ui/hud_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "layout_customization_main_panel": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "main_panel_frame" ] }, "layout_customization_main_panel/main_panel_frame": { "file": "ui/hud_screen.json", "type": "image", "children": [ "main_panel_content" ] }, "layout_customization_main_panel/main_panel_frame/main_panel_content": { "file": "ui/hud_screen.json", "type": "stack_panel", "children": [ "reset_button", "exit_button", "opacity_button", "size_button" ] }, "layout_customization_main_panel/main_panel_frame/main_panel_content/reset_button": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "layout_customization_main_panel_button", "namespace": "hud" } }, "layout_customization_main_panel/main_panel_frame/main_panel_content/exit_button": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "layout_customization_main_panel_button", "namespace": "hud" } }, "layout_customization_main_panel/main_panel_frame/main_panel_content/opacity_button": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "layout_customization_main_panel_button", "namespace": "hud" } }, "layout_customization_main_panel/main_panel_frame/main_panel_content/size_button": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "layout_customization_main_panel_button", "namespace": "hud" } }, "layout_customization_option_slider": { "file": "ui/hud_screen.json", "type": "stack_panel", "children": [ "slider", "reset" ] }, "layout_customization_option_slider/slider": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "layout_customization_option_slider/reset": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "reset_button" ] }, "layout_customization_option_slider/reset/reset_button": { "file": "ui/hud_screen.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed" ] }, "layout_customization_option_slider/reset/reset_button/default": { "file": "ui/hud_screen.json", "type": "image" }, "layout_customization_option_slider/reset/reset_button/hover": { "file": "ui/hud_screen.json", "type": "image" }, "layout_customization_option_slider/reset/reset_button/pressed": { "file": "ui/hud_screen.json", "type": "image" }, "layout_customization_option_content": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "scale_option", "opacity_option", "apply_to_all_toggle" ] }, "layout_customization_option_content/scale_option": { "file": "ui/hud_screen.json", "type": "stack_panel", "extend": { "name": "layout_customization_option_slider", "namespace": "hud" } }, "layout_customization_option_content/opacity_option": { "file": "ui/hud_screen.json", "type": "stack_panel", "extend": { "name": "layout_customization_option_slider", "namespace": "hud" } }, "layout_customization_option_content/apply_to_all_toggle": { "file": "ui/hud_screen.json", "type": "stack_panel", "children": [ "checkbox_frame", "caption_frame" ] }, "layout_customization_option_content/apply_to_all_toggle/checkbox_frame": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "checkbox_unchecked", "checkbox_checked" ] }, "layout_customization_option_content/apply_to_all_toggle/checkbox_frame/checkbox_unchecked": { "file": "ui/hud_screen.json", "type": "image" }, "layout_customization_option_content/apply_to_all_toggle/checkbox_frame/checkbox_checked": { "file": "ui/hud_screen.json", "type": "image" }, "layout_customization_option_content/apply_to_all_toggle/caption_frame": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "caption" ] }, "layout_customization_option_content/apply_to_all_toggle/caption_frame/caption": { "file": "ui/hud_screen.json", "type": "label" }, "layout_customization_option": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "content" ] }, "layout_customization_option/content": { "file": "ui/hud_screen.json", "type": "panel", "extend": { "name": "layout_customization_option_content", "namespace": "hud" } }, "layout_customization_sub_panel": { "file": "ui/hud_screen.json", "type": "panel", "children": [ "background" ] }, "layout_customization_sub_panel/background": { "file": "ui/hud_screen.json", "type": "image", "children": [ "sub_panel_content" ] }, "layout_customization_sub_panel/background/sub_panel_content": { "file": "ui/hud_screen.json", "type": "grid" } }, "host_options": { "button_label": { "file": "ui/host_options_screen.json", "type": "label" }, "host_image_panel": { "file": "ui/host_options_screen.json", "type": "panel", "children": [ "host_image" ] }, "host_image_panel/host_image": { "file": "ui/host_options_screen.json", "type": "label", "extend": { "name": "button_label", "namespace": "host_options" } }, "host_glyph_panel": { "file": "ui/host_options_screen.json", "type": "image" }, "scrollable_selector_area": { "file": "ui/host_options_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "host_main_button": { "file": "ui/host_options_screen.json", "type": "button", "extend": { "name": "light_text_form_fitting_button", "namespace": "common_buttons" } }, "scrolling_panel": { "file": "ui/host_options_screen.json", "type": "panel", "children": [ "background", "scrollable_tab" ] }, "scrolling_panel/background": { "file": "ui/host_options_screen.json", "type": "image" }, "scrolling_panel/scrollable_tab": { "file": "ui/host_options_screen.json", "type": "panel", "extend": { "name": "scrollable_selector_area", "namespace": "host_options" } }, "button_content": { "file": "ui/host_options_screen.json", "type": "panel", "children": [ "button_label", "image" ] }, "button_content/button_label": { "file": "ui/host_options_screen.json", "type": "label", "extend": { "name": "button_label", "namespace": "host_options" } }, "button_content/image": { "file": "ui/host_options_screen.json", "type": "image", "extend": { "name": "host_glyph_panel", "namespace": "host_options" } }, "main_light_button": { "file": "ui/host_options_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "main_dark_button": { "file": "ui/host_options_screen.json", "type": "button", "extend": { "name": "dark_content_button", "namespace": "common_buttons" } }, "host_grid": { "file": "ui/host_options_screen.json", "type": "grid" }, "host_sub_command_grid_item": { "file": "ui/host_options_screen.json", "type": "panel", "children": [ "host_option_banner" ] }, "host_sub_command_grid_item/host_option_banner": { "file": "ui/host_options_screen.json", "type": "button", "extend": { "name": "main_dark_button", "namespace": "host_options" } }, "return_from_sub_command_button": { "file": "ui/host_options_screen.json", "type": "button", "extend": { "name": "main_light_button", "namespace": "host_options" } }, "platform_icon_panel": { "file": "ui/host_options_screen.json", "type": "panel", "extend": { "name": "platform_icon_panel", "namespace": "pause" } }, "gamertag_wrapper": { "file": "ui/host_options_screen.json", "type": "panel", "extend": { "name": "gametag_wrapper", "namespace": "pause" } }, "player_pic_panel": { "file": "ui/host_options_screen.json", "type": "panel", "children": [ "player_gamer_pic", "player_local_icon" ] }, "player_pic_panel/player_gamer_pic": { "file": "ui/host_options_screen.json", "type": "image", "extend": { "name": "player_gamer_pic", "namespace": "pause" } }, "player_pic_panel/player_local_icon": { "file": "ui/host_options_screen.json", "type": "image", "extend": { "name": "player_local_icon", "namespace": "pause" } }, "player_button_content": { "file": "ui/host_options_screen.json", "type": "stack_panel", "children": [ "player_pic_panel", "player_gamertag", "platform_icon" ] }, "player_button_content/player_pic_panel": { "file": "ui/host_options_screen.json", "type": "panel", "extend": { "name": "player_pic_panel", "namespace": "host_options" } }, "player_button_content/player_gamertag": { "file": "ui/host_options_screen.json", "type": "panel", "extend": { "name": "gamertag_wrapper", "namespace": "host_options" } }, "player_button_content/platform_icon": { "file": "ui/host_options_screen.json", "type": "panel", "extend": { "name": "platform_icon_panel", "namespace": "host_options" } }, "player_grid_item": { "file": "ui/host_options_screen.json", "type": "panel", "children": [ "player_banner" ] }, "player_grid_item/player_banner": { "file": "ui/host_options_screen.json", "type": "button", "extend": { "name": "main_dark_button", "namespace": "host_options" } }, "host_friends_tab": { "file": "ui/host_options_screen.json", "type": "panel", "children": [ "players_grid" ] }, "host_friends_tab/players_grid": { "file": "ui/host_options_screen.json", "type": "grid", "extend": { "name": "host_grid", "namespace": "host_options" } }, "host_teleport_grid_item": { "file": "ui/host_options_screen.json", "type": "panel", "children": [ "host_option_toggle", "host_option_button" ] }, "host_teleport_grid_item/host_option_toggle": { "file": "ui/host_options_screen.json", "type": "panel", "extend": { "name": "light_text_toggle_collection", "namespace": "common_toggles" } }, "host_teleport_grid_item/host_option_button": { "file": "ui/host_options_screen.json", "type": "button", "extend": { "name": "main_dark_button", "namespace": "host_options" } }, "host_teleport_buttons": { "file": "ui/host_options_screen.json", "type": "stack_panel", "children": [ "return", "sub_tab" ] }, "host_teleport_buttons/return": { "file": "ui/host_options_screen.json", "type": "button", "extend": { "name": "return_from_sub_command_button", "namespace": "host_options" } }, "host_teleport_buttons/sub_tab": { "file": "ui/host_options_screen.json", "type": "panel", "children": [ "host_main_grid" ] }, "host_teleport_buttons/sub_tab/host_main_grid": { "file": "ui/host_options_screen.json", "type": "grid", "extend": { "name": "host_grid", "namespace": "host_options" } }, "host_teleport_player_list_buttons": { "file": "ui/host_options_screen.json", "type": "stack_panel", "children": [ "toggle" ] }, "host_teleport_player_list_buttons/toggle": { "file": "ui/host_options_screen.json", "type": "panel", "children": [ "host_time_panel" ] }, "host_teleport_player_list_buttons/toggle/host_time_panel": { "file": "ui/host_options_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "host_options" } }, "host_teleport_player_buttons": { "file": "ui/host_options_screen.json", "type": "stack_panel", "extend": { "name": "host_teleport_player_list_buttons", "namespace": "host_options" } }, "host_time_buttons": { "file": "ui/host_options_screen.json", "type": "stack_panel", "children": [ "return", "sub_tab" ] }, "host_time_buttons/return": { "file": "ui/host_options_screen.json", "type": "button", "extend": { "name": "return_from_sub_command_button", "namespace": "host_options" } }, "host_time_buttons/sub_tab": { "file": "ui/host_options_screen.json", "type": "panel", "children": [ "scrolli_scrolli_ravioli" ] }, "host_time_buttons/sub_tab/scrolli_scrolli_ravioli": { "file": "ui/host_options_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "host_options" } }, "host_weather_buttons": { "file": "ui/host_options_screen.json", "type": "stack_panel", "children": [ "return", "sub_tab" ] }, "host_weather_buttons/return": { "file": "ui/host_options_screen.json", "type": "button", "extend": { "name": "return_from_sub_command_button", "namespace": "host_options" } }, "host_weather_buttons/sub_tab": { "file": "ui/host_options_screen.json", "type": "panel", "children": [ "host_main_grid" ] }, "host_weather_buttons/sub_tab/host_main_grid": { "file": "ui/host_options_screen.json", "type": "grid", "extend": { "name": "host_grid", "namespace": "host_options" } }, "host_menu_grid_item": { "file": "ui/host_options_screen.json", "type": "panel", "children": [ "host_option_banner" ] }, "host_menu_grid_item/host_option_banner": { "file": "ui/host_options_screen.json", "type": "button", "extend": { "name": "main_light_button", "namespace": "host_options" } }, "host_main_buttons": { "file": "ui/host_options_screen.json", "type": "stack_panel", "children": [ "host_main_grid" ] }, "host_main_buttons/host_main_grid": { "file": "ui/host_options_screen.json", "type": "grid", "extend": { "name": "host_grid", "namespace": "host_options" } }, "host_panel": { "file": "ui/host_options_screen.json", "type": "panel", "children": [ "host_main_panel", "host_teleport_panel", "host_teleport_player_panel", "host_time_panel", "host_weather_panel" ] }, "host_panel/host_main_panel": { "file": "ui/host_options_screen.json", "type": "stack_panel", "extend": { "name": "host_main_buttons", "namespace": "host_options" } }, "host_panel/host_teleport_panel": { "file": "ui/host_options_screen.json", "type": "stack_panel", "extend": { "name": "host_teleport_buttons", "namespace": "host_options" } }, "host_panel/host_teleport_player_panel": { "file": "ui/host_options_screen.json", "type": "stack_panel", "extend": { "name": "host_teleport_player_buttons", "namespace": "host_options" } }, "host_panel/host_time_panel": { "file": "ui/host_options_screen.json", "type": "stack_panel", "extend": { "name": "host_time_buttons", "namespace": "host_options" } }, "host_panel/host_weather_panel": { "file": "ui/host_options_screen.json", "type": "stack_panel", "extend": { "name": "host_weather_buttons", "namespace": "host_options" } } }, "bed": { "in_bed_screen": { "file": "ui/in_bed_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "in_bed_screen_content": { "file": "ui/in_bed_screen.json", "type": "panel", "children": [ "wake_up_button_panel", "wake_up_label_panel", "select_button" ] }, "in_bed_screen_content/wake_up_button_panel": { "file": "ui/in_bed_screen.json", "type": "stack_panel", "children": [ "wake_up_button", "spacer", "chat_button" ] }, "in_bed_screen_content/wake_up_button_panel/wake_up_button": { "file": "ui/in_bed_screen.json", "type": "button", "extend": { "name": "light_text_form_fitting_button", "namespace": "common_buttons" } }, "in_bed_screen_content/wake_up_button_panel/spacer": { "file": "ui/in_bed_screen.json", "type": "panel" }, "in_bed_screen_content/wake_up_button_panel/chat_button": { "file": "ui/in_bed_screen.json", "type": "button", "extend": { "name": "light_text_form_fitting_button", "namespace": "common_buttons" } }, "in_bed_screen_content/wake_up_label_panel": { "file": "ui/in_bed_screen.json", "type": "label" }, "in_bed_screen_content/select_button": { "file": "ui/in_bed_screen.json", "type": "panel", "extend": { "name": "a_button_panel", "namespace": "death" } }, "background": { "file": "ui/in_bed_screen.json", "type": "image" } }, "im_reader": { "reader_button_contents": { "file": "ui/immersive_reader.json", "type": "image" }, "reader_button": { "file": "ui/immersive_reader.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "webview": { "file": "ui/immersive_reader.json", "type": "custom" }, "loading": { "file": "ui/immersive_reader.json", "type": "stack_panel", "children": [ "animation_item", "loading_text_item", "bottom_padding", "cancel_button" ] }, "loading/animation_item": { "file": "ui/immersive_reader.json", "type": "panel", "extend": { "name": "vertical_stack_item", "namespace": "edu_common" }, "children": [ "animation" ] }, "loading/animation_item/animation": { "file": "ui/immersive_reader.json", "type": "image", "extend": { "name": "edu_loading_animation", "namespace": "edu_common" } }, "loading/loading_text_item": { "file": "ui/immersive_reader.json", "type": "panel", "extend": { "name": "vertical_stack_item", "namespace": "edu_common" }, "children": [ "loading_text" ] }, "loading/loading_text_item/loading_text": { "file": "ui/immersive_reader.json", "type": "label" }, "loading/bottom_padding": { "file": "ui/immersive_reader.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "loading/cancel_button": { "file": "ui/immersive_reader.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "no_retry_error_button": { "file": "ui/immersive_reader.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "retry_error_buttons": { "file": "ui/immersive_reader.json", "type": "stack_panel", "children": [ "try_again", "middle_padding", "cancel" ] }, "retry_error_buttons/try_again": { "file": "ui/immersive_reader.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "retry_error_buttons/middle_padding": { "file": "ui/immersive_reader.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "retry_error_buttons/cancel": { "file": "ui/immersive_reader.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "error": { "file": "ui/immersive_reader.json", "type": "stack_panel", "children": [ "error_text", "error_buttons" ] }, "error/error_text": { "file": "ui/immersive_reader.json", "type": "label" }, "error/error_buttons": { "file": "ui/immersive_reader.json", "type": "panel", "children": [ "retry", "no_retry" ] }, "error/error_buttons/retry": { "file": "ui/immersive_reader.json", "type": "stack_panel", "extend": { "name": "retry_error_buttons", "namespace": "im_reader" } }, "error/error_buttons/no_retry": { "file": "ui/immersive_reader.json", "type": "button", "extend": { "name": "no_retry_error_button", "namespace": "im_reader" } }, "loading_and_error_panel": { "file": "ui/immersive_reader.json", "type": "panel", "children": [ "loading", "error" ] }, "loading_and_error_panel/loading": { "file": "ui/immersive_reader.json", "type": "stack_panel", "extend": { "name": "loading", "namespace": "im_reader" } }, "loading_and_error_panel/error": { "file": "ui/immersive_reader.json", "type": "stack_panel", "extend": { "name": "error", "namespace": "im_reader" } }, "immersive_reader_screen_content": { "file": "ui/immersive_reader.json", "type": "panel", "children": [ "loading_and_error", "webview" ] }, "immersive_reader_screen_content/loading_and_error": { "file": "ui/immersive_reader.json", "type": "panel", "extend": { "name": "form_fit_screen_with_title_and_close", "namespace": "popup_dialog" } }, "immersive_reader_screen_content/webview": { "file": "ui/immersive_reader.json", "type": "custom", "extend": { "name": "webview", "namespace": "im_reader" } }, "immersive_reader_screen": { "file": "ui/immersive_reader.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } } }, "crafting": { "inventory_x_gamepad_helper": { "file": "ui/inventory_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_x_14", "namespace": "common" } }, "inventory_y_gamepad_helper": { "file": "ui/inventory_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_y_14", "namespace": "common" } }, "inventory_a_gamepad_helper": { "file": "ui/inventory_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_a_14", "namespace": "common" } }, "inventory_b_gamepad_helper": { "file": "ui/inventory_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_b_14", "namespace": "common" } }, "gamepad_helper_left_trigger": { "file": "ui/inventory_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_left_trigger", "namespace": "common" } }, "gamepad_helper_right_trigger": { "file": "ui/inventory_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_right_trigger", "namespace": "common" } }, "container_gamepad_helpers_second_row": { "file": "ui/inventory_screen.json", "type": "stack_panel", "children": [ "buffer_panel_left", "left_thumbstick_visibility", "fill_panel", "right_thumbstick_visibility", "buffer_panel_right" ] }, "container_gamepad_helpers_second_row/buffer_panel_left": { "file": "ui/inventory_screen.json", "type": "panel" }, "container_gamepad_helpers_second_row/left_thumbstick_visibility": { "file": "ui/inventory_screen.json", "type": "panel", "children": [ "gamepad_helper_thumbstick_left" ] }, "container_gamepad_helpers_second_row/left_thumbstick_visibility/gamepad_helper_thumbstick_left": { "file": "ui/inventory_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_thumbstick_left", "namespace": "common" } }, "container_gamepad_helpers_second_row/fill_panel": { "file": "ui/inventory_screen.json", "type": "panel" }, "container_gamepad_helpers_second_row/right_thumbstick_visibility": { "file": "ui/inventory_screen.json", "type": "panel", "children": [ "gamepad_helper_thumbstick_right" ] }, "container_gamepad_helpers_second_row/right_thumbstick_visibility/gamepad_helper_thumbstick_right": { "file": "ui/inventory_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_thumbstick_right", "namespace": "common" } }, "container_gamepad_helpers_second_row/buffer_panel_right": { "file": "ui/inventory_screen.json", "type": "panel" }, "inventory_container_slot_button": { "file": "ui/inventory_screen.json", "type": "button", "extend": { "name": "container_slot_button_prototype", "namespace": "common" } }, "creative_hotbar_container_slot_button": { "file": "ui/inventory_screen.json", "type": "button", "extend": { "name": "inventory_container_slot_button", "namespace": "crafting" } }, "no_coalesce_container_slot_button": { "file": "ui/inventory_screen.json", "type": "button", "extend": { "name": "inventory_container_slot_button", "namespace": "crafting" } }, "creative_no_coalesce_container_slot_button": { "file": "ui/inventory_screen.json", "type": "button", "extend": { "name": "no_coalesce_container_slot_button", "namespace": "crafting" } }, "output_no_coalesce_container_slot_button": { "file": "ui/inventory_screen.json", "type": "button", "extend": { "name": "no_coalesce_container_slot_button", "namespace": "crafting" } }, "item_renderer": { "file": "ui/inventory_screen.json", "type": "custom" }, "equipment_icon": { "file": "ui/inventory_screen.json", "type": "image", "extend": { "name": "tab_icon_image", "namespace": "common" } }, "construction_icon": { "file": "ui/inventory_screen.json", "type": "image", "extend": { "name": "tab_icon_image", "namespace": "common" } }, "nature_icon": { "file": "ui/inventory_screen.json", "type": "image", "extend": { "name": "tab_icon_image", "namespace": "common" } }, "items_icon": { "file": "ui/inventory_screen.json", "type": "image", "extend": { "name": "tab_icon_image", "namespace": "common" } }, "empty_tab_panel": { "file": "ui/inventory_screen.json", "type": "panel", "children": [ "img" ] }, "empty_tab_panel/img": { "file": "ui/inventory_screen.json", "type": "unknown" }, "top_tab": { "file": "ui/inventory_screen.json", "type": "panel", "extend": { "name": "tab_top", "namespace": "common_tabs" } }, "search_tab": { "file": "ui/inventory_screen.json", "type": "panel", "extend": { "name": "top_tab", "namespace": "crafting" } }, "construction_tab": { "file": "ui/inventory_screen.json", "type": "panel", "extend": { "name": "top_tab", "namespace": "crafting" } }, "equipment_tab": { "file": "ui/inventory_screen.json", "type": "panel", "extend": { "name": "top_tab", "namespace": "crafting" } }, "nature_tab": { "file": "ui/inventory_screen.json", "type": "panel", "extend": { "name": "top_tab", "namespace": "crafting" } }, "items_tab": { "file": "ui/inventory_screen.json", "type": "panel", "extend": { "name": "top_tab", "namespace": "crafting" } }, "tab_navigation_panel_layout": { "file": "ui/inventory_screen.json", "type": "stack_panel", "children": [ "navigation_tabs" ] }, "tab_navigation_panel_layout/navigation_tabs": { "file": "ui/inventory_screen.json", "type": "panel", "children": [ "content" ] }, "tab_navigation_panel_layout/navigation_tabs/content": { "file": "ui/inventory_screen.json", "type": "stack_panel", "children": [ "construction_tab_panel", "equipment_tab_panel", "items_tab_panel", "nature_tab_panel", "fill_panel_0", "search_tab_holder" ] }, "tab_navigation_panel_layout/navigation_tabs/content/construction_tab_panel": { "file": "ui/inventory_screen.json", "type": "panel", "children": [ "construction_tab_factory" ] }, "tab_navigation_panel_layout/navigation_tabs/content/construction_tab_panel/construction_tab_factory": { "file": "ui/inventory_screen.json", "type": "factory" }, "tab_navigation_panel_layout/navigation_tabs/content/equipment_tab_panel": { "file": "ui/inventory_screen.json", "type": "panel", "children": [ "equipment_tab_factory" ] }, "tab_navigation_panel_layout/navigation_tabs/content/equipment_tab_panel/equipment_tab_factory": { "file": "ui/inventory_screen.json", "type": "factory" }, "tab_navigation_panel_layout/navigation_tabs/content/items_tab_panel": { "file": "ui/inventory_screen.json", "type": "panel", "children": [ "items_tab_factory" ] }, "tab_navigation_panel_layout/navigation_tabs/content/items_tab_panel/items_tab_factory": { "file": "ui/inventory_screen.json", "type": "factory" }, "tab_navigation_panel_layout/navigation_tabs/content/nature_tab_panel": { "file": "ui/inventory_screen.json", "type": "panel", "children": [ "nature_tab_factory" ] }, "tab_navigation_panel_layout/navigation_tabs/content/nature_tab_panel/nature_tab_factory": { "file": "ui/inventory_screen.json", "type": "factory" }, "tab_navigation_panel_layout/navigation_tabs/content/fill_panel_0": { "file": "ui/inventory_screen.json", "type": "panel" }, "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder": { "file": "ui/inventory_screen.json", "type": "panel", "children": [ "search_tab_end_creative", "search_tab_creative", "search_tab_survival" ] }, "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_end_creative": { "file": "ui/inventory_screen.json", "type": "panel", "extend": { "name": "search_tab", "namespace": "crafting" } }, "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_creative": { "file": "ui/inventory_screen.json", "type": "panel", "extend": { "name": "search_tab", "namespace": "crafting" } }, "tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_survival": { "file": "ui/inventory_screen.json", "type": "panel", "extend": { "name": "search_tab", "namespace": "crafting" } }, "tab_content_padding": { "file": "ui/inventory_screen.json", "type": "panel" }, "creative_label": { "file": "ui/inventory_screen.json", "type": "label" }, "tab_content": { "file": "ui/inventory_screen.json", "type": "panel", "children": [ "tab_content_search_bar_panel", "nodrop_zone" ] }, "tab_content/tab_content_search_bar_panel": { "file": "ui/inventory_screen.json", "type": "stack_panel", "children": [ "vertical_padding_1", "pocket_vertical_padding_1", "creative_label_and_filter_toggle_holder", "vertical_padding_2", "pocket_vertical_padding_2", "pocket_vertical_padding_3", "search_and_filter_panel", "vertical_padding_3", "vertical_padding_3_1", "items_panel" ] }, "tab_content/tab_content_search_bar_panel/vertical_padding_1": { "file": "ui/inventory_screen.json", "type": "panel", "extend": { "name": "tab_content_padding", "namespace": "crafting" } }, "tab_content/tab_content_search_bar_panel/pocket_vertical_padding_1": { "file": "ui/inventory_screen.json", "type": "panel" }, "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder": { "file": "ui/inventory_screen.json", "type": "stack_panel", "children": [ "padding_1", "creative_label", "padding_2", "filter_toggle_holder", "pocket_horizontal_padding_1" ] }, "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/padding_1": { "file": "ui/inventory_screen.json", "type": "panel" }, "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/creative_label": { "file": "ui/inventory_screen.json", "type": "label", "extend": { "name": "creative_label", "namespace": "crafting" } }, "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/padding_2": { "file": "ui/inventory_screen.json", "type": "panel" }, "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/filter_toggle_holder": { "file": "ui/inventory_screen.json", "type": "panel", "children": [ "filter_toggle" ] }, "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/filter_toggle_holder/filter_toggle": { "file": "ui/inventory_screen.json", "type": "panel", "extend": { "name": "filter_toggle", "namespace": "crafting" } }, "tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/pocket_horizontal_padding_1": { "file": "ui/inventory_screen.json", "type": "panel" }, "tab_content/tab_content_search_bar_panel/vertical_padding_2": { "file": "ui/inventory_screen.json", "type": "panel", "extend": { "name": "tab_content_padding", "namespace": "crafting" } }, "tab_content/tab_content_search_bar_panel/pocket_vertical_padding_2": { "file": "ui/inventory_screen.json", "type": "panel" }, "tab_content/tab_content_search_bar_panel/pocket_vertical_padding_3": { "file": "ui/inventory_screen.json", "type": "panel" }, "tab_content/tab_content_search_bar_panel/search_and_filter_panel": { "file": "ui/inventory_screen.json", "type": "stack_panel", "children": [ "text_edit_control", "padding_1", "filter_toggle_holder", "pocket_horizontal_padding_1" ] }, "tab_content/tab_content_search_bar_panel/search_and_filter_panel/text_edit_control": { "file": "ui/inventory_screen.json", "type": "edit_box", "extend": { "name": "text_edit_box", "namespace": "common" } }, "tab_content/tab_content_search_bar_panel/search_and_filter_panel/padding_1": { "file": "ui/inventory_screen.json", "type": "panel" }, "tab_content/tab_content_search_bar_panel/search_and_filter_panel/filter_toggle_holder": { "file": "ui/inventory_screen.json", "type": "panel", "children": [ "filter_toggle" ] }, "tab_content/tab_content_search_bar_panel/search_and_filter_panel/filter_toggle_holder/filter_toggle": { "file": "ui/inventory_screen.json", "type": "panel", "extend": { "name": "filter_toggle", "namespace": "crafting" } }, "tab_content/tab_content_search_bar_panel/search_and_filter_panel/pocket_horizontal_padding_1": { "file": "ui/inventory_screen.json", "type": "panel" }, "tab_content/tab_content_search_bar_panel/vertical_padding_3": { "file": "ui/inventory_screen.json", "type": "panel" }, "tab_content/tab_content_search_bar_panel/vertical_padding_3_1": { "file": "ui/inventory_screen.json", "type": "panel" }, "tab_content/tab_content_search_bar_panel/items_panel": { "file": "ui/inventory_screen.json", "type": "panel", "children": [ "scroll_pane", "shadow_stack" ] }, "tab_content/tab_content_search_bar_panel/items_panel/scroll_pane": { "file": "ui/inventory_screen.json", "type": "unknown" }, "tab_content/tab_content_search_bar_panel/items_panel/shadow_stack": { "file": "ui/inventory_screen.json", "type": "stack_panel", "children": [ "shadow_container", "shadow_cutter" ] }, "tab_content/tab_content_search_bar_panel/items_panel/shadow_stack/shadow_container": { "file": "ui/inventory_screen.json", "type": "panel", "children": [ "top_shadow", "top_overlay" ] }, "tab_content/tab_content_search_bar_panel/items_panel/shadow_stack/shadow_container/top_shadow": { "file": "ui/inventory_screen.json", "type": "image" }, "tab_content/tab_content_search_bar_panel/items_panel/shadow_stack/shadow_container/top_overlay": { "file": "ui/inventory_screen.json", "type": "image" }, "tab_content/tab_content_search_bar_panel/items_panel/shadow_stack/shadow_cutter": { "file": "ui/inventory_screen.json", "type": "panel" }, "tab_content/nodrop_zone": { "file": "ui/inventory_screen.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" } }, "armor_overlay": { "file": "ui/inventory_screen.json", "type": "image" }, "offhand_overlay": { "file": "ui/inventory_screen.json", "type": "image" }, "armor_overlay_helmet": { "file": "ui/inventory_screen.json", "type": "image", "extend": { "name": "armor_overlay", "namespace": "crafting" } }, "armor_overlay_chest": { "file": "ui/inventory_screen.json", "type": "image", "extend": { "name": "armor_overlay", "namespace": "crafting" } }, "armor_overlay_legs": { "file": "ui/inventory_screen.json", "type": "image", "extend": { "name": "armor_overlay", "namespace": "crafting" } }, "armor_image_feet": { "file": "ui/inventory_screen.json", "type": "image", "extend": { "name": "armor_overlay", "namespace": "crafting" } }, "armor_overlay_shield": { "file": "ui/inventory_screen.json", "type": "image", "extend": { "name": "offhand_overlay", "namespace": "crafting" } }, "player_armor_panel": { "file": "ui/inventory_screen.json", "type": "panel", "children": [ "player_bg", "player_preview_border", "armor_grid", "offhand_grid" ] }, "player_armor_panel/player_bg": { "file": "ui/inventory_screen.json", "type": "image", "children": [ "player_renderer_panel" ] }, "player_armor_panel/player_bg/player_renderer_panel": { "file": "ui/inventory_screen.json", "type": "panel", "children": [ "player_renderer" ] }, "player_armor_panel/player_bg/player_renderer_panel/player_renderer": { "file": "ui/inventory_screen.json", "type": "custom" }, "player_armor_panel/player_preview_border": { "file": "ui/inventory_screen.json", "type": "image" }, "player_armor_panel/armor_grid": { "file": "ui/inventory_screen.json", "type": "grid", "children": [ "head_grid_item", "chest_grid_item", "legs_grid_item", "feet_grid_item" ] }, "player_armor_panel/armor_grid/head_grid_item": { "file": "ui/inventory_screen.json", "type": "input_panel", "extend": { "name": "container_item", "namespace": "common" } }, "player_armor_panel/armor_grid/chest_grid_item": { "file": "ui/inventory_screen.json", "type": "input_panel", "extend": { "name": "container_item", "namespace": "common" } }, "player_armor_panel/armor_grid/legs_grid_item": { "file": "ui/inventory_screen.json", "type": "input_panel", "extend": { "name": "container_item", "namespace": "common" } }, "player_armor_panel/armor_grid/feet_grid_item": { "file": "ui/inventory_screen.json", "type": "input_panel", "extend": { "name": "container_item", "namespace": "common" } }, "player_armor_panel/offhand_grid": { "file": "ui/inventory_screen.json", "type": "grid", "children": [ "offhand_grid_item" ] }, "player_armor_panel/offhand_grid/offhand_grid_item": { "file": "ui/inventory_screen.json", "type": "input_panel", "extend": { "name": "container_item", "namespace": "common" } }, "crafting_label": { "file": "ui/inventory_screen.json", "type": "label" }, "inventory_label": { "file": "ui/inventory_screen.json", "type": "label" }, "crafting_arrow": { "file": "ui/inventory_screen.json", "type": "image" }, "crafting_arrow_large": { "file": "ui/inventory_screen.json", "type": "image" }, "crafting_input_grid_item": { "file": "ui/inventory_screen.json", "type": "input_panel", "extend": { "name": "inventory_container_item", "namespace": "crafting" } }, "crafting_grid_3x3": { "file": "ui/inventory_screen.json", "type": "grid", "children": [ "crafting_input_item_top_left", "crafting_input_item_top_mid", "crafting_input_item_top_right", "crafting_input_item_mid_left", "crafting_input_item_middle", "crafting_input_item_mid_right", "crafting_input_item_bot_left", "crafting_input_item_bot_mid", "crafting_input_item_bot_right" ] }, "crafting_grid_3x3/crafting_input_item_top_left": { "file": "ui/inventory_screen.json", "type": "input_panel", "extend": { "name": "crafting_input_grid_item", "namespace": "crafting" } }, "crafting_grid_3x3/crafting_input_item_top_mid": { "file": "ui/inventory_screen.json", "type": "input_panel", "extend": { "name": "crafting_input_grid_item", "namespace": "crafting" } }, "crafting_grid_3x3/crafting_input_item_top_right": { "file": "ui/inventory_screen.json", "type": "input_panel", "extend": { "name": "crafting_input_grid_item", "namespace": "crafting" } }, "crafting_grid_3x3/crafting_input_item_mid_left": { "file": "ui/inventory_screen.json", "type": "input_panel", "extend": { "name": "crafting_input_grid_item", "namespace": "crafting" } }, "crafting_grid_3x3/crafting_input_item_middle": { "file": "ui/inventory_screen.json", "type": "input_panel", "extend": { "name": "crafting_input_grid_item", "namespace": "crafting" } }, "crafting_grid_3x3/crafting_input_item_mid_right": { "file": "ui/inventory_screen.json", "type": "input_panel", "extend": { "name": "crafting_input_grid_item", "namespace": "crafting" } }, "crafting_grid_3x3/crafting_input_item_bot_left": { "file": "ui/inventory_screen.json", "type": "input_panel", "extend": { "name": "crafting_input_grid_item", "namespace": "crafting" } }, "crafting_grid_3x3/crafting_input_item_bot_mid": { "file": "ui/inventory_screen.json", "type": "input_panel", "extend": { "name": "crafting_input_grid_item", "namespace": "crafting" } }, "crafting_grid_3x3/crafting_input_item_bot_right": { "file": "ui/inventory_screen.json", "type": "input_panel", "extend": { "name": "crafting_input_grid_item", "namespace": "crafting" } }, "crafting_grid_2x2": { "file": "ui/inventory_screen.json", "type": "grid", "children": [ "crafting_input_item_top_left", "crafting_input_item_top_right", "crafting_input_item_bot_left", "crafting_input_item_bot_right" ] }, "crafting_grid_2x2/crafting_input_item_top_left": { "file": "ui/inventory_screen.json", "type": "input_panel", "extend": { "name": "crafting_input_grid_item", "namespace": "crafting" } }, "crafting_grid_2x2/crafting_input_item_top_right": { "file": "ui/inventory_screen.json", "type": "input_panel", "extend": { "name": "crafting_input_grid_item", "namespace": "crafting" } }, "crafting_grid_2x2/crafting_input_item_bot_left": { "file": "ui/inventory_screen.json", "type": "input_panel", "extend": { "name": "crafting_input_grid_item", "namespace": "crafting" } }, "crafting_grid_2x2/crafting_input_item_bot_right": { "file": "ui/inventory_screen.json", "type": "input_panel", "extend": { "name": "crafting_input_grid_item", "namespace": "crafting" } }, "output_grid_3x3": { "file": "ui/inventory_screen.json", "type": "grid", "children": [ "work_bench_output" ] }, "output_grid_3x3/work_bench_output": { "file": "ui/inventory_screen.json", "type": "input_panel", "extend": { "name": "inventory_container_item", "namespace": "crafting" } }, "output_grid_2x2": { "file": "ui/inventory_screen.json", "type": "grid", "children": [ "work_bench_output" ] }, "output_grid_2x2/work_bench_output": { "file": "ui/inventory_screen.json", "type": "input_panel", "extend": { "name": "inventory_container_item", "namespace": "crafting" } }, "work_bench_panel_3x3": { "file": "ui/inventory_screen.json", "type": "panel", "children": [ "inventory_label", "crafting_arrow_large", "crafting_grid_3x3_with_label_0", "work_bench_output_grid" ] }, "work_bench_panel_3x3/inventory_label": { "file": "ui/inventory_screen.json", "type": "label", "extend": { "name": "inventory_label", "namespace": "crafting" } }, "work_bench_panel_3x3/crafting_arrow_large": { "file": "ui/inventory_screen.json", "type": "image", "extend": { "name": "crafting_arrow_large", "namespace": "crafting" } }, "work_bench_panel_3x3/crafting_grid_3x3_with_label_0": { "file": "ui/inventory_screen.json", "type": "panel", "extend": { "name": "crafting_grid_3x3_with_label", "namespace": "crafting" } }, "work_bench_panel_3x3/work_bench_output_grid": { "file": "ui/inventory_screen.json", "type": "grid", "extend": { "name": "output_grid_3x3", "namespace": "crafting" } }, "crafting_grid_3x3_with_label": { "file": "ui/inventory_screen.json", "type": "panel", "children": [ "crafting_label", "crafting_grid_3x3" ] }, "crafting_grid_3x3_with_label/crafting_label": { "file": "ui/inventory_screen.json", "type": "label", "extend": { "name": "crafting_label", "namespace": "crafting" } }, "crafting_grid_3x3_with_label/crafting_grid_3x3": { "file": "ui/inventory_screen.json", "type": "grid", "extend": { "name": "crafting_grid_3x3", "namespace": "crafting" } }, "crafting_grid_2x2_with_label": { "file": "ui/inventory_screen.json", "type": "panel", "children": [ "crafting_label", "crafting_grid_2x2" ] }, "crafting_grid_2x2_with_label/crafting_label": { "file": "ui/inventory_screen.json", "type": "label", "extend": { "name": "crafting_label", "namespace": "crafting" } }, "crafting_grid_2x2_with_label/crafting_grid_2x2": { "file": "ui/inventory_screen.json", "type": "grid", "extend": { "name": "crafting_grid_2x2", "namespace": "crafting" } }, "crafting_panel_2x2": { "file": "ui/inventory_screen.json", "type": "panel", "children": [ "crafting_arrow", "crafting_table", "crafting_grid_2x2", "survival_crafting_output_grid" ] }, "crafting_panel_2x2/crafting_arrow": { "file": "ui/inventory_screen.json", "type": "image", "extend": { "name": "crafting_arrow", "namespace": "crafting" } }, "crafting_panel_2x2/crafting_table": { "file": "ui/inventory_screen.json", "type": "custom", "extend": { "name": "item_renderer", "namespace": "crafting" } }, "crafting_panel_2x2/crafting_grid_2x2": { "file": "ui/inventory_screen.json", "type": "panel", "extend": { "name": "crafting_grid_2x2_with_label", "namespace": "crafting" } }, "crafting_panel_2x2/survival_crafting_output_grid": { "file": "ui/inventory_screen.json", "type": "grid", "extend": { "name": "output_grid_2x2", "namespace": "crafting" } }, "survival_panel_top_half": { "file": "ui/inventory_screen.json", "type": "panel", "children": [ "player_armor_panel", "crafting_panel" ] }, "survival_panel_top_half/player_armor_panel": { "file": "ui/inventory_screen.json", "type": "panel", "extend": { "name": "player_armor_panel", "namespace": "crafting" } }, "survival_panel_top_half/crafting_panel": { "file": "ui/inventory_screen.json", "type": "panel", "extend": { "name": "crafting_panel_2x2", "namespace": "crafting" } }, "crafting_panel_top_half": { "file": "ui/inventory_screen.json", "type": "panel", "children": [ "crafting_panel" ] }, "crafting_panel_top_half/crafting_panel": { "file": "ui/inventory_screen.json", "type": "panel", "extend": { "name": "work_bench_panel_3x3", "namespace": "crafting" } }, "recipe_container_cell_images": { "file": "ui/inventory_screen.json", "type": "image" }, "cell_image_recipe_default": { "file": "ui/inventory_screen.json", "type": "image", "extend": { "name": "cell_image", "namespace": "crafting" } }, "cell_image_recipe_group_head_collapsed": { "file": "ui/inventory_screen.json", "type": "image", "extend": { "name": "cell_image", "namespace": "crafting" } }, "cell_image_recipe_group_head_expanded": { "file": "ui/inventory_screen.json", "type": "image", "extend": { "name": "cell_image", "namespace": "crafting" } }, "cell_image_recipe_group_item": { "file": "ui/inventory_screen.json", "type": "image", "extend": { "name": "cell_image", "namespace": "crafting" } }, "cell_image_recipe_selected": { "file": "ui/inventory_screen.json", "type": "image", "extend": { "name": "cell_image", "namespace": "crafting" } }, "cell_image_recipe_default_red": { "file": "ui/inventory_screen.json", "type": "image", "extend": { "name": "cell_image", "namespace": "crafting" } }, "container_cell_images": { "file": "ui/inventory_screen.json", "type": "panel", "children": [ "cell_classic", "cell_normal", "cell_invert", "cell_red", "cell_selected", "cell_darkgrey" ] }, "container_cell_images/cell_classic": { "file": "ui/inventory_screen.json", "type": "image", "extend": { "name": "cell_image_classic", "namespace": "crafting" } }, "container_cell_images/cell_normal": { "file": "ui/inventory_screen.json", "type": "image", "extend": { "name": "cell_image_normal", "namespace": "crafting" } }, "container_cell_images/cell_invert": { "file": "ui/inventory_screen.json", "type": "image", "extend": { "name": "cell_image_invert", "namespace": "crafting" } }, "container_cell_images/cell_red": { "file": "ui/inventory_screen.json", "type": "image", "extend": { "name": "cell_image_red", "namespace": "crafting" } }, "container_cell_images/cell_selected": { "file": "ui/inventory_screen.json", "type": "image", "extend": { "name": "cell_image_selected", "namespace": "crafting" } }, "container_cell_images/cell_darkgrey": { "file": "ui/inventory_screen.json", "type": "image", "extend": { "name": "cell_image_darkgrey", "namespace": "crafting" } }, "crafting_container_cell_images": { "file": "ui/inventory_screen.json", "type": "panel", "extend": { "name": "container_cell_images", "namespace": "crafting" } }, "cell_image": { "file": "ui/inventory_screen.json", "type": "image" }, "cell_image_classic": { "file": "ui/inventory_screen.json", "type": "image", "extend": { "name": "cell_image", "namespace": "crafting" } }, "cell_image_normal": { "file": "ui/inventory_screen.json", "type": "image", "extend": { "name": "cell_image", "namespace": "crafting" } }, "cell_image_invert": { "file": "ui/inventory_screen.json", "type": "image", "extend": { "name": "cell_image", "namespace": "crafting" } }, "cell_image_red": { "file": "ui/inventory_screen.json", "type": "image", "extend": { "name": "cell_image", "namespace": "crafting" } }, "cell_image_selected": { "file": "ui/inventory_screen.json", "type": "image", "extend": { "name": "cell_image", "namespace": "common" } }, "cell_image_darkgrey": { "file": "ui/inventory_screen.json", "type": "image", "extend": { "name": "cell_image", "namespace": "crafting" } }, "container_overlay_images": { "file": "ui/inventory_screen.json", "type": "panel", "children": [ "expand", "contract" ] }, "container_overlay_images/expand": { "file": "ui/inventory_screen.json", "type": "image", "extend": { "name": "item_overlay_expand", "namespace": "crafting" } }, "container_overlay_images/contract": { "file": "ui/inventory_screen.json", "type": "image", "extend": { "name": "item_overlay_contract", "namespace": "crafting" } }, "item_overlay_image": { "file": "ui/inventory_screen.json", "type": "image" }, "item_overlay_contract": { "file": "ui/inventory_screen.json", "type": "image", "extend": { "name": "item_overlay_image", "namespace": "crafting" } }, "item_overlay_expand": { "file": "ui/inventory_screen.json", "type": "image", "extend": { "name": "item_overlay_image", "namespace": "crafting" } }, "inventory_container_item": { "file": "ui/inventory_screen.json", "type": "input_panel", "extend": { "name": "container_item", "namespace": "common" }, "children": [ "item_cell", "item_cell_overlay_ref", "item_selected_image", "item_button_ref", "container_item_lock_overlay", "item_lock_cell_image", "bundle_slot_panel" ] }, "inventory_container_item/item_cell": { "file": "ui/inventory_screen.json", "type": "panel", "children": [ "item", "durability_bar", "storage_bar" ] }, "inventory_container_item/item_cell/item": { "file": "ui/inventory_screen.json", "type": "panel", "children": [ "stack_count_label" ] }, "inventory_container_item/item_cell/item/stack_count_label": { "file": "ui/inventory_screen.json", "type": "label", "extend": { "name": "stack_count_label", "namespace": "common" } }, "inventory_container_item/item_cell/durability_bar": { "file": "ui/inventory_screen.json", "type": "custom", "extend": { "name": "durability_bar", "namespace": "common" } }, "inventory_container_item/item_cell/storage_bar": { "file": "ui/inventory_screen.json", "type": "custom", "extend": { "name": "storage_bar", "namespace": "common" } }, "inventory_container_item/item_cell_overlay_ref": { "file": "ui/inventory_screen.json", "type": "unknown" }, "inventory_container_item/item_selected_image": { "file": "ui/inventory_screen.json", "type": "image", "extend": { "name": "slot_selected", "namespace": "common" } }, "inventory_container_item/item_button_ref": { "file": "ui/inventory_screen.json", "type": "unknown" }, "inventory_container_item/container_item_lock_overlay": { "file": "ui/inventory_screen.json", "type": "panel", "extend": { "name": "container_item_lock_overlay", "namespace": "common" } }, "inventory_container_item/item_lock_cell_image": { "file": "ui/inventory_screen.json", "type": "image", "extend": { "name": "item_lock_cell_image", "namespace": "common" } }, "inventory_container_item/bundle_slot_panel": { "file": "ui/inventory_screen.json", "type": "panel", "extend": { "name": "bundle_slot_panel", "namespace": "gameplay" } }, "grid_item_for_recipe_book": { "file": "ui/inventory_screen.json", "type": "input_panel", "extend": { "name": "inventory_container_item", "namespace": "crafting" } }, "scroll_grid": { "file": "ui/inventory_screen.json", "type": "grid" }, "scroll_grid_panel": { "file": "ui/inventory_screen.json", "type": "input_panel", "extend": { "name": "crafting_root_input_panel", "namespace": "common" }, "children": [ "grid" ] }, "scroll_grid_panel/grid": { "file": "ui/inventory_screen.json", "type": "grid", "extend": { "name": "scroll_grid", "namespace": "crafting" } }, "recipe_book_scroll_panel": { "file": "ui/inventory_screen.json", "type": "panel", "extend": { "name": "scroll_panel", "namespace": "crafting" } }, "scroll_panel": { "file": "ui/inventory_screen.json", "type": "panel", "extend": { "name": "container_scroll_panel", "namespace": "common" } }, "filter_toggle": { "file": "ui/inventory_screen.json", "type": "panel", "extend": { "name": "switch_toggle", "namespace": "common_toggles" } }, "player_inventory": { "file": "ui/inventory_screen.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "common_panel", "inventory_panel_top_half", "inventory_panel_bottom_half", "hotbar_grid" ] }, "player_inventory/common_panel": { "file": "ui/inventory_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "player_inventory/inventory_panel_top_half": { "file": "ui/inventory_screen.json", "type": "unknown" }, "player_inventory/inventory_panel_bottom_half": { "file": "ui/inventory_screen.json", "type": "panel", "extend": { "name": "inventory_panel_bottom_half", "namespace": "common" } }, "player_inventory/hotbar_grid": { "file": "ui/inventory_screen.json", "type": "grid", "extend": { "name": "hotbar_grid_template", "namespace": "common" } }, "recipe_book": { "file": "ui/inventory_screen.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "gamepad_helper_bumpers", "tab_navigation_panel", "bg", "tab_content_panel", "creative_hotbar_panel" ] }, "recipe_book/gamepad_helper_bumpers": { "file": "ui/inventory_screen.json", "type": "panel", "extend": { "name": "gamepad_helper_bumpers", "namespace": "common" } }, "recipe_book/tab_navigation_panel": { "file": "ui/inventory_screen.json", "type": "stack_panel", "extend": { "name": "tab_navigation_panel_layout", "namespace": "crafting" } }, "recipe_book/bg": { "file": "ui/inventory_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "recipe_book/tab_content_panel": { "file": "ui/inventory_screen.json", "type": "panel", "extend": { "name": "tab_content", "namespace": "crafting" } }, "recipe_book/creative_hotbar_panel": { "file": "ui/inventory_screen.json", "type": "input_panel", "extend": { "name": "creative_hotbar_panel", "namespace": "crafting" } }, "creative_hotbar_panel": { "file": "ui/inventory_screen.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "creative_hotbar_background" ] }, "creative_hotbar_panel/creative_hotbar_background": { "file": "ui/inventory_screen.json", "type": "image", "children": [ "hotbar_grid" ] }, "creative_hotbar_panel/creative_hotbar_background/hotbar_grid": { "file": "ui/inventory_screen.json", "type": "grid", "extend": { "name": "hotbar_grid_template", "namespace": "common" } }, "toolbar_panel": { "file": "ui/inventory_screen.json", "type": "input_panel", "extend": { "name": "crafting_root_input_panel", "namespace": "common" }, "children": [ "toolbar_background" ] }, "toolbar_panel/toolbar_background": { "file": "ui/inventory_screen.json", "type": "image", "extend": { "name": "toolbar_background_image", "namespace": "common" }, "children": [ "toolbar_stack_panel" ] }, "toolbar_panel/toolbar_background/toolbar_stack_panel": { "file": "ui/inventory_screen.json", "type": "stack_panel", "children": [ "left_trigger_anchor", "padding_0", "creative_layout_toggle_panel", "padding_1", "recipe_book_layout_toggle_panel", "padding_2", "survival_layout_toggle_panel", "padding_3", "help_button_panel", "close_button_panel", "padding_4", "right_trigger_anchor" ] }, "toolbar_panel/toolbar_background/toolbar_stack_panel/left_trigger_anchor": { "file": "ui/inventory_screen.json", "type": "panel", "children": [ "gamepad_helper_left_trigger" ] }, "toolbar_panel/toolbar_background/toolbar_stack_panel/left_trigger_anchor/gamepad_helper_left_trigger": { "file": "ui/inventory_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_left_trigger", "namespace": "common" } }, "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_0": { "file": "ui/inventory_screen.json", "type": "panel" }, "toolbar_panel/toolbar_background/toolbar_stack_panel/creative_layout_toggle_panel": { "file": "ui/inventory_screen.json", "type": "panel", "children": [ "creative_layout_toggle" ] }, "toolbar_panel/toolbar_background/toolbar_stack_panel/creative_layout_toggle_panel/creative_layout_toggle": { "file": "ui/inventory_screen.json", "type": "panel", "extend": { "name": "creative_layout_toggle", "namespace": "common" } }, "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": { "file": "ui/inventory_screen.json", "type": "panel" }, "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel": { "file": "ui/inventory_screen.json", "type": "panel", "children": [ "recipe_book_layout_toggle" ] }, "toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel/recipe_book_layout_toggle": { "file": "ui/inventory_screen.json", "type": "panel", "extend": { "name": "recipe_book_layout_toggle", "namespace": "common" } }, "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": { "file": "ui/inventory_screen.json", "type": "panel" }, "toolbar_panel/toolbar_background/toolbar_stack_panel/survival_layout_toggle_panel": { "file": "ui/inventory_screen.json", "type": "panel", "children": [ "survival_layout_toggle" ] }, "toolbar_panel/toolbar_background/toolbar_stack_panel/survival_layout_toggle_panel/survival_layout_toggle": { "file": "ui/inventory_screen.json", "type": "panel", "extend": { "name": "survival_layout_toggle", "namespace": "common" } }, "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_3": { "file": "ui/inventory_screen.json", "type": "panel" }, "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel": { "file": "ui/inventory_screen.json", "type": "panel", "children": [ "help_button" ] }, "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button": { "file": "ui/inventory_screen.json", "type": "button", "extend": { "name": "help_button", "namespace": "common" } }, "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": { "file": "ui/inventory_screen.json", "type": "panel", "children": [ "close_button" ] }, "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": { "file": "ui/inventory_screen.json", "type": "button", "extend": { "name": "light_close_button", "namespace": "common" } }, "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_4": { "file": "ui/inventory_screen.json", "type": "panel" }, "toolbar_panel/toolbar_background/toolbar_stack_panel/right_trigger_anchor": { "file": "ui/inventory_screen.json", "type": "panel", "children": [ "gamepad_helper_right_trigger" ] }, "toolbar_panel/toolbar_background/toolbar_stack_panel/right_trigger_anchor/gamepad_helper_right_trigger": { "file": "ui/inventory_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_right_trigger", "namespace": "common" } }, "inventory_screen_base": { "file": "ui/inventory_screen.json", "type": "screen", "extend": { "name": "inventory_screen_common", "namespace": "common" } }, "crafting_screen": { "file": "ui/inventory_screen.json", "type": "screen", "extend": { "name": "inventory_screen_base", "namespace": "crafting" } }, "inventory_screen": { "file": "ui/inventory_screen.json", "type": "screen", "extend": { "name": "inventory_screen_base", "namespace": "crafting" } }, "recipe_inventory_screen_content": { "file": "ui/inventory_screen.json", "type": "panel", "children": [ "content_stack_panel", "inventory_take_progress_icon_button", "inventory_selected_icon_button", "hold_icon", "controller_gamepad_helpers_stack_panel", "selected_item_details_factory", "item_lock_notification_factory", "flying_item_renderer" ] }, "recipe_inventory_screen_content/content_stack_panel": { "file": "ui/inventory_screen.json", "type": "stack_panel", "children": [ "recipe_book", "center_fold", "survival_padding", "player_inventory", "toolbar_anchor" ] }, "recipe_inventory_screen_content/content_stack_panel/recipe_book": { "file": "ui/inventory_screen.json", "type": "input_panel", "extend": { "name": "recipe_book", "namespace": "crafting" } }, "recipe_inventory_screen_content/content_stack_panel/center_fold": { "file": "ui/inventory_screen.json", "type": "input_panel", "extend": { "name": "center_fold", "namespace": "common" } }, "recipe_inventory_screen_content/content_stack_panel/survival_padding": { "file": "ui/inventory_screen.json", "type": "panel" }, "recipe_inventory_screen_content/content_stack_panel/player_inventory": { "file": "ui/inventory_screen.json", "type": "input_panel", "extend": { "name": "player_inventory", "namespace": "crafting" } }, "recipe_inventory_screen_content/content_stack_panel/toolbar_anchor": { "file": "ui/inventory_screen.json", "type": "panel", "children": [ "toolbar_panel" ] }, "recipe_inventory_screen_content/content_stack_panel/toolbar_anchor/toolbar_panel": { "file": "ui/inventory_screen.json", "type": "input_panel", "extend": { "name": "toolbar_panel", "namespace": "crafting" } }, "recipe_inventory_screen_content/inventory_take_progress_icon_button": { "file": "ui/inventory_screen.json", "type": "button", "extend": { "name": "inventory_take_progress_icon_button", "namespace": "common" } }, "recipe_inventory_screen_content/inventory_selected_icon_button": { "file": "ui/inventory_screen.json", "type": "button", "extend": { "name": "inventory_selected_icon_button", "namespace": "common" } }, "recipe_inventory_screen_content/hold_icon": { "file": "ui/inventory_screen.json", "type": "button", "extend": { "name": "inventory_take_progress_icon_button", "namespace": "common" } }, "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel": { "file": "ui/inventory_screen.json", "type": "stack_panel", "children": [ "container_gamepad_helpers_second_row", "container_gamepad_helpers" ] }, "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel/container_gamepad_helpers_second_row": { "file": "ui/inventory_screen.json", "type": "stack_panel", "extend": { "name": "container_gamepad_helpers_second_row", "namespace": "crafting" } }, "recipe_inventory_screen_content/controller_gamepad_helpers_stack_panel/container_gamepad_helpers": { "file": "ui/inventory_screen.json", "type": "stack_panel", "extend": { "name": "container_gamepad_helpers", "namespace": "common" } }, "recipe_inventory_screen_content/selected_item_details_factory": { "file": "ui/inventory_screen.json", "type": "factory", "extend": { "name": "selected_item_details_factory", "namespace": "common" } }, "recipe_inventory_screen_content/item_lock_notification_factory": { "file": "ui/inventory_screen.json", "type": "factory", "extend": { "name": "item_lock_notification_factory", "namespace": "common" } }, "recipe_inventory_screen_content/flying_item_renderer": { "file": "ui/inventory_screen.json", "type": "custom", "extend": { "name": "flying_item_renderer", "namespace": "common" } } }, "crafting_pocket": { "survival_icon": { "file": "ui/inventory_screen_pocket.json", "type": "custom", "extend": { "name": "item_renderer", "namespace": "crafting" } }, "full_screen_icon": { "file": "ui/inventory_screen_pocket.json", "type": "image", "extend": { "name": "tab_icon_image", "namespace": "common" } }, "crafting_icon": { "file": "ui/inventory_screen_pocket.json", "type": "image", "extend": { "name": "tab_icon_image", "namespace": "common" } }, "armor_icon": { "file": "ui/inventory_screen_pocket.json", "type": "image", "extend": { "name": "tab_icon_image", "namespace": "common" } }, "crafting_arrow_down": { "file": "ui/inventory_screen_pocket.json", "type": "image" }, "empty_tab_panel": { "file": "ui/inventory_screen_pocket.json", "type": "panel" }, "left_tab": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "extend": { "name": "tab_left", "namespace": "common_tabs" } }, "right_tab": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "extend": { "name": "tab_right", "namespace": "common_tabs" } }, "full_screen_tab": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "extend": { "name": "right_tab", "namespace": "crafting_pocket" } }, "crafting_tab": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "extend": { "name": "right_tab", "namespace": "crafting_pocket" } }, "armor_tab": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "extend": { "name": "right_tab", "namespace": "crafting_pocket" } }, "search_tab": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "extend": { "name": "left_tab", "namespace": "crafting_pocket" } }, "construction_tab": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "extend": { "name": "left_tab", "namespace": "crafting_pocket" } }, "equipment_tab": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "extend": { "name": "left_tab", "namespace": "crafting_pocket" } }, "items_tab": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "extend": { "name": "left_tab", "namespace": "crafting_pocket" } }, "nature_tab": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "extend": { "name": "left_tab", "namespace": "crafting_pocket" } }, "inventory_tab": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "extend": { "name": "left_tab", "namespace": "crafting_pocket" } }, "left_tab_navigation_panel_pocket": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "children": [ "content" ] }, "left_tab_navigation_panel_pocket/content": { "file": "ui/inventory_screen_pocket.json", "type": "stack_panel", "children": [ "search_tab_panel", "construction_tab_panel", "equipment_tab_panel", "items_tab_panel", "nature_tab_panel", "fill", "inventory_tab" ] }, "left_tab_navigation_panel_pocket/content/search_tab_panel": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "children": [ "search_tab" ] }, "left_tab_navigation_panel_pocket/content/search_tab_panel/search_tab": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "extend": { "name": "search_tab", "namespace": "crafting_pocket" } }, "left_tab_navigation_panel_pocket/content/construction_tab_panel": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "children": [ "construction_tab_factory" ] }, "left_tab_navigation_panel_pocket/content/construction_tab_panel/construction_tab_factory": { "file": "ui/inventory_screen_pocket.json", "type": "factory" }, "left_tab_navigation_panel_pocket/content/equipment_tab_panel": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "children": [ "equipment_tab_factory" ] }, "left_tab_navigation_panel_pocket/content/equipment_tab_panel/equipment_tab_factory": { "file": "ui/inventory_screen_pocket.json", "type": "factory" }, "left_tab_navigation_panel_pocket/content/items_tab_panel": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "children": [ "items_tab_factory" ] }, "left_tab_navigation_panel_pocket/content/items_tab_panel/items_tab_factory": { "file": "ui/inventory_screen_pocket.json", "type": "factory" }, "left_tab_navigation_panel_pocket/content/nature_tab_panel": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "children": [ "nature_tab_factory" ] }, "left_tab_navigation_panel_pocket/content/nature_tab_panel/nature_tab_factory": { "file": "ui/inventory_screen_pocket.json", "type": "factory" }, "left_tab_navigation_panel_pocket/content/fill": { "file": "ui/inventory_screen_pocket.json", "type": "panel" }, "left_tab_navigation_panel_pocket/content/inventory_tab": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "extend": { "name": "inventory_tab", "namespace": "crafting_pocket" } }, "right_tab_navigation_panel_pocket": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "children": [ "content" ] }, "right_tab_navigation_panel_pocket/content": { "file": "ui/inventory_screen_pocket.json", "type": "stack_panel", "children": [ "close", "fill", "full_screen_tab", "crafting_tab", "armor_tab" ] }, "right_tab_navigation_panel_pocket/content/close": { "file": "ui/inventory_screen_pocket.json", "type": "image", "children": [ "nodrop_zone", "close_button" ] }, "right_tab_navigation_panel_pocket/content/close/nodrop_zone": { "file": "ui/inventory_screen_pocket.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" } }, "right_tab_navigation_panel_pocket/content/close/close_button": { "file": "ui/inventory_screen_pocket.json", "type": "button", "extend": { "name": "light_close_button", "namespace": "common" } }, "right_tab_navigation_panel_pocket/content/fill": { "file": "ui/inventory_screen_pocket.json", "type": "panel" }, "right_tab_navigation_panel_pocket/content/full_screen_tab": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "extend": { "name": "full_screen_tab", "namespace": "crafting_pocket" } }, "right_tab_navigation_panel_pocket/content/crafting_tab": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "extend": { "name": "crafting_tab", "namespace": "crafting_pocket" } }, "right_tab_navigation_panel_pocket/content/armor_tab": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "extend": { "name": "armor_tab", "namespace": "crafting_pocket" } }, "recipe_book_tab_content": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "extend": { "name": "tab_content", "namespace": "crafting" } }, "inventory_tab_content": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "extend": { "name": "tab_content", "namespace": "crafting" } }, "right_tab_content": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "children": [ "bg", "content" ] }, "right_tab_content/bg": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "right_tab_content/content": { "file": "ui/inventory_screen_pocket.json", "type": "unknown" }, "crafting_input_grid_item": { "file": "ui/inventory_screen_pocket.json", "type": "input_panel", "extend": { "name": "inventory_container_item", "namespace": "crafting" } }, "crafting_grid_3x3": { "file": "ui/inventory_screen_pocket.json", "type": "grid" }, "crafting_grid_2x2": { "file": "ui/inventory_screen_pocket.json", "type": "grid" }, "output_grid_and_label": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "children": [ "recipe_item_label", "output_grid" ] }, "output_grid_and_label/recipe_item_label": { "file": "ui/inventory_screen_pocket.json", "type": "label" }, "output_grid_and_label/output_grid": { "file": "ui/inventory_screen_pocket.json", "type": "grid", "extend": { "name": "output_grid", "namespace": "crafting_pocket" } }, "output_grid": { "file": "ui/inventory_screen_pocket.json", "type": "grid", "children": [ "work_bench_output" ] }, "output_grid/work_bench_output": { "file": "ui/inventory_screen_pocket.json", "type": "input_panel", "extend": { "name": "inventory_container_item", "namespace": "crafting" } }, "crafting_grid_3x3_with_label": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "children": [ "crafting_label", "crafting_grid_3x3" ] }, "crafting_grid_3x3_with_label/crafting_label": { "file": "ui/inventory_screen_pocket.json", "type": "label", "extend": { "name": "crafting_label", "namespace": "crafting" } }, "crafting_grid_3x3_with_label/crafting_grid_3x3": { "file": "ui/inventory_screen_pocket.json", "type": "grid", "extend": { "name": "crafting_grid_3x3", "namespace": "crafting_pocket" } }, "crafting_grid_2x2_with_label": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "children": [ "crafting_label", "crafting_grid_2x2" ] }, "crafting_grid_2x2_with_label/crafting_label": { "file": "ui/inventory_screen_pocket.json", "type": "label", "extend": { "name": "crafting_label", "namespace": "crafting" } }, "crafting_grid_2x2_with_label/crafting_grid_2x2": { "file": "ui/inventory_screen_pocket.json", "type": "grid", "extend": { "name": "crafting_grid_2x2", "namespace": "crafting_pocket" } }, "scroll_background_image": { "file": "ui/inventory_screen_pocket.json", "type": "image" }, "grid_item_for_inventory": { "file": "ui/inventory_screen_pocket.json", "type": "input_panel", "extend": { "name": "grid_item_for_inventory", "namespace": "common" } }, "survival_inventory_grid": { "file": "ui/inventory_screen_pocket.json", "type": "input_panel", "extend": { "name": "scroll_grid_panel", "namespace": "crafting" } }, "scroll_panel_pocket": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "extend": { "name": "scroll_panel", "namespace": "crafting" } }, "recipe_book_scroll_panel_pocket": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "extend": { "name": "scroll_panel_pocket", "namespace": "crafting_pocket" } }, "survival_scroll_panel": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "extend": { "name": "scroll_panel_pocket", "namespace": "crafting_pocket" } }, "pocket_armor_tab_content": { "file": "ui/inventory_screen_pocket.json", "type": "stack_panel", "children": [ "label_and_renderer", "equipment_and_renderer" ] }, "pocket_armor_tab_content/label_and_renderer": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "children": [ "label_panel", "renderer_panel" ] }, "pocket_armor_tab_content/label_and_renderer/label_panel": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "children": [ "armor_label" ] }, "pocket_armor_tab_content/label_and_renderer/label_panel/armor_label": { "file": "ui/inventory_screen_pocket.json", "type": "label" }, "pocket_armor_tab_content/label_and_renderer/renderer_panel": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "children": [ "armor_renderer" ] }, "pocket_armor_tab_content/label_and_renderer/renderer_panel/armor_renderer": { "file": "ui/inventory_screen_pocket.json", "type": "custom" }, "pocket_armor_tab_content/equipment_and_renderer": { "file": "ui/inventory_screen_pocket.json", "type": "stack_panel", "children": [ "equipment", "armor_panel" ] }, "pocket_armor_tab_content/equipment_and_renderer/equipment": { "file": "ui/inventory_screen_pocket.json", "type": "stack_panel", "children": [ "armor_grid", "offhand_grid" ] }, "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid": { "file": "ui/inventory_screen_pocket.json", "type": "grid", "children": [ "head_grid_item", "chest_grid_item", "legs_grid_item", "feet_grid_item" ] }, "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/head_grid_item": { "file": "ui/inventory_screen_pocket.json", "type": "input_panel", "extend": { "name": "pocket_ui_container_item", "namespace": "common" } }, "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/chest_grid_item": { "file": "ui/inventory_screen_pocket.json", "type": "input_panel", "extend": { "name": "pocket_ui_container_item", "namespace": "common" } }, "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/legs_grid_item": { "file": "ui/inventory_screen_pocket.json", "type": "input_panel", "extend": { "name": "pocket_ui_container_item", "namespace": "common" } }, "pocket_armor_tab_content/equipment_and_renderer/equipment/armor_grid/feet_grid_item": { "file": "ui/inventory_screen_pocket.json", "type": "input_panel", "extend": { "name": "pocket_ui_container_item", "namespace": "common" } }, "pocket_armor_tab_content/equipment_and_renderer/equipment/offhand_grid": { "file": "ui/inventory_screen_pocket.json", "type": "grid", "children": [ "offhand_grid_item" ] }, "pocket_armor_tab_content/equipment_and_renderer/equipment/offhand_grid/offhand_grid_item": { "file": "ui/inventory_screen_pocket.json", "type": "input_panel", "extend": { "name": "pocket_ui_container_item", "namespace": "common" } }, "pocket_armor_tab_content/equipment_and_renderer/armor_panel": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "children": [ "armor_and_player" ] }, "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "children": [ "player_preview_border" ] }, "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border": { "file": "ui/inventory_screen_pocket.json", "type": "image", "children": [ "player_bg" ] }, "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border/player_bg": { "file": "ui/inventory_screen_pocket.json", "type": "image", "children": [ "player_renderer_panel" ] }, "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border/player_bg/player_renderer_panel": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "children": [ "player_renderer" ] }, "pocket_armor_tab_content/equipment_and_renderer/armor_panel/armor_and_player/player_preview_border/player_bg/player_renderer_panel/player_renderer": { "file": "ui/inventory_screen_pocket.json", "type": "custom" }, "hotbar_panel": { "file": "ui/inventory_screen_pocket.json", "type": "input_panel", "children": [ "bg", "hotbar_grid" ] }, "hotbar_panel/bg": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "hotbar_panel/hotbar_grid": { "file": "ui/inventory_screen_pocket.json", "type": "grid" }, "hotbar_grid_item": { "file": "ui/inventory_screen_pocket.json", "type": "input_panel", "extend": { "name": "pocket_ui_container_item", "namespace": "common" } }, "survival_panel_pocket": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "children": [ "crafting_panel", "crafting_arrow_down", "crafting_table", "output" ] }, "survival_panel_pocket/crafting_panel": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "extend": { "name": "crafting_grid_2x2_with_label", "namespace": "crafting_pocket" } }, "survival_panel_pocket/crafting_arrow_down": { "file": "ui/inventory_screen_pocket.json", "type": "image", "extend": { "name": "crafting_arrow_down", "namespace": "crafting_pocket" } }, "survival_panel_pocket/crafting_table": { "file": "ui/inventory_screen_pocket.json", "type": "custom", "extend": { "name": "item_renderer", "namespace": "crafting" } }, "survival_panel_pocket/output": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "extend": { "name": "output_grid_and_label", "namespace": "crafting_pocket" } }, "survival_panel_crafting_pocket": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "children": [ "crafting_panel", "crafting_arrow_down", "output" ] }, "survival_panel_crafting_pocket/crafting_panel": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "extend": { "name": "crafting_grid_3x3_with_label", "namespace": "crafting_pocket" } }, "survival_panel_crafting_pocket/crafting_arrow_down": { "file": "ui/inventory_screen_pocket.json", "type": "image", "extend": { "name": "crafting_arrow_down", "namespace": "crafting_pocket" } }, "survival_panel_crafting_pocket/output": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "extend": { "name": "output_grid_and_label", "namespace": "crafting_pocket" } }, "inventory_screen_pocket_base": { "file": "ui/inventory_screen_pocket.json", "type": "screen", "extend": { "name": "inventory_screen_common", "namespace": "common" } }, "crafting_screen_pocket": { "file": "ui/inventory_screen_pocket.json", "type": "screen", "extend": { "name": "inventory_screen_pocket_base", "namespace": "crafting_pocket" } }, "inventory_screen_pocket": { "file": "ui/inventory_screen_pocket.json", "type": "screen", "extend": { "name": "inventory_screen_pocket_base", "namespace": "crafting_pocket" } }, "left_panel": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "children": [ "left_background", "recipe_book_tab_content", "inventory_tab_content" ] }, "left_panel/left_background": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "left_panel/recipe_book_tab_content": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "extend": { "name": "recipe_book_tab_content", "namespace": "crafting_pocket" } }, "left_panel/inventory_tab_content": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "extend": { "name": "inventory_tab_content", "namespace": "crafting_pocket" } }, "right_panel": { "file": "ui/inventory_screen_pocket.json", "type": "input_panel", "children": [ "right_background", "help_button", "crafting_tab_content", "armor_tab_content" ] }, "right_panel/right_background": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "right_panel/help_button": { "file": "ui/inventory_screen_pocket.json", "type": "button", "extend": { "name": "help_button", "namespace": "common" } }, "right_panel/crafting_tab_content": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "extend": { "name": "right_tab_content", "namespace": "crafting_pocket" } }, "right_panel/armor_tab_content": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "extend": { "name": "right_tab_content", "namespace": "crafting_pocket" } }, "both_panels": { "file": "ui/inventory_screen_pocket.json", "type": "stack_panel", "children": [ "left_tab_navigation_panel_pocket", "left_panel", "offset_panel", "right_panel", "right_tab_navigation_panel_pocket" ] }, "both_panels/left_tab_navigation_panel_pocket": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "extend": { "name": "left_tab_navigation_panel_pocket", "namespace": "crafting_pocket" } }, "both_panels/left_panel": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "extend": { "name": "left_panel", "namespace": "crafting_pocket" } }, "both_panels/offset_panel": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "children": [ "center_bg" ] }, "both_panels/offset_panel/center_bg": { "file": "ui/inventory_screen_pocket.json", "type": "image" }, "both_panels/right_panel": { "file": "ui/inventory_screen_pocket.json", "type": "input_panel", "extend": { "name": "right_panel", "namespace": "crafting_pocket" } }, "both_panels/right_tab_navigation_panel_pocket": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "extend": { "name": "right_tab_navigation_panel_pocket", "namespace": "crafting_pocket" } }, "gamepad_helper_border": { "file": "ui/inventory_screen_pocket.json", "type": "stack_panel", "children": [ "left_gamepad_panel", "both_panels", "right_gamepad_panel" ] }, "gamepad_helper_border/left_gamepad_panel": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "children": [ "gamepad_helper_left_bumper", "gamepad_helper_left_trigger" ] }, "gamepad_helper_border/left_gamepad_panel/gamepad_helper_left_bumper": { "file": "ui/inventory_screen_pocket.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_left_bumper", "namespace": "common" } }, "gamepad_helper_border/left_gamepad_panel/gamepad_helper_left_trigger": { "file": "ui/inventory_screen_pocket.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_left_trigger", "namespace": "common" } }, "gamepad_helper_border/both_panels": { "file": "ui/inventory_screen_pocket.json", "type": "stack_panel", "extend": { "name": "both_panels", "namespace": "crafting_pocket" } }, "gamepad_helper_border/right_gamepad_panel": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "children": [ "gamepad_helper_right_bumper_creative", "gamepad_helper_right_bumper", "gamepad_helper_right_trigger" ] }, "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_bumper_creative": { "file": "ui/inventory_screen_pocket.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_right_bumper", "namespace": "common" } }, "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_bumper": { "file": "ui/inventory_screen_pocket.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_right_bumper", "namespace": "common" } }, "gamepad_helper_border/right_gamepad_panel/gamepad_helper_right_trigger": { "file": "ui/inventory_screen_pocket.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_right_trigger", "namespace": "common" } }, "hotbar_and_panels": { "file": "ui/inventory_screen_pocket.json", "type": "stack_panel", "children": [ "padding_1", "gamepad_helper_border", "hotbar_section_panel" ] }, "hotbar_and_panels/padding_1": { "file": "ui/inventory_screen_pocket.json", "type": "panel" }, "hotbar_and_panels/gamepad_helper_border": { "file": "ui/inventory_screen_pocket.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_border", "namespace": "crafting_pocket" } }, "hotbar_and_panels/hotbar_section_panel": { "file": "ui/inventory_screen_pocket.json", "type": "input_panel", "extend": { "name": "drop_item_panel", "namespace": "common" }, "children": [ "hotbar" ] }, "hotbar_and_panels/hotbar_section_panel/hotbar": { "file": "ui/inventory_screen_pocket.json", "type": "input_panel", "extend": { "name": "hotbar_panel", "namespace": "crafting_pocket" } }, "recipe_inventory_screen_content_pocket": { "file": "ui/inventory_screen_pocket.json", "type": "input_panel", "children": [ "container_gamepad_helpers_pocket", "toast_screen_content", "selected_item_details_factory", "item_lock_notification_factory", "base_panel", "flying_item_renderer" ] }, "recipe_inventory_screen_content_pocket/container_gamepad_helpers_pocket": { "file": "ui/inventory_screen_pocket.json", "type": "stack_panel", "extend": { "name": "container_gamepad_helpers", "namespace": "common" } }, "recipe_inventory_screen_content_pocket/toast_screen_content": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "extend": { "name": "toast_screen_content", "namespace": "toast_screen" } }, "recipe_inventory_screen_content_pocket/selected_item_details_factory": { "file": "ui/inventory_screen_pocket.json", "type": "factory", "extend": { "name": "selected_item_details_factory", "namespace": "common" } }, "recipe_inventory_screen_content_pocket/item_lock_notification_factory": { "file": "ui/inventory_screen_pocket.json", "type": "factory", "extend": { "name": "item_lock_notification_factory", "namespace": "common" } }, "recipe_inventory_screen_content_pocket/base_panel": { "file": "ui/inventory_screen_pocket.json", "type": "panel", "children": [ "root_panel", "inventory_selected_icon_button", "gamepad_cursor", "hold_icon", "hotbar_and_panels" ] }, "recipe_inventory_screen_content_pocket/base_panel/root_panel": { "file": "ui/inventory_screen_pocket.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" } }, "recipe_inventory_screen_content_pocket/base_panel/inventory_selected_icon_button": { "file": "ui/inventory_screen_pocket.json", "type": "button", "extend": { "name": "inventory_selected_icon_button", "namespace": "common" } }, "recipe_inventory_screen_content_pocket/base_panel/gamepad_cursor": { "file": "ui/inventory_screen_pocket.json", "type": "button", "extend": { "name": "gamepad_cursor_button", "namespace": "common" } }, "recipe_inventory_screen_content_pocket/base_panel/hold_icon": { "file": "ui/inventory_screen_pocket.json", "type": "button", "extend": { "name": "inventory_take_progress_icon_button", "namespace": "common" } }, "recipe_inventory_screen_content_pocket/base_panel/hotbar_and_panels": { "file": "ui/inventory_screen_pocket.json", "type": "stack_panel", "extend": { "name": "hotbar_and_panels", "namespace": "crafting_pocket" } }, "recipe_inventory_screen_content_pocket/flying_item_renderer": { "file": "ui/inventory_screen_pocket.json", "type": "custom", "extend": { "name": "flying_item_renderer", "namespace": "common" } } }, "invite": { "black_border": { "file": "ui/invite_screen.json", "type": "image" }, "black_border_hover": { "file": "ui/invite_screen.json", "type": "image", "extend": { "name": "black_border", "namespace": "invite" } }, "platform_icon": { "file": "ui/invite_screen.json", "type": "image" }, "grey_borderless_locked": { "file": "ui/invite_screen.json", "type": "image", "extend": { "name": "black_border", "namespace": "invite" } }, "checked_locked_image": { "file": "ui/invite_screen.json", "type": "image", "extend": { "name": "checkbox_image", "namespace": "common" } }, "unchecked_locked_image": { "file": "ui/invite_screen.json", "type": "image", "extend": { "name": "checkbox_image", "namespace": "common" } }, "left_arrow_image": { "file": "ui/invite_screen.json", "type": "image" }, "right_arrow_image": { "file": "ui/invite_screen.json", "type": "image" }, "account_link_image": { "file": "ui/invite_screen.json", "type": "image" }, "panel_text": { "file": "ui/invite_screen.json", "type": "label" }, "loading_friends": { "file": "ui/invite_screen.json", "type": "label", "extend": { "name": "panel_text", "namespace": "invite" } }, "account_link_icon": { "file": "ui/invite_screen.json", "type": "stack_panel", "children": [ "space_01", "account_link_image", "space_03" ] }, "account_link_icon/space_01": { "file": "ui/invite_screen.json", "type": "panel" }, "account_link_icon/account_link_image": { "file": "ui/invite_screen.json", "type": "image", "extend": { "name": "account_link_image", "namespace": "invite" } }, "account_link_icon/space_03": { "file": "ui/invite_screen.json", "type": "panel" }, "gamerpic": { "file": "ui/invite_screen.json", "type": "custom" }, "third_party_profile_pic": { "file": "ui/invite_screen.json", "type": "image" }, "gamerpic_panel": { "file": "ui/invite_screen.json", "type": "panel", "children": [ "black_border", "gamerpic", "online_indication_positioner" ] }, "gamerpic_panel/black_border": { "file": "ui/invite_screen.json", "type": "image", "extend": { "name": "black_border", "namespace": "invite" } }, "gamerpic_panel/gamerpic": { "file": "ui/invite_screen.json", "type": "custom", "extend": { "name": "gamerpic", "namespace": "invite" } }, "gamerpic_panel/online_indication_positioner": { "file": "ui/invite_screen.json", "type": "panel", "children": [ "indicator_images" ] }, "gamerpic_panel/online_indication_positioner/indicator_images": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "online_indicator", "namespace": "invite" } }, "third_party_profile_pic_panel": { "file": "ui/invite_screen.json", "type": "panel", "children": [ "black_border", "third_party_profile_pic" ] }, "third_party_profile_pic_panel/black_border": { "file": "ui/invite_screen.json", "type": "image", "extend": { "name": "black_border", "namespace": "invite" } }, "third_party_profile_pic_panel/third_party_profile_pic": { "file": "ui/invite_screen.json", "type": "image", "extend": { "name": "third_party_profile_pic", "namespace": "invite" } }, "platform_icon_panel": { "file": "ui/invite_screen.json", "type": "panel", "children": [ "platform_icon" ] }, "platform_icon_panel/platform_icon": { "file": "ui/invite_screen.json", "type": "image", "extend": { "name": "platform_icon", "namespace": "invite" } }, "status_image": { "file": "ui/invite_screen.json", "type": "image" }, "online_image": { "file": "ui/invite_screen.json", "type": "image", "extend": { "name": "status_image", "namespace": "invite" } }, "offline_image": { "file": "ui/invite_screen.json", "type": "image", "extend": { "name": "status_image", "namespace": "invite" } }, "online_indicator": { "file": "ui/invite_screen.json", "type": "panel", "children": [ "online_image" ] }, "online_indicator/online_image": { "file": "ui/invite_screen.json", "type": "image", "extend": { "name": "online_image", "namespace": "invite" } }, "checkbox_panel": { "file": "ui/invite_screen.json", "type": "panel" }, "checked_panel": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "checkbox_panel", "namespace": "invite" }, "children": [ "checked_image" ] }, "checked_panel/checked_image": { "file": "ui/invite_screen.json", "type": "image", "extend": { "name": "checked_image", "namespace": "common" } }, "unchecked_panel": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "checkbox_panel", "namespace": "invite" }, "children": [ "unchecked_image" ] }, "unchecked_panel/unchecked_image": { "file": "ui/invite_screen.json", "type": "image", "extend": { "name": "unchecked_image", "namespace": "common" } }, "checked_locked_panel": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "checkbox_panel", "namespace": "invite" }, "children": [ "checked_image" ] }, "checked_locked_panel/checked_image": { "file": "ui/invite_screen.json", "type": "image", "extend": { "name": "checked_locked_image", "namespace": "invite" } }, "unchecked_locked_panel": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "checkbox_panel", "namespace": "invite" }, "children": [ "unchecked_image" ] }, "unchecked_locked_panel/unchecked_image": { "file": "ui/invite_screen.json", "type": "image", "extend": { "name": "unchecked_locked_image", "namespace": "invite" } }, "checked_hover_panel": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "checkbox_panel", "namespace": "invite" }, "children": [ "checked_hover_image" ] }, "checked_hover_panel/checked_hover_image": { "file": "ui/invite_screen.json", "type": "image", "extend": { "name": "checked_hover_image", "namespace": "common" } }, "unchecked_hover_panel": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "checkbox_panel", "namespace": "invite" }, "children": [ "unchecked_hover_image" ] }, "unchecked_hover_panel/unchecked_hover_image": { "file": "ui/invite_screen.json", "type": "image", "extend": { "name": "unchecked_hover_image", "namespace": "common" } }, "friend_label": { "file": "ui/invite_screen.json", "type": "label" }, "friend_grid_xbl_gamertag": { "file": "ui/invite_screen.json", "type": "label", "extend": { "name": "friend_label", "namespace": "invite" } }, "friend_grid_current_game_label": { "file": "ui/invite_screen.json", "type": "label", "extend": { "name": "friend_label", "namespace": "invite" } }, "friend_grid_third_party_tag": { "file": "ui/invite_screen.json", "type": "label", "extend": { "name": "friend_label", "namespace": "invite" } }, "friend_background": { "file": "ui/invite_screen.json", "type": "image", "extend": { "name": "black_border", "namespace": "invite" } }, "friend_background_hover": { "file": "ui/invite_screen.json", "type": "image", "extend": { "name": "black_border_hover", "namespace": "invite" } }, "friend_background_borderless": { "file": "ui/invite_screen.json", "type": "image", "extend": { "name": "grey_borderless_locked", "namespace": "invite" } }, "hover_friend_button": { "file": "ui/invite_screen.json", "type": "panel", "children": [ "friend_button_layout", "hover_text" ] }, "hover_friend_button/friend_button_layout": { "file": "ui/invite_screen.json", "type": "unknown", "extend": { "name": "friend_button_layout", "namespace": "invite" } }, "hover_friend_button/hover_text": { "file": "ui/invite_screen.json", "type": "custom", "extend": { "name": "hover_text", "namespace": "common" } }, "linked_hover_friend_button": { "file": "ui/invite_screen.json", "type": "panel", "children": [ "hover_text" ] }, "linked_hover_friend_button/hover_text": { "file": "ui/invite_screen.json", "type": "custom", "extend": { "name": "hover_text", "namespace": "common" } }, "msa_friend_button_layout": { "file": "ui/invite_screen.json", "type": "stack_panel", "children": [ "spacer01", "platform_icon_spacer", "spacer_02", "friend_grid_label_layout" ] }, "msa_friend_button_layout/spacer01": { "file": "ui/invite_screen.json", "type": "panel" }, "msa_friend_button_layout/platform_icon_spacer": { "file": "ui/invite_screen.json", "type": "panel" }, "msa_friend_button_layout/spacer_02": { "file": "ui/invite_screen.json", "type": "panel" }, "msa_friend_button_layout/friend_grid_label_layout": { "file": "ui/invite_screen.json", "type": "stack_panel", "children": [ "spacer_01", "friend_grid_xbl_gamertag", "friend_grid_current_game_label" ] }, "msa_friend_button_layout/friend_grid_label_layout/spacer_01": { "file": "ui/invite_screen.json", "type": "panel" }, "msa_friend_button_layout/friend_grid_label_layout/friend_grid_xbl_gamertag": { "file": "ui/invite_screen.json", "type": "label", "extend": { "name": "friend_grid_xbl_gamertag", "namespace": "invite" } }, "msa_friend_button_layout/friend_grid_label_layout/friend_grid_current_game_label": { "file": "ui/invite_screen.json", "type": "label", "extend": { "name": "friend_grid_current_game_label", "namespace": "invite" } }, "platform_friend_button_layout": { "file": "ui/invite_screen.json", "type": "stack_panel", "children": [ "spacer01", "platform_icon_spacer", "third_party_pic_panel_positioner", "spacer_02", "friend_grid_label_layout", "platform_icon_positioner", "online_indication_positioner" ] }, "platform_friend_button_layout/spacer01": { "file": "ui/invite_screen.json", "type": "panel" }, "platform_friend_button_layout/platform_icon_spacer": { "file": "ui/invite_screen.json", "type": "panel" }, "platform_friend_button_layout/third_party_pic_panel_positioner": { "file": "ui/invite_screen.json", "type": "panel", "children": [ "pp" ] }, "platform_friend_button_layout/third_party_pic_panel_positioner/pp": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "third_party_profile_pic_panel", "namespace": "invite" } }, "platform_friend_button_layout/spacer_02": { "file": "ui/invite_screen.json", "type": "panel" }, "platform_friend_button_layout/friend_grid_label_layout": { "file": "ui/invite_screen.json", "type": "stack_panel", "children": [ "spacer_01", "friend_grid_third_party_tag", "friend_grid_current_game_label" ] }, "platform_friend_button_layout/friend_grid_label_layout/spacer_01": { "file": "ui/invite_screen.json", "type": "panel" }, "platform_friend_button_layout/friend_grid_label_layout/friend_grid_third_party_tag": { "file": "ui/invite_screen.json", "type": "label", "extend": { "name": "friend_grid_third_party_tag", "namespace": "invite" } }, "platform_friend_button_layout/friend_grid_label_layout/friend_grid_current_game_label": { "file": "ui/invite_screen.json", "type": "label", "extend": { "name": "friend_grid_current_game_label", "namespace": "invite" } }, "platform_friend_button_layout/platform_icon_positioner": { "file": "ui/invite_screen.json", "type": "panel", "children": [ "platform_icon" ] }, "platform_friend_button_layout/platform_icon_positioner/platform_icon": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "platform_icon_panel", "namespace": "invite" } }, "platform_friend_button_layout/online_indication_positioner": { "file": "ui/invite_screen.json", "type": "panel", "children": [ "indicator_images" ] }, "platform_friend_button_layout/online_indication_positioner/indicator_images": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "online_indicator", "namespace": "invite" } }, "linked_friend_button_layout": { "file": "ui/invite_screen.json", "type": "stack_panel", "children": [ "spacer01", "platform_icon_positioner", "spacer02", "platform_profile_pictures", "spacer03", "platform_profile_names", "online_indication_positioner" ] }, "linked_friend_button_layout/spacer01": { "file": "ui/invite_screen.json", "type": "panel" }, "linked_friend_button_layout/platform_icon_positioner": { "file": "ui/invite_screen.json", "type": "panel", "children": [ "platform_icon" ] }, "linked_friend_button_layout/platform_icon_positioner/platform_icon": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "platform_icon_panel", "namespace": "invite" } }, "linked_friend_button_layout/spacer02": { "file": "ui/invite_screen.json", "type": "panel" }, "linked_friend_button_layout/platform_profile_pictures": { "file": "ui/invite_screen.json", "type": "stack_panel", "children": [ "spacer_01", "pp2", "account_link", "pp1", "spacer_03" ] }, "linked_friend_button_layout/platform_profile_pictures/spacer_01": { "file": "ui/invite_screen.json", "type": "panel" }, "linked_friend_button_layout/platform_profile_pictures/pp2": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "third_party_profile_pic_panel", "namespace": "invite" } }, "linked_friend_button_layout/platform_profile_pictures/account_link": { "file": "ui/invite_screen.json", "type": "stack_panel", "extend": { "name": "account_link_icon", "namespace": "invite" } }, "linked_friend_button_layout/platform_profile_pictures/pp1": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "gamerpic_panel", "namespace": "invite" } }, "linked_friend_button_layout/platform_profile_pictures/spacer_03": { "file": "ui/invite_screen.json", "type": "panel" }, "linked_friend_button_layout/spacer03": { "file": "ui/invite_screen.json", "type": "panel" }, "linked_friend_button_layout/platform_profile_names": { "file": "ui/invite_screen.json", "type": "stack_panel", "children": [ "spacer_01", "friend_grid_third_party_tag", "spacer_02", "friend_grid_xbl_gamertag", "friend_grid_current_game_label" ] }, "linked_friend_button_layout/platform_profile_names/spacer_01": { "file": "ui/invite_screen.json", "type": "panel" }, "linked_friend_button_layout/platform_profile_names/friend_grid_third_party_tag": { "file": "ui/invite_screen.json", "type": "label", "extend": { "name": "friend_grid_third_party_tag", "namespace": "invite" } }, "linked_friend_button_layout/platform_profile_names/spacer_02": { "file": "ui/invite_screen.json", "type": "panel" }, "linked_friend_button_layout/platform_profile_names/friend_grid_xbl_gamertag": { "file": "ui/invite_screen.json", "type": "label", "extend": { "name": "friend_grid_xbl_gamertag", "namespace": "invite" } }, "linked_friend_button_layout/platform_profile_names/friend_grid_current_game_label": { "file": "ui/invite_screen.json", "type": "label", "extend": { "name": "friend_grid_current_game_label", "namespace": "invite" } }, "linked_friend_button_layout/online_indication_positioner": { "file": "ui/invite_screen.json", "type": "panel", "children": [ "indicator_images" ] }, "linked_friend_button_layout/online_indication_positioner/indicator_images": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "online_indicator", "namespace": "invite" } }, "template_msa_friend_button_layout": { "file": "ui/invite_screen.json", "type": "panel", "children": [ "friend_background", "friend_button_layout", "unchecked" ] }, "template_msa_friend_button_layout/friend_background": { "file": "ui/invite_screen.json", "type": "image", "extend": { "name": "friend_background", "namespace": "invite" } }, "template_msa_friend_button_layout/friend_button_layout": { "file": "ui/invite_screen.json", "type": "stack_panel", "extend": { "name": "msa_friend_button_layout", "namespace": "invite" } }, "template_msa_friend_button_layout/unchecked": { "file": "ui/invite_screen.json", "type": "unknown" }, "template_platform_friend_button_layout": { "file": "ui/invite_screen.json", "type": "panel", "children": [ "friend_background", "friend_button_layout", "unchecked" ] }, "template_platform_friend_button_layout/friend_background": { "file": "ui/invite_screen.json", "type": "image", "extend": { "name": "friend_background", "namespace": "invite" } }, "template_platform_friend_button_layout/friend_button_layout": { "file": "ui/invite_screen.json", "type": "stack_panel", "extend": { "name": "platform_friend_button_layout", "namespace": "invite" } }, "template_platform_friend_button_layout/unchecked": { "file": "ui/invite_screen.json", "type": "unknown" }, "template_linked_friend_button_layout": { "file": "ui/invite_screen.json", "type": "panel", "children": [ "friend_background", "horizontal_spacer_panel" ] }, "template_linked_friend_button_layout/friend_background": { "file": "ui/invite_screen.json", "type": "image", "extend": { "name": "friend_background", "namespace": "invite" } }, "template_linked_friend_button_layout/horizontal_spacer_panel": { "file": "ui/invite_screen.json", "type": "stack_panel", "children": [ "unchecked_locked", "friend_button_layout" ] }, "template_linked_friend_button_layout/horizontal_spacer_panel/unchecked_locked": { "file": "ui/invite_screen.json", "type": "unknown" }, "template_linked_friend_button_layout/horizontal_spacer_panel/friend_button_layout": { "file": "ui/invite_screen.json", "type": "stack_panel", "extend": { "name": "linked_friend_button_layout", "namespace": "invite" } }, "msa_friend_button": { "file": "ui/invite_screen.json", "type": "toggle", "extend": { "name": "checkbox", "namespace": "common" }, "children": [ "checked", "unchecked", "checked_hover", "unchecked_hover", "checked_locked", "unchecked_locked", "checked_locked_hover", "unchecked_locked_hover" ] }, "msa_friend_button/checked": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "template_msa_friend_button_layout", "namespace": "invite" } }, "msa_friend_button/unchecked": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "template_msa_friend_button_layout", "namespace": "invite" } }, "msa_friend_button/checked_hover": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "template_msa_friend_button_layout", "namespace": "invite" } }, "msa_friend_button/unchecked_hover": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "template_msa_friend_button_layout", "namespace": "invite" } }, "msa_friend_button/checked_locked": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "template_msa_friend_button_layout", "namespace": "invite" } }, "msa_friend_button/unchecked_locked": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "template_msa_friend_button_layout", "namespace": "invite" } }, "msa_friend_button/checked_locked_hover": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "template_msa_friend_button_layout", "namespace": "invite" } }, "msa_friend_button/unchecked_locked_hover": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "template_msa_friend_button_layout", "namespace": "invite" } }, "platform_friend_button": { "file": "ui/invite_screen.json", "type": "toggle", "extend": { "name": "checkbox", "namespace": "common" }, "children": [ "checked", "unchecked", "checked_hover", "unchecked_hover", "checked_locked", "unchecked_locked", "checked_locked_hover", "unchecked_locked_hover" ] }, "platform_friend_button/checked": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "template_platform_friend_button_layout", "namespace": "invite" } }, "platform_friend_button/unchecked": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "template_platform_friend_button_layout", "namespace": "invite" } }, "platform_friend_button/checked_hover": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "template_platform_friend_button_layout", "namespace": "invite" } }, "platform_friend_button/unchecked_hover": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "template_platform_friend_button_layout", "namespace": "invite" } }, "platform_friend_button/checked_locked": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "template_platform_friend_button_layout", "namespace": "invite" } }, "platform_friend_button/unchecked_locked": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "template_platform_friend_button_layout", "namespace": "invite" } }, "platform_friend_button/checked_locked_hover": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "template_platform_friend_button_layout", "namespace": "invite" } }, "platform_friend_button/unchecked_locked_hover": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "template_platform_friend_button_layout", "namespace": "invite" } }, "linked_friend_button": { "file": "ui/invite_screen.json", "type": "toggle", "extend": { "name": "checkbox", "namespace": "common" }, "children": [ "checked", "unchecked", "checked_hover", "unchecked_hover", "checked_locked", "unchecked_locked", "checked_locked_hover", "unchecked_locked_hover" ] }, "linked_friend_button/checked": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "template_linked_friend_button_layout", "namespace": "invite" } }, "linked_friend_button/unchecked": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "template_linked_friend_button_layout", "namespace": "invite" } }, "linked_friend_button/checked_hover": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "template_linked_friend_button_layout", "namespace": "invite" } }, "linked_friend_button/unchecked_hover": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "template_linked_friend_button_layout", "namespace": "invite" } }, "linked_friend_button/checked_locked": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "template_linked_friend_button_layout", "namespace": "invite" } }, "linked_friend_button/unchecked_locked": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "template_linked_friend_button_layout", "namespace": "invite" } }, "linked_friend_button/checked_locked_hover": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "template_linked_friend_button_layout", "namespace": "invite" } }, "linked_friend_button/unchecked_locked_hover": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "template_linked_friend_button_layout", "namespace": "invite" } }, "msa_friend_grid_item_template": { "file": "ui/invite_screen.json", "type": "stack_panel", "children": [ "friend_button_Panel", "profile_button_pannel", "spacer_03" ] }, "msa_friend_grid_item_template/friend_button_Panel": { "file": "ui/invite_screen.json", "type": "panel", "children": [ "gamerpic_panel_positioner", "friend_button" ] }, "msa_friend_grid_item_template/friend_button_Panel/gamerpic_panel_positioner": { "file": "ui/invite_screen.json", "type": "panel", "children": [ "pp" ] }, "msa_friend_grid_item_template/friend_button_Panel/gamerpic_panel_positioner/pp": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "gamerpic_panel", "namespace": "invite" } }, "msa_friend_grid_item_template/friend_button_Panel/friend_button": { "file": "ui/invite_screen.json", "type": "toggle", "extend": { "name": "msa_friend_button", "namespace": "invite" } }, "msa_friend_grid_item_template/profile_button_pannel": { "file": "ui/invite_screen.json", "type": "panel", "children": [ "view_profile_button" ] }, "msa_friend_grid_item_template/profile_button_pannel/view_profile_button": { "file": "ui/invite_screen.json", "type": "button", "extend": { "name": "profile_button", "namespace": "invite" } }, "msa_friend_grid_item_template/spacer_03": { "file": "ui/invite_screen.json", "type": "panel" }, "platform_friend_grid_item_template": { "file": "ui/invite_screen.json", "type": "panel", "children": [ "friend_button" ] }, "platform_friend_grid_item_template/friend_button": { "file": "ui/invite_screen.json", "type": "toggle", "extend": { "name": "platform_friend_button", "namespace": "invite" } }, "friend_linked_account_grid_item_template": { "file": "ui/invite_screen.json", "type": "panel", "children": [ "friend_button" ] }, "friend_linked_account_grid_item_template/friend_button": { "file": "ui/invite_screen.json", "type": "toggle", "extend": { "name": "linked_friend_button", "namespace": "invite" } }, "online_xbox_live_friend_grid_item": { "file": "ui/invite_screen.json", "type": "stack_panel", "extend": { "name": "msa_friend_grid_item_template", "namespace": "invite" } }, "offline_xbox_live_friend_grid_item": { "file": "ui/invite_screen.json", "type": "stack_panel", "extend": { "name": "msa_friend_grid_item_template", "namespace": "invite" } }, "online_linked_account_friend_grid_item": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "friend_linked_account_grid_item_template", "namespace": "invite" } }, "offline_linked_account_friend_grid_item": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "friend_linked_account_grid_item_template", "namespace": "invite" } }, "online_platform_friend_grid_item": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "platform_friend_grid_item_template", "namespace": "invite" } }, "offline_platform_friend_grid_item": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "platform_friend_grid_item_template", "namespace": "invite" } }, "online_xbox_live_friend_list_grid": { "file": "ui/invite_screen.json", "type": "grid" }, "offline_xbox_live_friend_list_grid": { "file": "ui/invite_screen.json", "type": "grid" }, "online_platform_friend_list_grid": { "file": "ui/invite_screen.json", "type": "grid" }, "offline_platform_friend_list_grid": { "file": "ui/invite_screen.json", "type": "grid" }, "online_linked_account_friend_list_grid": { "file": "ui/invite_screen.json", "type": "grid" }, "offline_linked_account_friend_list_grid": { "file": "ui/invite_screen.json", "type": "grid" }, "friends_pagination_controls": { "file": "ui/invite_screen.json", "type": "stack_panel", "children": [ "previous_button", "center_panel", "next_button" ] }, "friends_pagination_controls/previous_button": { "file": "ui/invite_screen.json", "type": "button", "extend": { "name": "light_glyph_button", "namespace": "common_buttons" } }, "friends_pagination_controls/center_panel": { "file": "ui/invite_screen.json", "type": "panel", "children": [ "page_counter" ] }, "friends_pagination_controls/center_panel/page_counter": { "file": "ui/invite_screen.json", "type": "label" }, "friends_pagination_controls/next_button": { "file": "ui/invite_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "friends_category": { "file": "ui/invite_screen.json", "type": "stack_panel", "children": [ "friends_grid", "pagination_stack_panel", "padding" ] }, "friends_category/friends_grid": { "file": "ui/invite_screen.json", "type": "unknown" }, "friends_category/pagination_stack_panel": { "file": "ui/invite_screen.json", "type": "stack_panel", "children": [ "padding_1", "pagination_controls", "padding_2", "divider" ] }, "friends_category/pagination_stack_panel/padding_1": { "file": "ui/invite_screen.json", "type": "panel" }, "friends_category/pagination_stack_panel/pagination_controls": { "file": "ui/invite_screen.json", "type": "stack_panel", "extend": { "name": "friends_pagination_controls", "namespace": "invite" } }, "friends_category/pagination_stack_panel/padding_2": { "file": "ui/invite_screen.json", "type": "panel" }, "friends_category/pagination_stack_panel/divider": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "horizontal_divider", "namespace": "common" } }, "friends_category/padding": { "file": "ui/invite_screen.json", "type": "panel" }, "frame_label": { "file": "ui/invite_screen.json", "type": "label", "extend": { "name": "label", "namespace": "invite" } }, "friend_panel": { "file": "ui/invite_screen.json", "type": "panel" }, "scrolling_content_stack": { "file": "ui/invite_screen.json", "type": "stack_panel", "children": [ "invite_party_panel", "message", "online_platform", "vertical_padding_0", "online_platform_friend_list_category", "crossplatform_disabled_panel", "crossplatform_disable_spacer", "online_cross_platform", "vertical_padding_1", "online_linked_account_friend_list_category", "online_xbox_live_friend_list_category", "offline_platform", "vertical_padding_2", "offline_platform_friend_list_category", "no_platform_friends", "offline_cross_platform", "vertical_padding_3", "offline_linked_account_friend_list_category", "offline_xbox_live_friend_list_category", "no_xbox_live_friends" ] }, "scrolling_content_stack/invite_party_panel": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "invite_party_panel", "namespace": "invite" } }, "scrolling_content_stack/message": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "friend_panel", "namespace": "invite" }, "children": [ "frame_label" ] }, "scrolling_content_stack/message/frame_label": { "file": "ui/invite_screen.json", "type": "label", "extend": { "name": "frame_label", "namespace": "invite" } }, "scrolling_content_stack/online_platform": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "friend_panel", "namespace": "invite" }, "children": [ "frame_label" ] }, "scrolling_content_stack/online_platform/frame_label": { "file": "ui/invite_screen.json", "type": "label", "extend": { "name": "frame_label", "namespace": "invite" } }, "scrolling_content_stack/vertical_padding_0": { "file": "ui/invite_screen.json", "type": "panel" }, "scrolling_content_stack/online_platform_friend_list_category": { "file": "ui/invite_screen.json", "type": "stack_panel", "extend": { "name": "friends_category", "namespace": "invite" } }, "scrolling_content_stack/crossplatform_disabled_panel": { "file": "ui/invite_screen.json", "type": "image", "children": [ "disable_text" ] }, "scrolling_content_stack/crossplatform_disabled_panel/disable_text": { "file": "ui/invite_screen.json", "type": "label" }, "scrolling_content_stack/crossplatform_disable_spacer": { "file": "ui/invite_screen.json", "type": "panel" }, "scrolling_content_stack/online_cross_platform": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "friend_panel", "namespace": "invite" }, "children": [ "frame_label" ] }, "scrolling_content_stack/online_cross_platform/frame_label": { "file": "ui/invite_screen.json", "type": "label", "extend": { "name": "frame_label", "namespace": "invite" } }, "scrolling_content_stack/vertical_padding_1": { "file": "ui/invite_screen.json", "type": "panel" }, "scrolling_content_stack/online_linked_account_friend_list_category": { "file": "ui/invite_screen.json", "type": "stack_panel", "extend": { "name": "friends_category", "namespace": "invite" } }, "scrolling_content_stack/online_xbox_live_friend_list_category": { "file": "ui/invite_screen.json", "type": "stack_panel", "extend": { "name": "friends_category", "namespace": "invite" } }, "scrolling_content_stack/offline_platform": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "friend_panel", "namespace": "invite" }, "children": [ "frame_label" ] }, "scrolling_content_stack/offline_platform/frame_label": { "file": "ui/invite_screen.json", "type": "label", "extend": { "name": "frame_label", "namespace": "invite" } }, "scrolling_content_stack/vertical_padding_2": { "file": "ui/invite_screen.json", "type": "panel" }, "scrolling_content_stack/offline_platform_friend_list_category": { "file": "ui/invite_screen.json", "type": "stack_panel", "extend": { "name": "friends_category", "namespace": "invite" } }, "scrolling_content_stack/no_platform_friends": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "friend_panel", "namespace": "invite" }, "children": [ "no_friends_tts_wrapper" ] }, "scrolling_content_stack/no_platform_friends/no_friends_tts_wrapper": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "scrolling_content_stack/offline_cross_platform": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "friend_panel", "namespace": "invite" }, "children": [ "frame_label" ] }, "scrolling_content_stack/offline_cross_platform/frame_label": { "file": "ui/invite_screen.json", "type": "label", "extend": { "name": "frame_label", "namespace": "invite" } }, "scrolling_content_stack/vertical_padding_3": { "file": "ui/invite_screen.json", "type": "panel" }, "scrolling_content_stack/offline_linked_account_friend_list_category": { "file": "ui/invite_screen.json", "type": "stack_panel", "extend": { "name": "friends_category", "namespace": "invite" } }, "scrolling_content_stack/offline_xbox_live_friend_list_category": { "file": "ui/invite_screen.json", "type": "stack_panel", "extend": { "name": "friends_category", "namespace": "invite" } }, "scrolling_content_stack/no_xbox_live_friends": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "friend_panel", "namespace": "invite" }, "children": [ "no_friends_tts_wrapper" ] }, "scrolling_content_stack/no_xbox_live_friends/no_friends_tts_wrapper": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "invite_party_panel": { "file": "ui/invite_screen.json", "type": "panel", "children": [ "frame_label", "frame_description", "our_toggle", "border_outline" ] }, "invite_party_panel/frame_label": { "file": "ui/invite_screen.json", "type": "label", "extend": { "name": "frame_label", "namespace": "invite" } }, "invite_party_panel/frame_description": { "file": "ui/invite_screen.json", "type": "label", "extend": { "name": "frame_label", "namespace": "invite" } }, "invite_party_panel/our_toggle": { "file": "ui/invite_screen.json", "type": "toggle", "extend": { "name": "option_toggle_control", "namespace": "settings_common" } }, "invite_party_panel/border_outline": { "file": "ui/invite_screen.json", "type": "image", "extend": { "name": "black_border", "namespace": "invite" } }, "friend_button_test": { "file": "ui/invite_screen.json", "type": "toggle", "extend": { "name": "msa_friend_button", "namespace": "invite" } }, "progress_bar_and_scrolling_content_panel": { "file": "ui/invite_screen.json", "type": "panel", "children": [ "progress_loading_bars", "invite_scrolling_area" ] }, "progress_bar_and_scrolling_content_panel/progress_loading_bars": { "file": "ui/invite_screen.json", "type": "image", "extend": { "name": "progress_loading_bars", "namespace": "play" } }, "progress_bar_and_scrolling_content_panel/invite_scrolling_area": { "file": "ui/invite_screen.json", "type": "stack_panel", "extend": { "name": "scrolling_content_stack", "namespace": "invite" } }, "no_xbox_live_friends_frame_label": { "file": "ui/invite_screen.json", "type": "label", "extend": { "name": "frame_label", "namespace": "invite" } }, "no_platform_friends_frame_label": { "file": "ui/invite_screen.json", "type": "label", "extend": { "name": "frame_label", "namespace": "invite" } }, "horizontal_invite_panel": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "main_panel_one_button", "namespace": "common_dialogs" } }, "vertical_invite_panel": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "main_panel_two_buttons", "namespace": "common_dialogs" } }, "scrolling_area": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "invite_button_content": { "file": "ui/invite_screen.json", "type": "panel", "children": [ "gameplay_helper", "button_label" ] }, "invite_button_content/gameplay_helper": { "file": "ui/invite_screen.json", "type": "unknown" }, "invite_button_content/button_label": { "file": "ui/invite_screen.json", "type": "label" }, "invite_button_content_hover": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "invite_button_content", "namespace": "invite" } }, "invite_button_content_pressed": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "invite_button_content", "namespace": "invite" } }, "invite_button_content_locked": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "invite_button_content", "namespace": "invite" } }, "add_friend_button": { "file": "ui/invite_screen.json", "type": "button", "extend": { "name": "light_content_button_control_content", "namespace": "common_buttons" } }, "profile_button_content": { "file": "ui/invite_screen.json", "type": "panel", "children": [ "button_label" ] }, "profile_button_content/button_label": { "file": "ui/invite_screen.json", "type": "label" }, "profile_button_content_hover": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "profile_button_content", "namespace": "invite" } }, "profile_button_content_pressed": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "profile_button_content", "namespace": "invite" } }, "profile_button_content_locked": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "profile_button_content", "namespace": "invite" } }, "add_member_button": { "file": "ui/invite_screen.json", "type": "button", "extend": { "name": "light_content_button_control_content", "namespace": "common_buttons" } }, "send_button": { "file": "ui/invite_screen.json", "type": "button", "extend": { "name": "light_content_button_control_content", "namespace": "common_buttons" } }, "profile_button": { "file": "ui/invite_screen.json", "type": "button", "extend": { "name": "light_content_button_control_content", "namespace": "common_buttons" } }, "horizontal_button_stack_panel": { "file": "ui/invite_screen.json", "type": "stack_panel", "children": [ "add_friend_button", "add_member_button", "padding", "send_button" ] }, "horizontal_button_stack_panel/add_friend_button": { "file": "ui/invite_screen.json", "type": "button", "extend": { "name": "add_friend_button", "namespace": "invite" } }, "horizontal_button_stack_panel/add_member_button": { "file": "ui/invite_screen.json", "type": "button", "extend": { "name": "add_member_button", "namespace": "invite" } }, "horizontal_button_stack_panel/padding": { "file": "ui/invite_screen.json", "type": "panel" }, "horizontal_button_stack_panel/send_button": { "file": "ui/invite_screen.json", "type": "button", "extend": { "name": "send_button", "namespace": "invite" } }, "vertical_buttons_top_panel": { "file": "ui/invite_screen.json", "type": "panel", "children": [ "add_friend_button", "add_member_button" ] }, "vertical_buttons_top_panel/add_friend_button": { "file": "ui/invite_screen.json", "type": "button", "extend": { "name": "add_friend_button", "namespace": "invite" } }, "vertical_buttons_top_panel/add_member_button": { "file": "ui/invite_screen.json", "type": "button", "extend": { "name": "add_member_button", "namespace": "invite" } }, "vertical_buttons_bottom_panel": { "file": "ui/invite_screen.json", "type": "panel", "children": [ "send_button" ] }, "vertical_buttons_bottom_panel/send_button": { "file": "ui/invite_screen.json", "type": "button", "extend": { "name": "send_button", "namespace": "invite" } }, "gamepad_helpers": { "file": "ui/invite_screen.json", "type": "panel", "children": [ "gamepad_helper_a" ] }, "gamepad_helpers/gamepad_helper_a": { "file": "ui/invite_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_a", "namespace": "common" } }, "invite_screen": { "file": "ui/invite_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "invite_screen_content": { "file": "ui/invite_screen.json", "type": "panel", "children": [ "gamepad_helpers", "invite_panel" ] }, "invite_screen_content/gamepad_helpers": { "file": "ui/invite_screen.json", "type": "panel", "extend": { "name": "gamepad_helpers", "namespace": "invite" } }, "invite_screen_content/invite_panel": { "file": "ui/invite_screen.json", "type": "unknown" } }, "jigsaw_editor": { "horizontal_buffer": { "file": "ui/jigsaw_editor_screen.json", "type": "panel" }, "vertical_buffer": { "file": "ui/jigsaw_editor_screen.json", "type": "panel" }, "common_text_label": { "file": "ui/jigsaw_editor_screen.json", "type": "label" }, "text_edit_box": { "file": "ui/jigsaw_editor_screen.json", "type": "edit_box", "extend": { "name": "text_edit_box", "namespace": "common" } }, "help_icon": { "file": "ui/jigsaw_editor_screen.json", "type": "image" }, "toggle_with_label": { "file": "ui/jigsaw_editor_screen.json", "type": "stack_panel", "children": [ "toggle", "toggle_label_padding", "toggle_label_wrapper" ] }, "toggle_with_label/toggle": { "file": "ui/jigsaw_editor_screen.json", "type": "toggle", "extend": { "name": "option_toggle_control", "namespace": "settings_common" } }, "toggle_with_label/toggle_label_padding": { "file": "ui/jigsaw_editor_screen.json", "type": "panel" }, "toggle_with_label/toggle_label_wrapper": { "file": "ui/jigsaw_editor_screen.json", "type": "panel", "children": [ "toggle_label", "toggle_label_disabled" ] }, "toggle_with_label/toggle_label_wrapper/toggle_label": { "file": "ui/jigsaw_editor_screen.json", "type": "label", "extend": { "name": "common_text_label", "namespace": "jigsaw_editor" } }, "toggle_with_label/toggle_label_wrapper/toggle_label_disabled": { "file": "ui/jigsaw_editor_screen.json", "type": "label", "extend": { "name": "common_text_label", "namespace": "jigsaw_editor" } }, "data_item_title_and_edit": { "file": "ui/jigsaw_editor_screen.json", "type": "stack_panel", "children": [ "data_title", "data_text_edit" ] }, "data_item_title_and_edit/data_title": { "file": "ui/jigsaw_editor_screen.json", "type": "label", "extend": { "name": "common_text_label", "namespace": "jigsaw_editor" } }, "data_item_title_and_edit/data_text_edit": { "file": "ui/jigsaw_editor_screen.json", "type": "edit_box", "extend": { "name": "text_edit_box", "namespace": "jigsaw_editor" } }, "data_item_title_and_edit_fill": { "file": "ui/jigsaw_editor_screen.json", "type": "stack_panel", "extend": { "name": "data_item_title_and_edit", "namespace": "jigsaw_editor" } }, "data_item_title_and_toggle": { "file": "ui/jigsaw_editor_screen.json", "type": "stack_panel", "children": [ "data_title", "toggle" ] }, "data_item_title_and_toggle/data_title": { "file": "ui/jigsaw_editor_screen.json", "type": "label", "extend": { "name": "common_text_label", "namespace": "jigsaw_editor" } }, "data_item_title_and_toggle/toggle": { "file": "ui/jigsaw_editor_screen.json", "type": "stack_panel", "extend": { "name": "toggle_with_label", "namespace": "jigsaw_editor" } }, "exit_buttons": { "file": "ui/jigsaw_editor_screen.json", "type": "stack_panel", "children": [ "done_button", "buffer", "help_button" ] }, "exit_buttons/done_button": { "file": "ui/jigsaw_editor_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "exit_buttons/buffer": { "file": "ui/jigsaw_editor_screen.json", "type": "panel" }, "exit_buttons/help_button": { "file": "ui/jigsaw_editor_screen.json", "type": "button", "extend": { "name": "light_glyph_button", "namespace": "common_buttons" } }, "scrolling_panel_wrapper": { "file": "ui/jigsaw_editor_screen.json", "type": "image", "extend": { "name": "dialog_background_hollow_4", "namespace": "common" }, "children": [ "scrolling_panel" ] }, "scrolling_panel_wrapper/scrolling_panel": { "file": "ui/jigsaw_editor_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "jigsaw_editor" } }, "scrolling_panel": { "file": "ui/jigsaw_editor_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "scroll_panel_content": { "file": "ui/jigsaw_editor_screen.json", "type": "stack_panel", "children": [ "target_pool_title_and_edit", "buffer_1", "name_title_and_edit", "buffer_2", "target_title_and_edit", "buffer_3", "final_block_title_and_edit", "buffer_4", "selection_and_placement_priority", "buffer_5", "joint_type_title_and_toggle", "buffer_6" ] }, "scroll_panel_content/target_pool_title_and_edit": { "file": "ui/jigsaw_editor_screen.json", "type": "stack_panel", "extend": { "name": "data_item_title_and_edit", "namespace": "jigsaw_editor" } }, "scroll_panel_content/buffer_1": { "file": "ui/jigsaw_editor_screen.json", "type": "panel", "extend": { "name": "vertical_buffer", "namespace": "jigsaw_editor" } }, "scroll_panel_content/name_title_and_edit": { "file": "ui/jigsaw_editor_screen.json", "type": "stack_panel", "extend": { "name": "data_item_title_and_edit", "namespace": "jigsaw_editor" } }, "scroll_panel_content/buffer_2": { "file": "ui/jigsaw_editor_screen.json", "type": "panel", "extend": { "name": "vertical_buffer", "namespace": "jigsaw_editor" } }, "scroll_panel_content/target_title_and_edit": { "file": "ui/jigsaw_editor_screen.json", "type": "stack_panel", "extend": { "name": "data_item_title_and_edit", "namespace": "jigsaw_editor" } }, "scroll_panel_content/buffer_3": { "file": "ui/jigsaw_editor_screen.json", "type": "panel", "extend": { "name": "vertical_buffer", "namespace": "jigsaw_editor" } }, "scroll_panel_content/final_block_title_and_edit": { "file": "ui/jigsaw_editor_screen.json", "type": "stack_panel", "extend": { "name": "data_item_title_and_edit", "namespace": "jigsaw_editor" } }, "scroll_panel_content/buffer_4": { "file": "ui/jigsaw_editor_screen.json", "type": "panel", "extend": { "name": "vertical_buffer", "namespace": "jigsaw_editor" } }, "scroll_panel_content/selection_and_placement_priority": { "file": "ui/jigsaw_editor_screen.json", "type": "stack_panel", "extend": { "name": "selection_and_placement_priority", "namespace": "jigsaw_editor" } }, "scroll_panel_content/buffer_5": { "file": "ui/jigsaw_editor_screen.json", "type": "panel", "extend": { "name": "vertical_buffer", "namespace": "jigsaw_editor" } }, "scroll_panel_content/joint_type_title_and_toggle": { "file": "ui/jigsaw_editor_screen.json", "type": "stack_panel", "extend": { "name": "data_item_title_and_toggle", "namespace": "jigsaw_editor" } }, "scroll_panel_content/buffer_6": { "file": "ui/jigsaw_editor_screen.json", "type": "panel", "extend": { "name": "vertical_buffer", "namespace": "jigsaw_editor" } }, "selection_and_placement_priority": { "file": "ui/jigsaw_editor_screen.json", "type": "stack_panel", "children": [ "selection_priority_title_and_edit", "buffer_1", "placement_priority_title_and_edit" ] }, "selection_and_placement_priority/selection_priority_title_and_edit": { "file": "ui/jigsaw_editor_screen.json", "type": "stack_panel", "extend": { "name": "data_item_title_and_edit_fill", "namespace": "jigsaw_editor" } }, "selection_and_placement_priority/buffer_1": { "file": "ui/jigsaw_editor_screen.json", "type": "panel", "extend": { "name": "horizontal_buffer", "namespace": "jigsaw_editor" } }, "selection_and_placement_priority/placement_priority_title_and_edit": { "file": "ui/jigsaw_editor_screen.json", "type": "stack_panel", "extend": { "name": "data_item_title_and_edit_fill", "namespace": "jigsaw_editor" } }, "button_panel_wrapper": { "file": "ui/jigsaw_editor_screen.json", "type": "image", "children": [ "exit_buttons" ] }, "button_panel_wrapper/exit_buttons": { "file": "ui/jigsaw_editor_screen.json", "type": "stack_panel", "extend": { "name": "exit_buttons", "namespace": "jigsaw_editor" } }, "jigsaw_editor_panel": { "file": "ui/jigsaw_editor_screen.json", "type": "stack_panel", "children": [ "scrolling_panel", "button_wrapper" ] }, "jigsaw_editor_panel/scrolling_panel": { "file": "ui/jigsaw_editor_screen.json", "type": "image", "extend": { "name": "scrolling_panel_wrapper", "namespace": "jigsaw_editor" } }, "jigsaw_editor_panel/button_wrapper": { "file": "ui/jigsaw_editor_screen.json", "type": "panel", "children": [ "buttons" ] }, "jigsaw_editor_panel/button_wrapper/buttons": { "file": "ui/jigsaw_editor_screen.json", "type": "image", "extend": { "name": "button_panel_wrapper", "namespace": "jigsaw_editor" } }, "jigsaw_editor_content": { "file": "ui/jigsaw_editor_screen.json", "type": "panel", "children": [ "background_panel", "title", "jigsaw_editor_panel" ] }, "jigsaw_editor_content/background_panel": { "file": "ui/jigsaw_editor_screen.json", "type": "stack_panel", "extend": { "name": "fullscreen_header", "namespace": "common" } }, "jigsaw_editor_content/title": { "file": "ui/jigsaw_editor_screen.json", "type": "label", "extend": { "name": "common_text_label", "namespace": "jigsaw_editor" } }, "jigsaw_editor_content/jigsaw_editor_panel": { "file": "ui/jigsaw_editor_screen.json", "type": "stack_panel", "extend": { "name": "jigsaw_editor_panel", "namespace": "jigsaw_editor" } }, "jigsaw_editor_screen": { "file": "ui/jigsaw_editor_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } } }, "late_join": { "animation_panel": { "file": "ui/late_join_pregame_screen.json", "type": "panel", "children": [ "stacked_column" ] }, "animation_panel/stacked_column": { "file": "ui/late_join_pregame_screen.json", "type": "stack_panel", "children": [ "waiting_animating_text" ] }, "animation_panel/stacked_column/waiting_animating_text": { "file": "ui/late_join_pregame_screen.json", "type": "label" }, "gamepad_helpers": { "file": "ui/late_join_pregame_screen.json", "type": "stack_panel", "children": [ "gamepad_helper_b_and_padding" ] }, "gamepad_helpers/gamepad_helper_b_and_padding": { "file": "ui/late_join_pregame_screen.json", "type": "panel", "children": [ "gamepad_helper_b" ] }, "gamepad_helpers/gamepad_helper_b_and_padding/gamepad_helper_b": { "file": "ui/late_join_pregame_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_b", "namespace": "common" } }, "late_join_pregame_screen": { "file": "ui/late_join_pregame_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "late_join_screen_content": { "file": "ui/late_join_pregame_screen.json", "type": "panel", "children": [ "animation_panel", "gamepad_helpers" ] }, "late_join_screen_content/animation_panel": { "file": "ui/late_join_pregame_screen.json", "type": "panel", "extend": { "name": "animation_panel", "namespace": "late_join" } }, "late_join_screen_content/gamepad_helpers": { "file": "ui/late_join_pregame_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helpers", "namespace": "late_join" } } }, "library_modal": { "modal_button": { "file": "ui/library_modal_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "modal_text_content": { "file": "ui/library_modal_screen.json", "type": "label" }, "modal_ok": { "file": "ui/library_modal_screen.json", "type": "button", "extend": { "name": "modal_button", "namespace": "library_modal" } }, "modal_cancel": { "file": "ui/library_modal_screen.json", "type": "button", "extend": { "name": "modal_button", "namespace": "library_modal" } }, "in_game_prompt": { "file": "ui/library_modal_screen.json", "type": "panel", "extend": { "name": "main_panel_two_buttons", "namespace": "common_dialogs" } }, "fetch_error": { "file": "ui/library_modal_screen.json", "type": "panel", "extend": { "name": "main_panel_one_button", "namespace": "common_dialogs" } }, "content": { "file": "ui/library_modal_screen.json", "type": "panel", "children": [ "fetch", "ingame" ] }, "content/fetch": { "file": "ui/library_modal_screen.json", "type": "panel", "extend": { "name": "fetch_error", "namespace": "library_modal" } }, "content/ingame": { "file": "ui/library_modal_screen.json", "type": "panel", "extend": { "name": "in_game_prompt", "namespace": "library_modal" } }, "content_wrapper": { "file": "ui/library_modal_screen.json", "type": "input_panel", "children": [ "content" ] }, "content_wrapper/content": { "file": "ui/library_modal_screen.json", "type": "panel", "extend": { "name": "content", "namespace": "library_modal" } }, "background": { "file": "ui/library_modal_screen.json", "type": "image" }, "library_modal_screen": { "file": "ui/library_modal_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "text_panel": { "file": "ui/library_modal_screen.json", "type": "stack_panel" }, "edu_icon": { "file": "ui/library_modal_screen.json", "type": "image" }, "continue_button": { "file": "ui/library_modal_screen.json", "type": "button", "extend": { "name": "modal_button", "namespace": "library_modal" } }, "paragraph": { "file": "ui/library_modal_screen.json", "type": "label" }, "welcome_text_panel": { "file": "ui/library_modal_screen.json", "type": "stack_panel", "extend": { "name": "text_panel", "namespace": "library_modal" }, "children": [ "padding_1", "paragraph_1_wrapper", "padding_2", "paragraph_two", "padding_3", "paragraph_three" ] }, "welcome_text_panel/padding_1": { "file": "ui/library_modal_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "welcome_text_panel/paragraph_1_wrapper": { "file": "ui/library_modal_screen.json", "type": "stack_panel", "children": [ "edu_icon", "stack_buffer1", "paragraph_1_panel" ] }, "welcome_text_panel/paragraph_1_wrapper/edu_icon": { "file": "ui/library_modal_screen.json", "type": "image", "extend": { "name": "edu_icon", "namespace": "library_modal" } }, "welcome_text_panel/paragraph_1_wrapper/stack_buffer1": { "file": "ui/library_modal_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "welcome_text_panel/paragraph_1_wrapper/paragraph_1_panel": { "file": "ui/library_modal_screen.json", "type": "panel", "children": [ "paragraph_1" ] }, "welcome_text_panel/paragraph_1_wrapper/paragraph_1_panel/paragraph_1": { "file": "ui/library_modal_screen.json", "type": "label", "extend": { "name": "paragraph", "namespace": "library_modal" } }, "welcome_text_panel/padding_2": { "file": "ui/library_modal_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "welcome_text_panel/paragraph_two": { "file": "ui/library_modal_screen.json", "type": "label", "extend": { "name": "paragraph", "namespace": "library_modal" } }, "welcome_text_panel/padding_3": { "file": "ui/library_modal_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "welcome_text_panel/paragraph_three": { "file": "ui/library_modal_screen.json", "type": "label", "extend": { "name": "paragraph", "namespace": "library_modal" } }, "welcome_scrolling_panel": { "file": "ui/library_modal_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "welcome_panel_content": { "file": "ui/library_modal_screen.json", "type": "panel", "children": [ "background_panel", "welcome_scrolling_panel", "continue_button" ] }, "welcome_panel_content/background_panel": { "file": "ui/library_modal_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "welcome_panel_content/welcome_scrolling_panel": { "file": "ui/library_modal_screen.json", "type": "panel", "extend": { "name": "welcome_scrolling_panel", "namespace": "library_modal" } }, "welcome_panel_content/continue_button": { "file": "ui/library_modal_screen.json", "type": "button", "extend": { "name": "continue_button", "namespace": "library_modal" } }, "welcome_panel": { "file": "ui/library_modal_screen.json", "type": "input_panel", "extend": { "name": "input_panel", "namespace": "common" }, "children": [ "welcome" ] }, "welcome_panel/welcome": { "file": "ui/library_modal_screen.json", "type": "panel", "extend": { "name": "welcome_panel_content", "namespace": "library_modal" } } }, "local_world_picker": { "local_world_picker_screen": { "file": "ui/local_world_picker_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "local_world_picker_content": { "file": "ui/local_world_picker_screen.json", "type": "panel", "children": [ "background", "panel_label", "content" ] }, "local_world_picker_content/background": { "file": "ui/local_world_picker_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "local_world_picker_content/panel_label": { "file": "ui/local_world_picker_screen.json", "type": "label" }, "local_world_picker_content/content": { "file": "ui/local_world_picker_screen.json", "type": "input_panel", "extend": { "name": "worlds_scroll_content", "namespace": "play" } } }, "loom": { "loom_label": { "file": "ui/loom_screen.json", "type": "label" }, "arrow_icon": { "file": "ui/loom_screen.json", "type": "image" }, "pattern_cell_image": { "file": "ui/loom_screen.json", "type": "image" }, "container_cell_image": { "file": "ui/loom_screen.json", "type": "image" }, "banner_outline": { "file": "ui/loom_screen.json", "type": "image" }, "item_empty_image": { "file": "ui/loom_screen.json", "type": "image" }, "banner_empty_image": { "file": "ui/loom_screen.json", "type": "image", "extend": { "name": "item_empty_image", "namespace": "loom" } }, "dye_empty_image": { "file": "ui/loom_screen.json", "type": "image", "extend": { "name": "item_empty_image", "namespace": "loom" } }, "pattern_item_empty_image": { "file": "ui/loom_screen.json", "type": "image", "extend": { "name": "item_empty_image", "namespace": "loom" } }, "toolbar_background": { "file": "ui/loom_screen.json", "type": "image" }, "highlight_slot_panel": { "file": "ui/loom_screen.json", "type": "panel", "children": [ "highlight", "white_border" ] }, "highlight_slot_panel/highlight": { "file": "ui/loom_screen.json", "type": "image", "extend": { "name": "highlight_slot", "namespace": "common" } }, "highlight_slot_panel/white_border": { "file": "ui/loom_screen.json", "type": "image", "extend": { "name": "white_border_slot", "namespace": "common" } }, "pattern_slot_button": { "file": "ui/loom_screen.json", "type": "button", "children": [ "hover" ] }, "pattern_slot_button/hover": { "file": "ui/loom_screen.json", "type": "unknown" }, "banner_pattern": { "file": "ui/loom_screen.json", "type": "custom" }, "pattern_button": { "file": "ui/loom_screen.json", "type": "input_panel", "children": [ "banner_pattern", "item_button_ref" ] }, "pattern_button/banner_pattern": { "file": "ui/loom_screen.json", "type": "unknown" }, "pattern_button/item_button_ref": { "file": "ui/loom_screen.json", "type": "unknown" }, "scroll_grid": { "file": "ui/loom_screen.json", "type": "grid" }, "scroll_grid_panel": { "file": "ui/loom_screen.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "grid" ] }, "scroll_grid_panel/grid": { "file": "ui/loom_screen.json", "type": "grid", "extend": { "name": "scroll_grid", "namespace": "loom" } }, "scroll_panel": { "file": "ui/loom_screen.json", "type": "panel", "extend": { "name": "container_scroll_panel", "namespace": "common" } }, "pattern_book_panel": { "file": "ui/loom_screen.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "bg", "scroll_panel" ] }, "pattern_book_panel/bg": { "file": "ui/loom_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "pattern_book_panel/scroll_panel": { "file": "ui/loom_screen.json", "type": "panel", "extend": { "name": "scroll_panel", "namespace": "loom" } }, "result_slot_button": { "file": "ui/loom_screen.json", "type": "button", "extend": { "name": "no_coalesce_container_slot_button", "namespace": "common" } }, "input_item_slot": { "file": "ui/loom_screen.json", "type": "input_panel", "extend": { "name": "container_item", "namespace": "common" } }, "dye_item_slot": { "file": "ui/loom_screen.json", "type": "input_panel", "extend": { "name": "container_item", "namespace": "common" } }, "material_item_slot": { "file": "ui/loom_screen.json", "type": "input_panel", "extend": { "name": "container_item", "namespace": "common" } }, "result_item_slot": { "file": "ui/loom_screen.json", "type": "input_panel", "extend": { "name": "container_item", "namespace": "common" } }, "input_slots_stack_panel": { "file": "ui/loom_screen.json", "type": "stack_panel", "children": [ "input_item_slot", "padding_1", "dye_item_slot", "padding_2", "material_item_slot" ] }, "input_slots_stack_panel/input_item_slot": { "file": "ui/loom_screen.json", "type": "input_panel", "extend": { "name": "input_item_slot", "namespace": "loom" } }, "input_slots_stack_panel/padding_1": { "file": "ui/loom_screen.json", "type": "panel" }, "input_slots_stack_panel/dye_item_slot": { "file": "ui/loom_screen.json", "type": "input_panel", "extend": { "name": "dye_item_slot", "namespace": "loom" } }, "input_slots_stack_panel/padding_2": { "file": "ui/loom_screen.json", "type": "panel" }, "input_slots_stack_panel/material_item_slot": { "file": "ui/loom_screen.json", "type": "input_panel", "extend": { "name": "material_item_slot", "namespace": "loom" } }, "result_banner_renderer": { "file": "ui/loom_screen.json", "type": "custom" }, "top_half_stack_panel": { "file": "ui/loom_screen.json", "type": "stack_panel", "children": [ "input_slots_holder", "padding_1", "arrow_holder", "padding_2", "result_item_slot_holder", "padding_3", "result_banner_outline" ] }, "top_half_stack_panel/input_slots_holder": { "file": "ui/loom_screen.json", "type": "panel", "children": [ "input_slots_stack_panel" ] }, "top_half_stack_panel/input_slots_holder/input_slots_stack_panel": { "file": "ui/loom_screen.json", "type": "stack_panel", "extend": { "name": "input_slots_stack_panel", "namespace": "loom" } }, "top_half_stack_panel/padding_1": { "file": "ui/loom_screen.json", "type": "panel" }, "top_half_stack_panel/arrow_holder": { "file": "ui/loom_screen.json", "type": "panel", "children": [ "arrow_icon" ] }, "top_half_stack_panel/arrow_holder/arrow_icon": { "file": "ui/loom_screen.json", "type": "image", "extend": { "name": "arrow_icon", "namespace": "loom" } }, "top_half_stack_panel/padding_2": { "file": "ui/loom_screen.json", "type": "panel" }, "top_half_stack_panel/result_item_slot_holder": { "file": "ui/loom_screen.json", "type": "panel", "children": [ "result_item_slot" ] }, "top_half_stack_panel/result_item_slot_holder/result_item_slot": { "file": "ui/loom_screen.json", "type": "input_panel", "extend": { "name": "result_item_slot", "namespace": "loom" } }, "top_half_stack_panel/padding_3": { "file": "ui/loom_screen.json", "type": "panel" }, "top_half_stack_panel/result_banner_outline": { "file": "ui/loom_screen.json", "type": "image", "extend": { "name": "banner_outline", "namespace": "loom" }, "children": [ "result_banner_renderer" ] }, "top_half_stack_panel/result_banner_outline/result_banner_renderer": { "file": "ui/loom_screen.json", "type": "custom", "extend": { "name": "result_banner_renderer", "namespace": "loom" } }, "top_half_panel": { "file": "ui/loom_screen.json", "type": "panel", "children": [ "top_half_stack_panel" ] }, "top_half_panel/top_half_stack_panel": { "file": "ui/loom_screen.json", "type": "stack_panel", "extend": { "name": "top_half_stack_panel", "namespace": "loom" } }, "right_panel": { "file": "ui/loom_screen.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "common_panel", "loom_screen_inventory" ] }, "right_panel/common_panel": { "file": "ui/loom_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "right_panel/loom_screen_inventory": { "file": "ui/loom_screen.json", "type": "panel", "children": [ "loom_label", "top_half_panel", "inventory_panel_bottom_half_with_label", "hotbar_grid" ] }, "right_panel/loom_screen_inventory/loom_label": { "file": "ui/loom_screen.json", "type": "label", "extend": { "name": "loom_label", "namespace": "loom" } }, "right_panel/loom_screen_inventory/top_half_panel": { "file": "ui/loom_screen.json", "type": "panel", "extend": { "name": "top_half_panel", "namespace": "loom" } }, "right_panel/loom_screen_inventory/inventory_panel_bottom_half_with_label": { "file": "ui/loom_screen.json", "type": "panel", "extend": { "name": "inventory_panel_bottom_half_with_label", "namespace": "common" } }, "right_panel/loom_screen_inventory/hotbar_grid": { "file": "ui/loom_screen.json", "type": "grid", "extend": { "name": "hotbar_grid_template", "namespace": "common" } }, "help_button": { "file": "ui/loom_screen.json", "type": "button", "extend": { "name": "help_button", "namespace": "common" } }, "toolbar_panel": { "file": "ui/loom_screen.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "toolbar_background" ] }, "toolbar_panel/toolbar_background": { "file": "ui/loom_screen.json", "type": "image", "extend": { "name": "toolbar_background", "namespace": "loom" }, "children": [ "toolbar_stack_panel" ] }, "toolbar_panel/toolbar_background/toolbar_stack_panel": { "file": "ui/loom_screen.json", "type": "stack_panel", "children": [ "padding_1", "help_button_panel", "close_button_panel", "padding_2" ] }, "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": { "file": "ui/loom_screen.json", "type": "panel" }, "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel": { "file": "ui/loom_screen.json", "type": "panel", "children": [ "help_button" ] }, "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button": { "file": "ui/loom_screen.json", "type": "button", "extend": { "name": "help_button", "namespace": "loom" } }, "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": { "file": "ui/loom_screen.json", "type": "panel", "children": [ "close_button" ] }, "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": { "file": "ui/loom_screen.json", "type": "button", "extend": { "name": "light_close_button", "namespace": "common" } }, "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": { "file": "ui/loom_screen.json", "type": "panel" }, "toolbar_anchor": { "file": "ui/loom_screen.json", "type": "panel", "children": [ "toolbar_panel" ] }, "toolbar_anchor/toolbar_panel": { "file": "ui/loom_screen.json", "type": "input_panel", "extend": { "name": "toolbar_panel", "namespace": "loom" } }, "center_fold": { "file": "ui/loom_screen.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "center_bg" ] }, "center_fold/center_bg": { "file": "ui/loom_screen.json", "type": "image" }, "screen_stack_panel": { "file": "ui/loom_screen.json", "type": "stack_panel", "children": [ "pattern_book_panel", "center_fold", "right_panel", "toolbar_anchor" ] }, "screen_stack_panel/pattern_book_panel": { "file": "ui/loom_screen.json", "type": "input_panel", "extend": { "name": "pattern_book_panel", "namespace": "loom" } }, "screen_stack_panel/center_fold": { "file": "ui/loom_screen.json", "type": "input_panel", "extend": { "name": "center_fold", "namespace": "loom" } }, "screen_stack_panel/right_panel": { "file": "ui/loom_screen.json", "type": "input_panel", "extend": { "name": "right_panel", "namespace": "loom" } }, "screen_stack_panel/toolbar_anchor": { "file": "ui/loom_screen.json", "type": "panel", "extend": { "name": "toolbar_anchor", "namespace": "loom" } }, "loom_panel": { "file": "ui/loom_screen.json", "type": "panel", "children": [ "screen_stack_panel", "container_gamepad_helpers", "selected_item_details_factory", "item_lock_notification_factory", "inventory_selected_icon_button", "inventory_take_progress_icon_button", "flying_item_renderer" ] }, "loom_panel/screen_stack_panel": { "file": "ui/loom_screen.json", "type": "stack_panel", "extend": { "name": "screen_stack_panel", "namespace": "loom" } }, "loom_panel/container_gamepad_helpers": { "file": "ui/loom_screen.json", "type": "stack_panel", "extend": { "name": "container_gamepad_helpers", "namespace": "common" } }, "loom_panel/selected_item_details_factory": { "file": "ui/loom_screen.json", "type": "factory", "extend": { "name": "selected_item_details_factory", "namespace": "common" } }, "loom_panel/item_lock_notification_factory": { "file": "ui/loom_screen.json", "type": "factory", "extend": { "name": "item_lock_notification_factory", "namespace": "common" } }, "loom_panel/inventory_selected_icon_button": { "file": "ui/loom_screen.json", "type": "button", "extend": { "name": "inventory_selected_icon_button", "namespace": "common" } }, "loom_panel/inventory_take_progress_icon_button": { "file": "ui/loom_screen.json", "type": "button", "extend": { "name": "inventory_take_progress_icon_button", "namespace": "common" } }, "loom_panel/flying_item_renderer": { "file": "ui/loom_screen.json", "type": "custom", "extend": { "name": "flying_item_renderer", "namespace": "common" } }, "loom_screen": { "file": "ui/loom_screen.json", "type": "screen", "extend": { "name": "inventory_screen_common", "namespace": "common" } } }, "loom_pocket": { "vertical_arrow_icon": { "file": "ui/loom_screen_pocket.json", "type": "image" }, "banner_empty_image": { "file": "ui/loom_screen_pocket.json", "type": "image", "extend": { "name": "banner_empty_image", "namespace": "loom" } }, "dye_empty_image": { "file": "ui/loom_screen_pocket.json", "type": "image", "extend": { "name": "dye_empty_image", "namespace": "loom" } }, "pattern_item_empty_image": { "file": "ui/loom_screen_pocket.json", "type": "image", "extend": { "name": "pattern_item_empty_image", "namespace": "loom" } }, "chest_item_renderer": { "file": "ui/loom_screen_pocket.json", "type": "custom" }, "banner_item_renderer": { "file": "ui/loom_screen_pocket.json", "type": "custom" }, "loom_item_renderer": { "file": "ui/loom_screen_pocket.json", "type": "custom" }, "input_item_slot": { "file": "ui/loom_screen_pocket.json", "type": "input_panel", "extend": { "name": "pocket_ui_container_item", "namespace": "common" } }, "dye_item_slot": { "file": "ui/loom_screen_pocket.json", "type": "input_panel", "extend": { "name": "pocket_ui_container_item", "namespace": "common" } }, "material_item_slot": { "file": "ui/loom_screen_pocket.json", "type": "input_panel", "extend": { "name": "pocket_ui_container_item", "namespace": "common" } }, "result_item_slot": { "file": "ui/loom_screen_pocket.json", "type": "input_panel", "extend": { "name": "pocket_ui_container_item", "namespace": "common" } }, "right_panel": { "file": "ui/loom_screen_pocket.json", "type": "stack_panel", "children": [ "content", "navigation_tabs_holder" ] }, "right_panel/content": { "file": "ui/loom_screen_pocket.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "bg", "loom_content_stack_panel" ] }, "right_panel/content/bg": { "file": "ui/loom_screen_pocket.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "right_panel/content/loom_content_stack_panel": { "file": "ui/loom_screen_pocket.json", "type": "stack_panel", "extend": { "name": "loom_content_stack_panel", "namespace": "loom_pocket" } }, "right_panel/navigation_tabs_holder": { "file": "ui/loom_screen_pocket.json", "type": "panel", "children": [ "right_navigation_tabs" ] }, "right_panel/navigation_tabs_holder/right_navigation_tabs": { "file": "ui/loom_screen_pocket.json", "type": "stack_panel", "extend": { "name": "right_navigation_tabs", "namespace": "loom_pocket" } }, "right_tab_loom": { "file": "ui/loom_screen_pocket.json", "type": "panel", "extend": { "name": "pocket_tab_right", "namespace": "common_tabs" } }, "right_navigation_tabs": { "file": "ui/loom_screen_pocket.json", "type": "stack_panel", "children": [ "pocket_tab_close_and_help_button", "fill", "right_tab_loom" ] }, "right_navigation_tabs/pocket_tab_close_and_help_button": { "file": "ui/loom_screen_pocket.json", "type": "image", "extend": { "name": "pocket_tab_close_and_help_button", "namespace": "common_tabs" } }, "right_navigation_tabs/fill": { "file": "ui/loom_screen_pocket.json", "type": "panel" }, "right_navigation_tabs/right_tab_loom": { "file": "ui/loom_screen_pocket.json", "type": "panel", "extend": { "name": "right_tab_loom", "namespace": "loom_pocket" } }, "input_slots_stack_panel": { "file": "ui/loom_screen_pocket.json", "type": "stack_panel", "children": [ "input_item_slot", "padding_1", "dye_item_slot", "padding_2", "material_item_slot" ] }, "input_slots_stack_panel/input_item_slot": { "file": "ui/loom_screen_pocket.json", "type": "input_panel", "extend": { "name": "input_item_slot", "namespace": "loom_pocket" } }, "input_slots_stack_panel/padding_1": { "file": "ui/loom_screen_pocket.json", "type": "panel" }, "input_slots_stack_panel/dye_item_slot": { "file": "ui/loom_screen_pocket.json", "type": "input_panel", "extend": { "name": "dye_item_slot", "namespace": "loom_pocket" } }, "input_slots_stack_panel/padding_2": { "file": "ui/loom_screen_pocket.json", "type": "panel" }, "input_slots_stack_panel/material_item_slot": { "file": "ui/loom_screen_pocket.json", "type": "input_panel", "extend": { "name": "material_item_slot", "namespace": "loom_pocket" } }, "result_banner_outline": { "file": "ui/loom_screen_pocket.json", "type": "image", "extend": { "name": "banner_outline", "namespace": "loom" }, "children": [ "result_banner_renderer" ] }, "result_banner_outline/result_banner_renderer": { "file": "ui/loom_screen_pocket.json", "type": "custom", "extend": { "name": "result_banner_renderer", "namespace": "loom" } }, "loom_content_stack_panel": { "file": "ui/loom_screen_pocket.json", "type": "stack_panel", "children": [ "label_holder", "padding_1", "input_slots_holder", "padding_2", "banner_pattern_holder", "padding_3", "arrow_holder", "padding_4", "result_item_slot_holder", "padding_5" ] }, "loom_content_stack_panel/label_holder": { "file": "ui/loom_screen_pocket.json", "type": "panel", "children": [ "loom_label" ] }, "loom_content_stack_panel/label_holder/loom_label": { "file": "ui/loom_screen_pocket.json", "type": "label", "extend": { "name": "loom_label", "namespace": "loom" } }, "loom_content_stack_panel/padding_1": { "file": "ui/loom_screen_pocket.json", "type": "panel" }, "loom_content_stack_panel/input_slots_holder": { "file": "ui/loom_screen_pocket.json", "type": "panel", "children": [ "input_slots_stack_panel" ] }, "loom_content_stack_panel/input_slots_holder/input_slots_stack_panel": { "file": "ui/loom_screen_pocket.json", "type": "stack_panel", "extend": { "name": "input_slots_stack_panel", "namespace": "loom_pocket" } }, "loom_content_stack_panel/padding_2": { "file": "ui/loom_screen_pocket.json", "type": "panel" }, "loom_content_stack_panel/banner_pattern_holder": { "file": "ui/loom_screen_pocket.json", "type": "panel", "children": [ "result_banner_outline" ] }, "loom_content_stack_panel/banner_pattern_holder/result_banner_outline": { "file": "ui/loom_screen_pocket.json", "type": "image", "extend": { "name": "result_banner_outline", "namespace": "loom_pocket" } }, "loom_content_stack_panel/padding_3": { "file": "ui/loom_screen_pocket.json", "type": "panel" }, "loom_content_stack_panel/arrow_holder": { "file": "ui/loom_screen_pocket.json", "type": "panel", "children": [ "vertical_arrow_icon" ] }, "loom_content_stack_panel/arrow_holder/vertical_arrow_icon": { "file": "ui/loom_screen_pocket.json", "type": "image", "extend": { "name": "vertical_arrow_icon", "namespace": "loom_pocket" } }, "loom_content_stack_panel/padding_4": { "file": "ui/loom_screen_pocket.json", "type": "panel" }, "loom_content_stack_panel/result_item_slot_holder": { "file": "ui/loom_screen_pocket.json", "type": "panel", "children": [ "result_item_slot" ] }, "loom_content_stack_panel/result_item_slot_holder/result_item_slot": { "file": "ui/loom_screen_pocket.json", "type": "input_panel", "extend": { "name": "result_item_slot", "namespace": "loom_pocket" } }, "loom_content_stack_panel/padding_5": { "file": "ui/loom_screen_pocket.json", "type": "panel" }, "inventory_scroll_panel": { "file": "ui/loom_screen_pocket.json", "type": "panel", "extend": { "name": "container_scroll_panel", "namespace": "common" } }, "pattern_button": { "file": "ui/loom_screen_pocket.json", "type": "input_panel", "extend": { "name": "pattern_button", "namespace": "loom" } }, "banner_pattern": { "file": "ui/loom_screen_pocket.json", "type": "custom", "extend": { "name": "banner_pattern", "namespace": "loom" } }, "pattern_scroll_panel": { "file": "ui/loom_screen_pocket.json", "type": "panel", "extend": { "name": "scroll_panel", "namespace": "loom" } }, "left_panel": { "file": "ui/loom_screen_pocket.json", "type": "stack_panel", "children": [ "gamepad_helpers_and_tabs_holder", "content" ] }, "left_panel/gamepad_helpers_and_tabs_holder": { "file": "ui/loom_screen_pocket.json", "type": "panel", "children": [ "tabs_left_gamepad_helpers", "navigation_tabs_holder" ] }, "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": { "file": "ui/loom_screen_pocket.json", "type": "panel", "extend": { "name": "tabs_left_gamepad_helpers", "namespace": "common" } }, "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": { "file": "ui/loom_screen_pocket.json", "type": "panel", "children": [ "left_navigation_tabs" ] }, "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": { "file": "ui/loom_screen_pocket.json", "type": "stack_panel", "extend": { "name": "left_navigation_tabs", "namespace": "loom_pocket" } }, "left_panel/content": { "file": "ui/loom_screen_pocket.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "bg", "inventory_scroll_panel", "pattern_scroll_panel" ] }, "left_panel/content/bg": { "file": "ui/loom_screen_pocket.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "left_panel/content/inventory_scroll_panel": { "file": "ui/loom_screen_pocket.json", "type": "panel", "extend": { "name": "inventory_scroll_panel", "namespace": "loom_pocket" } }, "left_panel/content/pattern_scroll_panel": { "file": "ui/loom_screen_pocket.json", "type": "panel", "extend": { "name": "pattern_scroll_panel", "namespace": "loom_pocket" } }, "left_tab_patterns": { "file": "ui/loom_screen_pocket.json", "type": "panel", "extend": { "name": "pocket_tab_left", "namespace": "common_tabs" } }, "left_tab_inventory": { "file": "ui/loom_screen_pocket.json", "type": "panel", "extend": { "name": "pocket_tab_left", "namespace": "common_tabs" } }, "left_navigation_tabs": { "file": "ui/loom_screen_pocket.json", "type": "stack_panel", "children": [ "left_tab_patterns", "padding", "left_tab_inventory" ] }, "left_navigation_tabs/left_tab_patterns": { "file": "ui/loom_screen_pocket.json", "type": "panel", "extend": { "name": "left_tab_patterns", "namespace": "loom_pocket" } }, "left_navigation_tabs/padding": { "file": "ui/loom_screen_pocket.json", "type": "panel" }, "left_navigation_tabs/left_tab_inventory": { "file": "ui/loom_screen_pocket.json", "type": "panel", "extend": { "name": "left_tab_inventory", "namespace": "loom_pocket" } }, "pocket_hotbar_and_content_panels": { "file": "ui/loom_screen_pocket.json", "type": "stack_panel", "extend": { "name": "pocket_hotbar_and_content_panels", "namespace": "common" } }, "loom_panel": { "file": "ui/loom_screen_pocket.json", "type": "panel", "children": [ "pocket_hotbar_and_content_panels", "container_gamepad_helpers", "selected_item_details_factory", "item_lock_notification_factory", "inventory_selected_icon_button", "inventory_take_progress_icon_button", "flying_item_renderer" ] }, "loom_panel/pocket_hotbar_and_content_panels": { "file": "ui/loom_screen_pocket.json", "type": "stack_panel", "extend": { "name": "pocket_hotbar_and_content_panels", "namespace": "loom_pocket" } }, "loom_panel/container_gamepad_helpers": { "file": "ui/loom_screen_pocket.json", "type": "stack_panel", "extend": { "name": "container_gamepad_helpers", "namespace": "common" } }, "loom_panel/selected_item_details_factory": { "file": "ui/loom_screen_pocket.json", "type": "factory", "extend": { "name": "selected_item_details_factory", "namespace": "common" } }, "loom_panel/item_lock_notification_factory": { "file": "ui/loom_screen_pocket.json", "type": "factory", "extend": { "name": "item_lock_notification_factory", "namespace": "common" } }, "loom_panel/inventory_selected_icon_button": { "file": "ui/loom_screen_pocket.json", "type": "button", "extend": { "name": "inventory_selected_icon_button", "namespace": "common" } }, "loom_panel/inventory_take_progress_icon_button": { "file": "ui/loom_screen_pocket.json", "type": "button", "extend": { "name": "inventory_take_progress_icon_button", "namespace": "common" } }, "loom_panel/flying_item_renderer": { "file": "ui/loom_screen_pocket.json", "type": "custom", "extend": { "name": "flying_item_renderer", "namespace": "common" } } }, "manage_feed": { "manage_feed_item_scrolling_panel": { "file": "ui/manage_feed_screen.json", "type": "panel", "children": [ "manage_feed_item_scrolling_panel_content" ] }, "manage_feed_item_scrolling_panel/manage_feed_item_scrolling_panel_content": { "file": "ui/manage_feed_screen.json", "type": "panel", "extend": { "name": "manage_feed_item_scrolling_panel_content", "namespace": "manage_feed" } }, "manage_feed_item_scrolling_panel_content": { "file": "ui/manage_feed_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "grid_panel": { "file": "ui/manage_feed_screen.json", "type": "stack_panel", "children": [ "top_spacing_gap", "manage_feed_loading_grid_item", "manage_feed_grid", "spacing_gap2", "pagination_panel" ] }, "grid_panel/top_spacing_gap": { "file": "ui/manage_feed_screen.json", "type": "panel", "extend": { "name": "spacing_gap", "namespace": "feed_common" } }, "grid_panel/manage_feed_loading_grid_item": { "file": "ui/manage_feed_screen.json", "type": "panel", "extend": { "name": "manage_feed_loading_grid_item", "namespace": "manage_feed" } }, "grid_panel/manage_feed_grid": { "file": "ui/manage_feed_screen.json", "type": "grid", "extend": { "name": "manage_feed_grid", "namespace": "manage_feed" } }, "grid_panel/spacing_gap2": { "file": "ui/manage_feed_screen.json", "type": "panel", "extend": { "name": "spacing_gap", "namespace": "feed_common" } }, "grid_panel/pagination_panel": { "file": "ui/manage_feed_screen.json", "type": "panel", "extend": { "name": "pagination_panel", "namespace": "manage_feed" } }, "pagination_panel": { "file": "ui/manage_feed_screen.json", "type": "panel", "extend": { "name": "pagination_panel", "namespace": "feed_common" } }, "manage_feed_grid": { "file": "ui/manage_feed_screen.json", "type": "grid" }, "manage_feed_grid_item": { "file": "ui/manage_feed_screen.json", "type": "panel", "children": [ "image_panel_instance", "manage_feed_buttons_panel", "manage_feed_text_instance", "feed_timesince_instance", "nr_of_reports", "manage_player_pic_panel", "manage_feed_gamertag_instance" ] }, "manage_feed_grid_item/image_panel_instance": { "file": "ui/manage_feed_screen.json", "type": "panel", "extend": { "name": "image_panel", "namespace": "manage_feed" } }, "manage_feed_grid_item/manage_feed_buttons_panel": { "file": "ui/manage_feed_screen.json", "type": "stack_panel", "extend": { "name": "manage_feed_buttons_panel", "namespace": "manage_feed" } }, "manage_feed_grid_item/manage_feed_text_instance": { "file": "ui/manage_feed_screen.json", "type": "label", "extend": { "name": "item_label", "namespace": "feed_common" } }, "manage_feed_grid_item/feed_timesince_instance": { "file": "ui/manage_feed_screen.json", "type": "label", "extend": { "name": "item_label", "namespace": "feed_common" } }, "manage_feed_grid_item/nr_of_reports": { "file": "ui/manage_feed_screen.json", "type": "label", "extend": { "name": "item_label", "namespace": "feed_common" } }, "manage_feed_grid_item/manage_player_pic_panel": { "file": "ui/manage_feed_screen.json", "type": "panel", "extend": { "name": "manage_player_pic_panel", "namespace": "manage_feed" } }, "manage_feed_grid_item/manage_feed_gamertag_instance": { "file": "ui/manage_feed_screen.json", "type": "label", "extend": { "name": "item_label", "namespace": "feed_common" } }, "manage_feed_buttons_panel": { "file": "ui/manage_feed_screen.json", "type": "stack_panel", "children": [ "ignore_button", "delete_button" ] }, "manage_feed_buttons_panel/ignore_button": { "file": "ui/manage_feed_screen.json", "type": "button", "extend": { "name": "ignore_button", "namespace": "manage_feed" } }, "manage_feed_buttons_panel/delete_button": { "file": "ui/manage_feed_screen.json", "type": "button", "extend": { "name": "delete_button", "namespace": "manage_feed" } }, "manage_feed_loading_grid_item": { "file": "ui/manage_feed_screen.json", "type": "panel", "children": [ "loading_image_panel" ] }, "manage_feed_loading_grid_item/loading_image_panel": { "file": "ui/manage_feed_screen.json", "type": "panel", "extend": { "name": "loading_image_panel", "namespace": "manage_feed" } }, "feed_buttons_panel_loading": { "file": "ui/manage_feed_screen.json", "type": "stack_panel", "children": [ "like_button_loading", "spacing_gap1", "comment_button_loading", "spacing_gap2", "options_button_loading" ] }, "feed_buttons_panel_loading/like_button_loading": { "file": "ui/manage_feed_screen.json", "type": "unknown", "extend": { "name": "like_button_loading", "namespace": "feed" } }, "feed_buttons_panel_loading/spacing_gap1": { "file": "ui/manage_feed_screen.json", "type": "panel" }, "feed_buttons_panel_loading/comment_button_loading": { "file": "ui/manage_feed_screen.json", "type": "unknown", "extend": { "name": "comment_button_loading", "namespace": "feed" } }, "feed_buttons_panel_loading/spacing_gap2": { "file": "ui/manage_feed_screen.json", "type": "panel" }, "feed_buttons_panel_loading/options_button_loading": { "file": "ui/manage_feed_screen.json", "type": "unknown", "extend": { "name": "options_button_loading", "namespace": "feed" } }, "like_button_loading": { "file": "ui/manage_feed_screen.json", "type": "image" }, "comment_button_loading": { "file": "ui/manage_feed_screen.json", "type": "image" }, "options_button_loading": { "file": "ui/manage_feed_screen.json", "type": "image" }, "player_pic_panel_loading": { "file": "ui/manage_feed_screen.json", "type": "panel", "children": [ "player_gamer_pic_loading" ] }, "player_pic_panel_loading/player_gamer_pic_loading": { "file": "ui/manage_feed_screen.json", "type": "unknown", "extend": { "name": "player_gamer_pic_loading", "namespace": "feed" } }, "player_gamer_pic_loading": { "file": "ui/manage_feed_screen.json", "type": "image" }, "loading_image_panel": { "file": "ui/manage_feed_screen.json", "type": "panel", "children": [ "progress_loading_bars", "manage_feed_image_loading", "no_feed_item_content" ] }, "loading_image_panel/progress_loading_bars": { "file": "ui/manage_feed_screen.json", "type": "image", "extend": { "name": "progress_loading_bars", "namespace": "feed_common" } }, "loading_image_panel/manage_feed_image_loading": { "file": "ui/manage_feed_screen.json", "type": "image", "extend": { "name": "manage_feed_image_loading", "namespace": "manage_feed" } }, "loading_image_panel/no_feed_item_content": { "file": "ui/manage_feed_screen.json", "type": "label", "extend": { "name": "no_feed_item_content", "namespace": "feed_common" } }, "manage_feed_image_loading": { "file": "ui/manage_feed_screen.json", "type": "image" }, "ignore_button": { "file": "ui/manage_feed_screen.json", "type": "button", "extend": { "name": "transparent_content_button", "namespace": "common_buttons" } }, "ignore_content_panel": { "file": "ui/manage_feed_screen.json", "type": "panel", "children": [ "ignore_label" ] }, "ignore_content_panel/ignore_label": { "file": "ui/manage_feed_screen.json", "type": "label", "extend": { "name": "smooth_label", "namespace": "feed_common" } }, "delete_button": { "file": "ui/manage_feed_screen.json", "type": "button", "extend": { "name": "transparent_content_button", "namespace": "common_buttons" } }, "delete_content_panel": { "file": "ui/manage_feed_screen.json", "type": "panel", "children": [ "delete_label" ] }, "delete_content_panel/delete_label": { "file": "ui/manage_feed_screen.json", "type": "label", "extend": { "name": "smooth_label", "namespace": "feed_common" } }, "manage_feed_image": { "file": "ui/manage_feed_screen.json", "type": "image" }, "manage_feed_image_content_panel": { "file": "ui/manage_feed_screen.json", "type": "panel", "children": [ "manage_feed_image", "textpost_content" ] }, "manage_feed_image_content_panel/manage_feed_image": { "file": "ui/manage_feed_screen.json", "type": "image", "extend": { "name": "manage_feed_image", "namespace": "manage_feed" } }, "manage_feed_image_content_panel/textpost_content": { "file": "ui/manage_feed_screen.json", "type": "label", "extend": { "name": "textpost_content", "namespace": "manage_feed" } }, "textpost_content": { "file": "ui/manage_feed_screen.json", "type": "label" }, "image_panel": { "file": "ui/manage_feed_screen.json", "type": "panel", "children": [ "manage_feed_image_content_panel" ] }, "image_panel/manage_feed_image_content_panel": { "file": "ui/manage_feed_screen.json", "type": "panel", "extend": { "name": "manage_feed_image_content_panel", "namespace": "manage_feed" } }, "manage_player_pic_panel": { "file": "ui/manage_feed_screen.json", "type": "panel", "children": [ "manage_player_gamer_pic" ] }, "manage_player_pic_panel/manage_player_gamer_pic": { "file": "ui/manage_feed_screen.json", "type": "custom", "extend": { "name": "manage_player_gamer_pic", "namespace": "manage_feed" } }, "manage_player_gamer_pic": { "file": "ui/manage_feed_screen.json", "type": "custom" }, "content": { "file": "ui/manage_feed_screen.json", "type": "panel", "children": [ "top_bar_gradient", "gamepad_helpers", "return_button", "reported_items_label", "manage_feed_item_scrolling_panel_instance" ] }, "content/top_bar_gradient": { "file": "ui/manage_feed_screen.json", "type": "custom", "extend": { "name": "top_bar_gradient", "namespace": "feed_common" } }, "content/gamepad_helpers": { "file": "ui/manage_feed_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helpers", "namespace": "feed_common" } }, "content/return_button": { "file": "ui/manage_feed_screen.json", "type": "button", "extend": { "name": "return_button", "namespace": "feed_common" } }, "content/reported_items_label": { "file": "ui/manage_feed_screen.json", "type": "label", "extend": { "name": "title_label", "namespace": "feed_common" } }, "content/manage_feed_item_scrolling_panel_instance": { "file": "ui/manage_feed_screen.json", "type": "panel", "extend": { "name": "manage_feed_item_scrolling_panel", "namespace": "manage_feed" } }, "manage_feed_screen": { "file": "ui/manage_feed_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "manage_feed_screen_content": { "file": "ui/manage_feed_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" }, "children": [ "transparent_background", "container" ] }, "manage_feed_screen_content/transparent_background": { "file": "ui/manage_feed_screen.json", "type": "image", "extend": { "name": "transparent_background", "namespace": "feed_common" } }, "manage_feed_screen_content/container": { "file": "ui/manage_feed_screen.json", "type": "panel", "children": [ "content" ] }, "manage_feed_screen_content/container/content": { "file": "ui/manage_feed_screen.json", "type": "panel", "extend": { "name": "content", "namespace": "manage_feed" } } }, "manifest_validation": { "clipboard_icon": { "file": "ui/manifest_validation_screen.json", "type": "image" }, "clipboard_icon_wrapper": { "file": "ui/manifest_validation_screen.json", "type": "panel", "children": [ "icon" ] }, "clipboard_icon_wrapper/icon": { "file": "ui/manifest_validation_screen.json", "type": "image", "extend": { "name": "clipboard_icon", "namespace": "manifest_validation" } }, "trash_icon": { "file": "ui/manifest_validation_screen.json", "type": "image" }, "trash_icon_wrapper": { "file": "ui/manifest_validation_screen.json", "type": "panel", "children": [ "icon", "progress_loading_bars" ] }, "trash_icon_wrapper/icon": { "file": "ui/manifest_validation_screen.json", "type": "image", "extend": { "name": "trash_icon", "namespace": "manifest_validation" } }, "trash_icon_wrapper/progress_loading_bars": { "file": "ui/manifest_validation_screen.json", "type": "image", "extend": { "name": "progress_loading_bars", "namespace": "manifest_validation" } }, "refresh_icon": { "file": "ui/manifest_validation_screen.json", "type": "image" }, "refresh_icon_wrapper": { "file": "ui/manifest_validation_screen.json", "type": "panel", "children": [ "icon", "progress_loading_bars" ] }, "refresh_icon_wrapper/icon": { "file": "ui/manifest_validation_screen.json", "type": "image", "extend": { "name": "refresh_icon", "namespace": "manifest_validation" } }, "refresh_icon_wrapper/progress_loading_bars": { "file": "ui/manifest_validation_screen.json", "type": "image", "extend": { "name": "progress_loading_bars", "namespace": "manifest_validation" } }, "section_divider": { "file": "ui/manifest_validation_screen.json", "type": "panel", "children": [ "divider_image" ] }, "section_divider/divider_image": { "file": "ui/manifest_validation_screen.json", "type": "image" }, "text_label": { "file": "ui/manifest_validation_screen.json", "type": "label" }, "icon_image": { "file": "ui/manifest_validation_screen.json", "type": "image" }, "progress_loading_bars": { "file": "ui/manifest_validation_screen.json", "type": "image" }, "background": { "file": "ui/manifest_validation_screen.json", "type": "image" }, "black_background_fill": { "file": "ui/manifest_validation_screen.json", "type": "image", "extend": { "name": "black_image", "namespace": "resource_packs" } }, "error_pack_secondary_layout": { "file": "ui/manifest_validation_screen.json", "type": "panel", "children": [ "black" ] }, "error_pack_secondary_layout/black": { "file": "ui/manifest_validation_screen.json", "type": "image", "extend": { "name": "background", "namespace": "manifest_validation" }, "children": [ "stack_panel" ] }, "error_pack_secondary_layout/black/stack_panel": { "file": "ui/manifest_validation_screen.json", "type": "panel", "children": [ "stack_panel", "secondary_panel" ] }, "error_pack_secondary_layout/black/stack_panel/stack_panel": { "file": "ui/manifest_validation_screen.json", "type": "stack_panel", "children": [ "icon_background", "pack_info", "button_panel", "pad" ] }, "error_pack_secondary_layout/black/stack_panel/stack_panel/icon_background": { "file": "ui/manifest_validation_screen.json", "type": "image", "extend": { "name": "black_background_fill", "namespace": "manifest_validation" }, "children": [ "icon" ] }, "error_pack_secondary_layout/black/stack_panel/stack_panel/icon_background/icon": { "file": "ui/manifest_validation_screen.json", "type": "image", "extend": { "name": "icon_image", "namespace": "manifest_validation" } }, "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info": { "file": "ui/manifest_validation_screen.json", "type": "panel", "children": [ "top", "bottom" ] }, "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top": { "file": "ui/manifest_validation_screen.json", "type": "stack_panel", "children": [ "title", "padding", "pack_size" ] }, "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/title": { "file": "ui/manifest_validation_screen.json", "type": "label", "extend": { "name": "text_label", "namespace": "manifest_validation" } }, "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/padding": { "file": "ui/manifest_validation_screen.json", "type": "panel" }, "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/top/pack_size": { "file": "ui/manifest_validation_screen.json", "type": "label", "extend": { "name": "text_label", "namespace": "manifest_validation" } }, "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom": { "file": "ui/manifest_validation_screen.json", "type": "stack_panel", "children": [ "description", "padding" ] }, "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom/description": { "file": "ui/manifest_validation_screen.json", "type": "label", "extend": { "name": "text_label", "namespace": "manifest_validation" } }, "error_pack_secondary_layout/black/stack_panel/stack_panel/pack_info/bottom/padding": { "file": "ui/manifest_validation_screen.json", "type": "panel" }, "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel": { "file": "ui/manifest_validation_screen.json", "type": "stack_panel", "children": [ "top_pad", "refresh", "pad", "delete" ] }, "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/top_pad": { "file": "ui/manifest_validation_screen.json", "type": "panel" }, "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/refresh": { "file": "ui/manifest_validation_screen.json", "type": "panel", "children": [ "button" ] }, "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/refresh/button": { "file": "ui/manifest_validation_screen.json", "type": "button", "extend": { "name": "refresh_text_button", "namespace": "manifest_validation" } }, "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/pad": { "file": "ui/manifest_validation_screen.json", "type": "panel" }, "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/delete": { "file": "ui/manifest_validation_screen.json", "type": "panel", "children": [ "button" ] }, "error_pack_secondary_layout/black/stack_panel/stack_panel/button_panel/delete/button": { "file": "ui/manifest_validation_screen.json", "type": "button", "extend": { "name": "delete_text_button", "namespace": "manifest_validation" } }, "error_pack_secondary_layout/black/stack_panel/stack_panel/pad": { "file": "ui/manifest_validation_screen.json", "type": "panel" }, "error_pack_secondary_layout/black/stack_panel/secondary_panel": { "file": "ui/manifest_validation_screen.json", "type": "stack_panel", "children": [ "padding_0", "title_panel", "pad_0", "padding_1", "version_panel", "pad_1", "padding_2", "path_panel" ] }, "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_0": { "file": "ui/manifest_validation_screen.json", "type": "panel", "extend": { "name": "section_divider", "namespace": "manifest_validation" } }, "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel": { "file": "ui/manifest_validation_screen.json", "type": "stack_panel", "children": [ "title_text", "space", "offset" ] }, "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/title_text": { "file": "ui/manifest_validation_screen.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/space": { "file": "ui/manifest_validation_screen.json", "type": "panel" }, "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/offset": { "file": "ui/manifest_validation_screen.json", "type": "panel", "children": [ "title" ] }, "error_pack_secondary_layout/black/stack_panel/secondary_panel/title_panel/offset/title": { "file": "ui/manifest_validation_screen.json", "type": "label", "extend": { "name": "text_label", "namespace": "manifest_validation" } }, "error_pack_secondary_layout/black/stack_panel/secondary_panel/pad_0": { "file": "ui/manifest_validation_screen.json", "type": "panel" }, "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_1": { "file": "ui/manifest_validation_screen.json", "type": "panel", "extend": { "name": "section_divider", "namespace": "manifest_validation" } }, "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel": { "file": "ui/manifest_validation_screen.json", "type": "stack_panel", "children": [ "version_text", "space", "offset" ] }, "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/version_text": { "file": "ui/manifest_validation_screen.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/space": { "file": "ui/manifest_validation_screen.json", "type": "panel" }, "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/offset": { "file": "ui/manifest_validation_screen.json", "type": "panel", "children": [ "version" ] }, "error_pack_secondary_layout/black/stack_panel/secondary_panel/version_panel/offset/version": { "file": "ui/manifest_validation_screen.json", "type": "label", "extend": { "name": "text_label", "namespace": "manifest_validation" } }, "error_pack_secondary_layout/black/stack_panel/secondary_panel/pad_1": { "file": "ui/manifest_validation_screen.json", "type": "panel" }, "error_pack_secondary_layout/black/stack_panel/secondary_panel/padding_2": { "file": "ui/manifest_validation_screen.json", "type": "panel", "extend": { "name": "section_divider", "namespace": "manifest_validation" } }, "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel": { "file": "ui/manifest_validation_screen.json", "type": "stack_panel", "children": [ "path_text", "space", "offset" ] }, "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/path_text": { "file": "ui/manifest_validation_screen.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/space": { "file": "ui/manifest_validation_screen.json", "type": "panel" }, "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/offset": { "file": "ui/manifest_validation_screen.json", "type": "panel", "children": [ "description" ] }, "error_pack_secondary_layout/black/stack_panel/secondary_panel/path_panel/offset/description": { "file": "ui/manifest_validation_screen.json", "type": "label", "extend": { "name": "text_label", "namespace": "manifest_validation" } }, "error_pack_content_layout": { "file": "ui/manifest_validation_screen.json", "type": "panel", "children": [ "black" ] }, "error_pack_content_layout/black": { "file": "ui/manifest_validation_screen.json", "type": "image", "extend": { "name": "background", "namespace": "manifest_validation" }, "children": [ "error_panel" ] }, "error_pack_content_layout/black/error_panel": { "file": "ui/manifest_validation_screen.json", "type": "stack_panel", "children": [ "error_header_panel", "padding_0", "error_text_panel" ] }, "error_pack_content_layout/black/error_panel/error_header_panel": { "file": "ui/manifest_validation_screen.json", "type": "panel", "children": [ "error_type_panel", "button" ] }, "error_pack_content_layout/black/error_panel/error_header_panel/error_type_panel": { "file": "ui/manifest_validation_screen.json", "type": "label" }, "error_pack_content_layout/black/error_panel/error_header_panel/button": { "file": "ui/manifest_validation_screen.json", "type": "button", "extend": { "name": "clipboard_button", "namespace": "manifest_validation" } }, "error_pack_content_layout/black/error_panel/padding_0": { "file": "ui/manifest_validation_screen.json", "type": "panel", "extend": { "name": "section_divider", "namespace": "manifest_validation" } }, "error_pack_content_layout/black/error_panel/error_text_panel": { "file": "ui/manifest_validation_screen.json", "type": "stack_panel", "children": [ "error_text", "space", "offset" ] }, "error_pack_content_layout/black/error_panel/error_text_panel/error_text": { "file": "ui/manifest_validation_screen.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "error_pack_content_layout/black/error_panel/error_text_panel/space": { "file": "ui/manifest_validation_screen.json", "type": "panel" }, "error_pack_content_layout/black/error_panel/error_text_panel/offset": { "file": "ui/manifest_validation_screen.json", "type": "panel", "children": [ "error_label" ] }, "error_pack_content_layout/black/error_panel/error_text_panel/offset/error_label": { "file": "ui/manifest_validation_screen.json", "type": "label" }, "delete_button": { "file": "ui/manifest_validation_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "delete_text_button": { "file": "ui/manifest_validation_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "clipboard_button": { "file": "ui/manifest_validation_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "refresh_button": { "file": "ui/manifest_validation_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "refresh_text_button": { "file": "ui/manifest_validation_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "pack_secondary_info": { "file": "ui/manifest_validation_screen.json", "type": "panel", "children": [ "layout" ] }, "pack_secondary_info/layout": { "file": "ui/manifest_validation_screen.json", "type": "panel", "extend": { "name": "error_pack_secondary_layout", "namespace": "manifest_validation" } }, "error_content_grid": { "file": "ui/manifest_validation_screen.json", "type": "stack_panel" }, "pack_error_item": { "file": "ui/manifest_validation_screen.json", "type": "stack_panel", "children": [ "secondary", "error_header", "error" ] }, "pack_error_item/secondary": { "file": "ui/manifest_validation_screen.json", "type": "panel", "extend": { "name": "pack_secondary_info", "namespace": "manifest_validation" } }, "pack_error_item/error_header": { "file": "ui/manifest_validation_screen.json", "type": "panel", "children": [ "error_text" ] }, "pack_error_item/error_header/error_text": { "file": "ui/manifest_validation_screen.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "pack_error_item/error": { "file": "ui/manifest_validation_screen.json", "type": "stack_panel", "extend": { "name": "error_content_grid", "namespace": "manifest_validation" } }, "pack_error_group": { "file": "ui/manifest_validation_screen.json", "type": "stack_panel", "children": [ "top_padding", "errors", "padding" ] }, "pack_error_group/top_padding": { "file": "ui/manifest_validation_screen.json", "type": "panel" }, "pack_error_group/errors": { "file": "ui/manifest_validation_screen.json", "type": "stack_panel", "extend": { "name": "pack_error_item", "namespace": "manifest_validation" } }, "pack_error_group/padding": { "file": "ui/manifest_validation_screen.json", "type": "panel" }, "common_scrolling_panel": { "file": "ui/manifest_validation_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "common_content": { "file": "ui/manifest_validation_screen.json", "type": "input_panel" }, "scrolling_offsets": { "file": "ui/manifest_validation_screen.json", "type": "panel", "extend": { "name": "common_scrolling_panel", "namespace": "manifest_validation" } }, "manifest_validation_scroll_content": { "file": "ui/manifest_validation_screen.json", "type": "input_panel", "extend": { "name": "common_content", "namespace": "manifest_validation" }, "children": [ "scrolling_panel" ] }, "manifest_validation_scroll_content/scrolling_panel": { "file": "ui/manifest_validation_screen.json", "type": "panel", "extend": { "name": "scrolling_offsets", "namespace": "manifest_validation" } }, "common_scroll_panel": { "file": "ui/manifest_validation_screen.json", "type": "panel" }, "manifest_validation_scroll_panel": { "file": "ui/manifest_validation_screen.json", "type": "panel", "extend": { "name": "common_scroll_panel", "namespace": "manifest_validation" }, "children": [ "pack_error_group" ] }, "manifest_validation_scroll_panel/pack_error_group": { "file": "ui/manifest_validation_screen.json", "type": "stack_panel", "extend": { "name": "pack_error_group", "namespace": "manifest_validation" } }, "manifest_validation_screen": { "file": "ui/manifest_validation_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "manifest_validation_screen_content": { "file": "ui/manifest_validation_screen.json", "type": "panel", "children": [ "background" ] }, "manifest_validation_screen_content/background": { "file": "ui/manifest_validation_screen.json", "type": "panel", "extend": { "name": "main_panel_no_buttons", "namespace": "common_dialogs" } } }, "sdl_label": { "sdl_label_factory": { "file": "ui/marketplace_sdl/sdl_label.json", "type": "stack_panel" }, "sdl_label": { "file": "ui/marketplace_sdl/sdl_label.json", "type": "label" }, "sdl_mc_ten_label": { "file": "ui/marketplace_sdl/sdl_label.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } } }, "sdl_dropdowns": { "sdl_dropdown_rows": { "file": "ui/marketplace_sdl/sdl_dropdowns.json", "type": "panel", "children": [ "container_panel" ] }, "sdl_dropdown_rows/container_panel": { "file": "ui/marketplace_sdl/sdl_dropdowns.json", "type": "stack_panel", "children": [ "toggle", "pad" ] }, "sdl_dropdown_rows/container_panel/toggle": { "file": "ui/marketplace_sdl/sdl_dropdowns.json", "type": "panel", "extend": { "name": "sdl_rows_toggle", "namespace": "sdl_dropdowns" } }, "sdl_dropdown_rows/container_panel/pad": { "file": "ui/marketplace_sdl/sdl_dropdowns.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "sdl_rows_toggle": { "file": "ui/marketplace_sdl/sdl_dropdowns.json", "type": "panel", "extend": { "name": "light_content_toggle", "namespace": "common_toggles" } } }, "sdl_image_row": { "image_row_factory": { "file": "ui/marketplace_sdl/sdl_image_row.json", "type": "stack_panel" }, "buffer_panel": { "file": "ui/marketplace_sdl/sdl_image_row.json", "type": "panel" }, "single_image": { "file": "ui/marketplace_sdl/sdl_image_row.json", "type": "panel", "children": [ "image_with_border", "image_selector" ] }, "single_image/image_with_border": { "file": "ui/marketplace_sdl/sdl_image_row.json", "type": "panel", "children": [ "screenshot_image", "dark_border", "progress_loading" ] }, "single_image/image_with_border/screenshot_image": { "file": "ui/marketplace_sdl/sdl_image_row.json", "type": "image" }, "single_image/image_with_border/dark_border": { "file": "ui/marketplace_sdl/sdl_image_row.json", "type": "image", "extend": { "name": "focus_border_white", "namespace": "common" } }, "single_image/image_with_border/progress_loading": { "file": "ui/marketplace_sdl/sdl_image_row.json", "type": "panel", "extend": { "name": "progress_loading", "namespace": "common_store" } }, "single_image/image_selector": { "file": "ui/marketplace_sdl/sdl_image_row.json", "type": "button", "extend": { "name": "tts_activate_sibling", "namespace": "common" } }, "double_image": { "file": "ui/marketplace_sdl/sdl_image_row.json", "type": "panel", "extend": { "name": "single_image", "namespace": "sdl_image_row" } }, "triple_image_with_buffer": { "file": "ui/marketplace_sdl/sdl_image_row.json", "type": "stack_panel", "children": [ "buffer_panel_in_1", "buffer_panel_in_2", "triple_image", "buffer_panel_out_1", "buffer_panel_out_2" ] }, "triple_image_with_buffer/buffer_panel_in_1": { "file": "ui/marketplace_sdl/sdl_image_row.json", "type": "panel" }, "triple_image_with_buffer/buffer_panel_in_2": { "file": "ui/marketplace_sdl/sdl_image_row.json", "type": "panel" }, "triple_image_with_buffer/triple_image": { "file": "ui/marketplace_sdl/sdl_image_row.json", "type": "panel", "extend": { "name": "single_image", "namespace": "sdl_image_row" } }, "triple_image_with_buffer/buffer_panel_out_1": { "file": "ui/marketplace_sdl/sdl_image_row.json", "type": "panel" }, "triple_image_with_buffer/buffer_panel_out_2": { "file": "ui/marketplace_sdl/sdl_image_row.json", "type": "panel" } }, "sdl_text_row": { "sdl_text_row_factory": { "file": "ui/marketplace_sdl/sdl_text_row.json", "type": "stack_panel", "extend": { "name": "sdl_label_factory", "namespace": "sdl_label" } }, "sdl_header_component_factory": { "file": "ui/marketplace_sdl/sdl_text_row.json", "type": "stack_panel", "extend": { "name": "sdl_label_factory", "namespace": "sdl_label" } }, "label_button": { "file": "ui/marketplace_sdl/sdl_text_row.json", "type": "button", "extend": { "name": "button", "namespace": "common" } }, "sdl_header_component_panel": { "file": "ui/marketplace_sdl/sdl_text_row.json", "type": "panel", "children": [ "header_background", "header_internals", "header_highlight", "text_row_header_text" ] }, "sdl_header_component_panel/header_background": { "file": "ui/marketplace_sdl/sdl_text_row.json", "type": "image", "extend": { "name": "store_description_background", "namespace": "common_store" } }, "sdl_header_component_panel/header_internals": { "file": "ui/marketplace_sdl/sdl_text_row.json", "type": "button", "extend": { "name": "tts_activate_sibling", "namespace": "common" } }, "sdl_header_component_panel/header_highlight": { "file": "ui/marketplace_sdl/sdl_text_row.json", "type": "image" }, "sdl_header_component_panel/text_row_header_text": { "file": "ui/marketplace_sdl/sdl_text_row.json", "type": "stack_panel", "extend": { "name": "sdl_header_component_factory", "namespace": "sdl_text_row" } }, "sdl_text_row_component_panel": { "file": "ui/marketplace_sdl/sdl_text_row.json", "type": "panel", "children": [ "text_background", "text_row_selector", "text_row_background", "text_row_component_text" ] }, "sdl_text_row_component_panel/text_background": { "file": "ui/marketplace_sdl/sdl_text_row.json", "type": "image", "extend": { "name": "store_description_background", "namespace": "common_store" } }, "sdl_text_row_component_panel/text_row_selector": { "file": "ui/marketplace_sdl/sdl_text_row.json", "type": "button", "extend": { "name": "tts_activate_sibling", "namespace": "common" } }, "sdl_text_row_component_panel/text_row_background": { "file": "ui/marketplace_sdl/sdl_text_row.json", "type": "image" }, "sdl_text_row_component_panel/text_row_component_text": { "file": "ui/marketplace_sdl/sdl_text_row.json", "type": "stack_panel", "extend": { "name": "sdl_text_row_factory", "namespace": "sdl_text_row" } }, "solo_text_row": { "file": "ui/marketplace_sdl/sdl_text_row.json", "type": "stack_panel", "children": [ "buffer_panel_front", "headercomp_and_textcomp_panel", "buffer_panel_back" ] }, "solo_text_row/buffer_panel_front": { "file": "ui/marketplace_sdl/sdl_text_row.json", "type": "panel" }, "solo_text_row/headercomp_and_textcomp_panel": { "file": "ui/marketplace_sdl/sdl_text_row.json", "type": "stack_panel", "children": [ "text_row_header_text_panel", "text_row_text_panel" ] }, "solo_text_row/headercomp_and_textcomp_panel/text_row_header_text_panel": { "file": "ui/marketplace_sdl/sdl_text_row.json", "type": "panel", "extend": { "name": "sdl_header_component_panel", "namespace": "sdl_text_row" } }, "solo_text_row/headercomp_and_textcomp_panel/text_row_text_panel": { "file": "ui/marketplace_sdl/sdl_text_row.json", "type": "panel", "extend": { "name": "sdl_text_row_component_panel", "namespace": "sdl_text_row" } }, "solo_text_row/buffer_panel_back": { "file": "ui/marketplace_sdl/sdl_text_row.json", "type": "panel" } }, "mob_effect": { "effect_background": { "file": "ui/mob_effect_screen.json", "type": "panel", "children": [ "default_background", "ambient_background" ] }, "effect_background/default_background": { "file": "ui/mob_effect_screen.json", "type": "image" }, "effect_background/ambient_background": { "file": "ui/mob_effect_screen.json", "type": "image" }, "main_background": { "file": "ui/mob_effect_screen.json", "type": "image" }, "button_background": { "file": "ui/mob_effect_screen.json", "type": "image" }, "effect_name": { "file": "ui/mob_effect_screen.json", "type": "label" }, "effect_timer": { "file": "ui/mob_effect_screen.json", "type": "label" }, "effect_icon": { "file": "ui/mob_effect_screen.json", "type": "image" }, "mob_effect_grid_panel": { "file": "ui/mob_effect_screen.json", "type": "panel", "children": [ "mob_effect_grid" ] }, "mob_effect_grid_panel/mob_effect_grid": { "file": "ui/mob_effect_screen.json", "type": "grid", "extend": { "name": "mob_effect_grid", "namespace": "mob_effect" } }, "mob_effect_grid": { "file": "ui/mob_effect_screen.json", "type": "grid" }, "mob_effect_grid_item": { "file": "ui/mob_effect_screen.json", "type": "panel", "children": [ "bg", "name", "timer", "icon" ] }, "mob_effect_grid_item/bg": { "file": "ui/mob_effect_screen.json", "type": "panel", "extend": { "name": "effect_background", "namespace": "mob_effect" } }, "mob_effect_grid_item/name": { "file": "ui/mob_effect_screen.json", "type": "label", "extend": { "name": "effect_name", "namespace": "mob_effect" } }, "mob_effect_grid_item/timer": { "file": "ui/mob_effect_screen.json", "type": "label", "extend": { "name": "effect_timer", "namespace": "mob_effect" } }, "mob_effect_grid_item/icon": { "file": "ui/mob_effect_screen.json", "type": "image", "extend": { "name": "effect_icon", "namespace": "mob_effect" } }, "mob_effect_list_content_panel": { "file": "ui/mob_effect_screen.json", "type": "panel", "children": [ "scrolling_panel" ] }, "mob_effect_list_content_panel/scrolling_panel": { "file": "ui/mob_effect_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "mob_effect_screen_close_button": { "file": "ui/mob_effect_screen.json", "type": "button", "extend": { "name": "legacy_pocket_close_button", "namespace": "common" } }, "close_button_panel": { "file": "ui/mob_effect_screen.json", "type": "panel", "children": [ "bg", "close_button" ] }, "close_button_panel/bg": { "file": "ui/mob_effect_screen.json", "type": "image", "extend": { "name": "button_background", "namespace": "mob_effect" } }, "close_button_panel/close_button": { "file": "ui/mob_effect_screen.json", "type": "button", "extend": { "name": "mob_effect_screen_close_button", "namespace": "mob_effect" } }, "mob_effect_content": { "file": "ui/mob_effect_screen.json", "type": "panel", "children": [ "bg", "close_panel", "content_panel" ] }, "mob_effect_content/bg": { "file": "ui/mob_effect_screen.json", "type": "image", "extend": { "name": "main_background", "namespace": "mob_effect" } }, "mob_effect_content/close_panel": { "file": "ui/mob_effect_screen.json", "type": "panel", "extend": { "name": "close_button_panel", "namespace": "mob_effect" } }, "mob_effect_content/content_panel": { "file": "ui/mob_effect_screen.json", "type": "panel", "extend": { "name": "mob_effect_list_content_panel", "namespace": "mob_effect" } }, "main_screen": { "file": "ui/mob_effect_screen.json", "type": "panel", "children": [ "main_screen" ] }, "main_screen/main_screen": { "file": "ui/mob_effect_screen.json", "type": "panel", "extend": { "name": "mob_effect_content", "namespace": "mob_effect" } }, "mob_effect_screen": { "file": "ui/mob_effect_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } } }, "non_xbl_user_management": { "black_tint_image": { "file": "ui/non_xbl_user_management_screen.json", "type": "image" }, "modal_title_text": { "file": "ui/non_xbl_user_management_screen.json", "type": "label" }, "modal_label_text": { "file": "ui/non_xbl_user_management_screen.json", "type": "stack_panel", "children": [ "padding", "text" ] }, "modal_label_text/padding": { "file": "ui/non_xbl_user_management_screen.json", "type": "panel" }, "modal_label_text/text": { "file": "ui/non_xbl_user_management_screen.json", "type": "label" }, "modal_label_panel": { "file": "ui/non_xbl_user_management_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "modal_left_button": { "file": "ui/non_xbl_user_management_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "modal_middle_button": { "file": "ui/non_xbl_user_management_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "modal_rightcancel_button": { "file": "ui/non_xbl_user_management_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "three_buttons_panel": { "file": "ui/non_xbl_user_management_screen.json", "type": "panel", "children": [ "left", "middle", "right" ] }, "three_buttons_panel/left": { "file": "ui/non_xbl_user_management_screen.json", "type": "button", "extend": { "name": "modal_left_button", "namespace": "non_xbl_user_management" } }, "three_buttons_panel/middle": { "file": "ui/non_xbl_user_management_screen.json", "type": "button", "extend": { "name": "modal_middle_button", "namespace": "non_xbl_user_management" } }, "three_buttons_panel/right": { "file": "ui/non_xbl_user_management_screen.json", "type": "button", "extend": { "name": "modal_rightcancel_button", "namespace": "non_xbl_user_management" } }, "two_buttons_panel": { "file": "ui/non_xbl_user_management_screen.json", "type": "panel", "children": [ "left", "right" ] }, "two_buttons_panel/left": { "file": "ui/non_xbl_user_management_screen.json", "type": "button", "extend": { "name": "modal_left_button", "namespace": "non_xbl_user_management" } }, "two_buttons_panel/right": { "file": "ui/non_xbl_user_management_screen.json", "type": "button", "extend": { "name": "modal_rightcancel_button", "namespace": "non_xbl_user_management" } }, "single_button_panel": { "file": "ui/non_xbl_user_management_screen.json", "type": "panel", "children": [ "left" ] }, "single_button_panel/left": { "file": "ui/non_xbl_user_management_screen.json", "type": "button", "extend": { "name": "modal_middle_button", "namespace": "non_xbl_user_management" } }, "modal_dialog_with_buttons": { "file": "ui/non_xbl_user_management_screen.json", "type": "panel", "children": [ "background_with_buttons", "title", "text_with_buttons", "button_panel" ] }, "modal_dialog_with_buttons/background_with_buttons": { "file": "ui/non_xbl_user_management_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "modal_dialog_with_buttons/title": { "file": "ui/non_xbl_user_management_screen.json", "type": "label", "extend": { "name": "modal_title_text", "namespace": "non_xbl_user_management" } }, "modal_dialog_with_buttons/text_with_buttons": { "file": "ui/non_xbl_user_management_screen.json", "type": "panel", "extend": { "name": "modal_label_panel", "namespace": "non_xbl_user_management" } }, "modal_dialog_with_buttons/button_panel": { "file": "ui/non_xbl_user_management_screen.json", "type": "unknown" }, "modal_input_panel": { "file": "ui/non_xbl_user_management_screen.json", "type": "input_panel", "extend": { "name": "input_panel", "namespace": "common" }, "children": [ "black_tint_image" ] }, "modal_input_panel/black_tint_image": { "file": "ui/non_xbl_user_management_screen.json", "type": "image", "extend": { "name": "black_tint_image", "namespace": "non_xbl_user_management" } }, "user_confirm_dialog_screen_content": { "file": "ui/non_xbl_user_management_screen.json", "type": "panel", "children": [ "modal_input" ] }, "user_confirm_dialog_screen_content/modal_input": { "file": "ui/non_xbl_user_management_screen.json", "type": "input_panel", "extend": { "name": "modal_input_panel", "namespace": "non_xbl_user_management" }, "children": [ "modal_bg_buttons" ] }, "user_confirm_dialog_screen_content/modal_input/modal_bg_buttons": { "file": "ui/non_xbl_user_management_screen.json", "type": "panel", "extend": { "name": "modal_dialog_with_buttons", "namespace": "non_xbl_user_management" } }, "user_confirm_dialog_screen": { "file": "ui/non_xbl_user_management_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } } }, "npc_interact": { "multiline_text_edit_control": { "file": "ui/npc_interact_screen.json", "type": "edit_box", "extend": { "name": "multiline_text_edit_box", "namespace": "common" } }, "text_edit_control": { "file": "ui/npc_interact_screen.json", "type": "edit_box", "extend": { "name": "text_edit_box", "namespace": "common" } }, "label_padding": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "main_stack_panel": { "file": "ui/npc_interact_screen.json", "type": "stack_panel" }, "skin_button": { "file": "ui/npc_interact_screen.json", "type": "button" }, "skin_model": { "file": "ui/npc_interact_screen.json", "type": "custom" }, "skin_model_clipper": { "file": "ui/npc_interact_screen.json", "type": "panel" }, "skins_grid_item": { "file": "ui/npc_interact_screen.json", "type": "panel", "children": [ "clip", "button", "selectFrame" ] }, "skins_grid_item/clip": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "skin_model_clipper", "namespace": "npc_interact" }, "children": [ "model" ] }, "skins_grid_item/clip/model": { "file": "ui/npc_interact_screen.json", "type": "custom", "extend": { "name": "skin_model", "namespace": "npc_interact" } }, "skins_grid_item/button": { "file": "ui/npc_interact_screen.json", "type": "button", "extend": { "name": "skin_button", "namespace": "npc_interact" } }, "skins_grid_item/selectFrame": { "file": "ui/npc_interact_screen.json", "type": "image", "extend": { "name": "focus_border_white", "namespace": "common" } }, "skins_grid": { "file": "ui/npc_interact_screen.json", "type": "grid" }, "cycle_pack_button": { "file": "ui/npc_interact_screen.json", "type": "button", "extend": { "name": "light_glyph_button", "namespace": "common_buttons" } }, "cycle_pack_left_button": { "file": "ui/npc_interact_screen.json", "type": "button", "extend": { "name": "cycle_pack_button", "namespace": "npc_interact" } }, "cycle_pack_right_button": { "file": "ui/npc_interact_screen.json", "type": "button", "extend": { "name": "cycle_pack_button", "namespace": "npc_interact" } }, "banner_fill": { "file": "ui/npc_interact_screen.json", "type": "image" }, "skin_picker": { "file": "ui/npc_interact_screen.json", "type": "image", "extend": { "name": "banner_fill", "namespace": "npc_interact" }, "children": [ "left", "sg", "right" ] }, "skin_picker/left": { "file": "ui/npc_interact_screen.json", "type": "button", "extend": { "name": "cycle_pack_left_button", "namespace": "npc_interact" } }, "skin_picker/sg": { "file": "ui/npc_interact_screen.json", "type": "grid", "extend": { "name": "skins_grid", "namespace": "npc_interact" } }, "skin_picker/right": { "file": "ui/npc_interact_screen.json", "type": "button", "extend": { "name": "cycle_pack_right_button", "namespace": "npc_interact" } }, "name_edit": { "file": "ui/npc_interact_screen.json", "type": "edit_box", "extend": { "name": "text_edit_control", "namespace": "npc_interact" } }, "advanced_button": { "file": "ui/npc_interact_screen.json", "type": "panel", "children": [ "button" ] }, "advanced_button/button": { "file": "ui/npc_interact_screen.json", "type": "button", "extend": { "name": "light_text_form_fitting_button", "namespace": "common_buttons" } }, "dialog_button": { "file": "ui/npc_interact_screen.json", "type": "panel", "children": [ "button" ] }, "dialog_button/button": { "file": "ui/npc_interact_screen.json", "type": "button", "extend": { "name": "light_text_form_fitting_button", "namespace": "common_buttons" } }, "basic_stack_panel": { "file": "ui/npc_interact_screen.json", "type": "stack_panel", "extend": { "name": "main_stack_panel", "namespace": "npc_interact" }, "children": [ "top_pad", "name_label", "name_padding", "name_edit", "dialog_pre_padding", "dialog_label", "dialog_post_padding", "dialog__padding", "dialog_button", "appearance_pre_padding", "appearance_label", "appearance_post_padding", "skins", "advanced_button" ] }, "basic_stack_panel/top_pad": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "basic_stack_panel/name_label": { "file": "ui/npc_interact_screen.json", "type": "label", "extend": { "name": "light_label", "namespace": "edu_common" } }, "basic_stack_panel/name_padding": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "label_padding", "namespace": "npc_interact" } }, "basic_stack_panel/name_edit": { "file": "ui/npc_interact_screen.json", "type": "edit_box", "extend": { "name": "name_edit", "namespace": "npc_interact" } }, "basic_stack_panel/dialog_pre_padding": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "label_padding", "namespace": "npc_interact" } }, "basic_stack_panel/dialog_label": { "file": "ui/npc_interact_screen.json", "type": "label", "extend": { "name": "light_label", "namespace": "edu_common" } }, "basic_stack_panel/dialog_post_padding": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "label_padding", "namespace": "npc_interact" } }, "basic_stack_panel/dialog__padding": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "label_padding", "namespace": "npc_interact" } }, "basic_stack_panel/dialog_button": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "dialog_button", "namespace": "npc_interact" } }, "basic_stack_panel/appearance_pre_padding": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "label_padding", "namespace": "npc_interact" } }, "basic_stack_panel/appearance_label": { "file": "ui/npc_interact_screen.json", "type": "label", "extend": { "name": "light_label", "namespace": "edu_common" } }, "basic_stack_panel/appearance_post_padding": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "label_padding", "namespace": "npc_interact" } }, "basic_stack_panel/skins": { "file": "ui/npc_interact_screen.json", "type": "image", "extend": { "name": "skin_picker", "namespace": "npc_interact" } }, "basic_stack_panel/advanced_button": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "advanced_button", "namespace": "npc_interact" } }, "basic_content": { "file": "ui/npc_interact_screen.json", "type": "panel", "children": [ "basic" ] }, "basic_content/basic": { "file": "ui/npc_interact_screen.json", "type": "stack_panel", "extend": { "name": "basic_stack_panel", "namespace": "npc_interact" } }, "advanced_stack_panel": { "file": "ui/npc_interact_screen.json", "type": "stack_panel", "extend": { "name": "main_stack_panel", "namespace": "npc_interact" }, "children": [ "top_pad", "add_help_text", "middle_pad", "actions", "add_buttons", "bottom_pad" ] }, "advanced_stack_panel/top_pad": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "advanced_stack_panel/add_help_text": { "file": "ui/npc_interact_screen.json", "type": "stack_panel", "extend": { "name": "add_help_text", "namespace": "npc_interact" } }, "advanced_stack_panel/middle_pad": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "advanced_stack_panel/actions": { "file": "ui/npc_interact_screen.json", "type": "stack_panel", "extend": { "name": "action_panel", "namespace": "npc_interact" } }, "advanced_stack_panel/add_buttons": { "file": "ui/npc_interact_screen.json", "type": "stack_panel", "extend": { "name": "add_buttons", "namespace": "npc_interact" } }, "advanced_stack_panel/bottom_pad": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "action_title": { "file": "ui/npc_interact_screen.json", "type": "label", "extend": { "name": "dark_label", "namespace": "edu_common" } }, "plus_icon": { "file": "ui/npc_interact_screen.json", "type": "image" }, "plus_button": { "file": "ui/npc_interact_screen.json", "type": "button", "extend": { "name": "light_glyph_button", "namespace": "common_buttons" } }, "action_text_edit": { "file": "ui/npc_interact_screen.json", "type": "edit_box", "extend": { "name": "multiline_text_edit_control", "namespace": "npc_interact" } }, "maximized_action_edit": { "file": "ui/npc_interact_screen.json", "type": "edit_box", "extend": { "name": "multiline_text_edit_control", "namespace": "npc_interact" } }, "action_edit": { "file": "ui/npc_interact_screen.json", "type": "stack_panel", "children": [ "text_edit", "expand" ] }, "action_edit/text_edit": { "file": "ui/npc_interact_screen.json", "type": "edit_box", "extend": { "name": "action_text_edit", "namespace": "npc_interact" } }, "action_edit/expand": { "file": "ui/npc_interact_screen.json", "type": "button", "extend": { "name": "plus_button", "namespace": "npc_interact" } }, "button_name_edit": { "file": "ui/npc_interact_screen.json", "type": "edit_box", "extend": { "name": "text_edit_control", "namespace": "npc_interact" } }, "command_toggle": { "file": "ui/npc_interact_screen.json", "type": "toggle", "extend": { "name": "slider_toggle", "namespace": "edu_common" } }, "command_toggle_panel": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "command_toggle", "toggle_label" ] }, "command_toggle_panel/command_toggle": { "file": "ui/npc_interact_screen.json", "type": "toggle", "extend": { "name": "command_toggle", "namespace": "npc_interact" } }, "command_toggle_panel/toggle_label": { "file": "ui/npc_interact_screen.json", "type": "label", "extend": { "name": "dark_label", "namespace": "edu_common" } }, "action_mode": { "file": "ui/npc_interact_screen.json", "type": "stack_panel", "children": [ "button_mode_toggle_panel", "on_enter_toggle_panel", "on_exit_toggle_panel" ] }, "action_mode/button_mode_toggle_panel": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "command_toggle_panel", "namespace": "npc_interact" } }, "action_mode/on_enter_toggle_panel": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "command_toggle_panel", "namespace": "npc_interact" } }, "action_mode/on_exit_toggle_panel": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "command_toggle_panel", "namespace": "npc_interact" } }, "button_name_label": { "file": "ui/npc_interact_screen.json", "type": "label", "extend": { "name": "dark_label", "namespace": "edu_common" } }, "url_notifications": { "file": "ui/npc_interact_screen.json", "type": "stack_panel", "children": [ "empty_uri_warning", "invalid_uri_warning" ] }, "url_notifications/empty_uri_warning": { "file": "ui/npc_interact_screen.json", "type": "image", "extend": { "name": "inline_notification", "namespace": "edu_common" } }, "url_notifications/invalid_uri_warning": { "file": "ui/npc_interact_screen.json", "type": "image", "extend": { "name": "inline_notification", "namespace": "edu_common" } }, "action_template": { "file": "ui/npc_interact_screen.json", "type": "stack_panel", "extend": { "name": "main_stack_panel", "namespace": "npc_interact" }, "children": [ "title", "label_pad", "edit", "edit_pad", "url_warning", "url_pad", "action_mode", "mode_pad", "button_name_label", "button_name" ] }, "action_template/title": { "file": "ui/npc_interact_screen.json", "type": "label", "extend": { "name": "action_title", "namespace": "npc_interact" } }, "action_template/label_pad": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "action_template/edit": { "file": "ui/npc_interact_screen.json", "type": "stack_panel", "extend": { "name": "action_edit", "namespace": "npc_interact" } }, "action_template/edit_pad": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "action_template/url_warning": { "file": "ui/npc_interact_screen.json", "type": "stack_panel", "extend": { "name": "url_notifications", "namespace": "npc_interact" } }, "action_template/url_pad": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "action_template/action_mode": { "file": "ui/npc_interact_screen.json", "type": "stack_panel", "extend": { "name": "action_mode", "namespace": "npc_interact" } }, "action_template/mode_pad": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "action_template/button_name_label": { "file": "ui/npc_interact_screen.json", "type": "label", "extend": { "name": "button_name_label", "namespace": "npc_interact" } }, "action_template/button_name": { "file": "ui/npc_interact_screen.json", "type": "edit_box", "extend": { "name": "button_name_edit", "namespace": "npc_interact" } }, "action_command": { "file": "ui/npc_interact_screen.json", "type": "stack_panel", "extend": { "name": "action_template", "namespace": "npc_interact" } }, "action_url": { "file": "ui/npc_interact_screen.json", "type": "stack_panel", "extend": { "name": "action_template", "namespace": "npc_interact" } }, "padded_action": { "file": "ui/npc_interact_screen.json", "type": "stack_panel", "children": [ "action", "padding" ] }, "padded_action/action": { "file": "ui/npc_interact_screen.json", "type": "image", "extend": { "name": "action", "namespace": "npc_interact" } }, "padded_action/padding": { "file": "ui/npc_interact_screen.json", "type": "panel" }, "action": { "file": "ui/npc_interact_screen.json", "type": "image", "children": [ "trash", "command", "url" ] }, "action/trash": { "file": "ui/npc_interact_screen.json", "type": "button", "extend": { "name": "photo_trash_button", "namespace": "edu_common" } }, "action/command": { "file": "ui/npc_interact_screen.json", "type": "stack_panel", "extend": { "name": "action_command", "namespace": "npc_interact" } }, "action/url": { "file": "ui/npc_interact_screen.json", "type": "stack_panel", "extend": { "name": "action_url", "namespace": "npc_interact" } }, "action_panel": { "file": "ui/npc_interact_screen.json", "type": "stack_panel" }, "add_button": { "file": "ui/npc_interact_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "help_label": { "file": "ui/npc_interact_screen.json", "type": "label", "extend": { "name": "light_label", "namespace": "edu_common" } }, "add_help_section": { "file": "ui/npc_interact_screen.json", "type": "stack_panel", "children": [ "text_url", "padding", "text_command" ] }, "add_help_section/text_url": { "file": "ui/npc_interact_screen.json", "type": "panel", "children": [ "tts_border", "wrapper_panel_url" ] }, "add_help_section/text_url/tts_border": { "file": "ui/npc_interact_screen.json", "type": "button", "extend": { "name": "non_interact_focus_border_button", "namespace": "common" } }, "add_help_section/text_url/wrapper_panel_url": { "file": "ui/npc_interact_screen.json", "type": "stack_panel", "children": [ "text_url_a", "padding", "text_url_b" ] }, "add_help_section/text_url/wrapper_panel_url/text_url_a": { "file": "ui/npc_interact_screen.json", "type": "label", "extend": { "name": "help_label", "namespace": "npc_interact" } }, "add_help_section/text_url/wrapper_panel_url/padding": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "add_help_section/text_url/wrapper_panel_url/text_url_b": { "file": "ui/npc_interact_screen.json", "type": "label", "extend": { "name": "help_label", "namespace": "npc_interact" } }, "add_help_section/padding": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "add_help_section/text_command": { "file": "ui/npc_interact_screen.json", "type": "panel", "children": [ "tts_border", "wrapper_panel_command" ] }, "add_help_section/text_command/tts_border": { "file": "ui/npc_interact_screen.json", "type": "button", "extend": { "name": "non_interact_focus_border_button", "namespace": "common" } }, "add_help_section/text_command/wrapper_panel_command": { "file": "ui/npc_interact_screen.json", "type": "stack_panel", "children": [ "text_command_a", "padding", "text_command_b" ] }, "add_help_section/text_command/wrapper_panel_command/text_command_a": { "file": "ui/npc_interact_screen.json", "type": "label", "extend": { "name": "help_label", "namespace": "npc_interact" } }, "add_help_section/text_command/wrapper_panel_command/padding": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "add_help_section/text_command/wrapper_panel_command/text_command_b": { "file": "ui/npc_interact_screen.json", "type": "label", "extend": { "name": "help_label", "namespace": "npc_interact" } }, "add_help_text": { "file": "ui/npc_interact_screen.json", "type": "stack_panel", "extend": { "name": "add_help_section", "namespace": "npc_interact" } }, "add_buttons": { "file": "ui/npc_interact_screen.json", "type": "stack_panel", "children": [ "add_url", "padding", "add_command" ] }, "add_buttons/add_url": { "file": "ui/npc_interact_screen.json", "type": "button", "extend": { "name": "add_button", "namespace": "npc_interact" } }, "add_buttons/padding": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "add_buttons/add_command": { "file": "ui/npc_interact_screen.json", "type": "button", "extend": { "name": "add_button", "namespace": "npc_interact" } }, "advanced_scrolling_panel": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "advanced_scrolling_content": { "file": "ui/npc_interact_screen.json", "type": "panel", "children": [ "advanced" ] }, "advanced_scrolling_content/advanced": { "file": "ui/npc_interact_screen.json", "type": "stack_panel", "extend": { "name": "advanced_stack_panel", "namespace": "npc_interact" } }, "message_model": { "file": "ui/npc_interact_screen.json", "type": "panel", "children": [ "model" ] }, "message_model/model": { "file": "ui/npc_interact_screen.json", "type": "custom", "extend": { "name": "skin_model", "namespace": "npc_interact" } }, "clipped_message_model": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "skin_model_clipper", "namespace": "npc_interact" }, "children": [ "model" ] }, "clipped_message_model/model": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "message_model", "namespace": "npc_interact" } }, "message_model_window": { "file": "ui/npc_interact_screen.json", "type": "image", "extend": { "name": "banner_fill", "namespace": "npc_interact" }, "children": [ "model", "immersive_reader_button" ] }, "message_model_window/model": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "clipped_message_model", "namespace": "npc_interact" } }, "message_model_window/immersive_reader_button": { "file": "ui/npc_interact_screen.json", "type": "button", "extend": { "name": "reader_button", "namespace": "im_reader" } }, "edit_box_background": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "npc_message": { "file": "ui/npc_interact_screen.json", "type": "edit_box", "extend": { "name": "multiline_text_edit_control", "namespace": "npc_interact" }, "children": [ "label", "visibility_panel", "background" ] }, "npc_message/label": { "file": "ui/npc_interact_screen.json", "type": "label", "extend": { "name": "text_edit_box_label", "namespace": "common" } }, "npc_message/visibility_panel": { "file": "ui/npc_interact_screen.json", "type": "panel", "children": [ "place_holder" ] }, "npc_message/visibility_panel/place_holder": { "file": "ui/npc_interact_screen.json", "type": "label", "extend": { "name": "text_edit_box_place_holder_label", "namespace": "common" } }, "npc_message/background": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "text_scroll": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "student_message_bubble": { "file": "ui/npc_interact_screen.json", "type": "image", "children": [ "dialog_panel" ] }, "student_message_bubble/dialog_panel": { "file": "ui/npc_interact_screen.json", "type": "panel", "children": [ "text_scroll" ] }, "student_message_bubble/dialog_panel/text_scroll": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "text_scroll", "namespace": "npc_interact" } }, "bubble_point": { "file": "ui/npc_interact_screen.json", "type": "image" }, "student_message_section": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "model", "point", "message" ] }, "student_message_section/model": { "file": "ui/npc_interact_screen.json", "type": "image", "extend": { "name": "message_model_window", "namespace": "npc_interact" } }, "student_message_section/point": { "file": "ui/npc_interact_screen.json", "type": "image", "extend": { "name": "bubble_point", "namespace": "npc_interact" } }, "student_message_section/message": { "file": "ui/npc_interact_screen.json", "type": "image", "extend": { "name": "student_message_bubble", "namespace": "npc_interact" } }, "student_button_label": { "file": "ui/npc_interact_screen.json", "type": "label" }, "student_button_label_panel": { "file": "ui/npc_interact_screen.json", "type": "panel", "children": [ "url", "command" ] }, "student_button_label_panel/url": { "file": "ui/npc_interact_screen.json", "type": "label", "extend": { "name": "student_button_label", "namespace": "npc_interact" } }, "student_button_label_panel/command": { "file": "ui/npc_interact_screen.json", "type": "label", "extend": { "name": "student_button_label", "namespace": "npc_interact" } }, "student_button": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "button" ] }, "student_button/button": { "file": "ui/npc_interact_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "student_buttons": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "buttons" ] }, "student_buttons/buttons": { "file": "ui/npc_interact_screen.json", "type": "stack_panel", "children": [ "actions" ] }, "student_buttons/buttons/actions": { "file": "ui/npc_interact_screen.json", "type": "grid" }, "student_stack_panel": { "file": "ui/npc_interact_screen.json", "type": "stack_panel", "extend": { "name": "main_stack_panel", "namespace": "npc_interact" }, "children": [ "top_pad", "message", "message_pad", "buttons" ] }, "student_stack_panel/top_pad": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "student_stack_panel/message": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "student_message_section", "namespace": "npc_interact" } }, "student_stack_panel/message_pad": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "student_stack_panel/buttons": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "student_buttons", "namespace": "npc_interact" } }, "student_view_content": { "file": "ui/npc_interact_screen.json", "type": "panel", "children": [ "student", "close" ] }, "student_view_content/student": { "file": "ui/npc_interact_screen.json", "type": "stack_panel", "extend": { "name": "student_stack_panel", "namespace": "npc_interact" } }, "student_view_content/close": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "close_button_holder", "namespace": "npc_interact" } }, "close_button_base": { "file": "ui/npc_interact_screen.json", "type": "button", "extend": { "name": "back_button", "namespace": "common" }, "children": [ "default", "hover", "pressed" ] }, "close_button_base/default": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "close_button_panel", "namespace": "common" } }, "close_button_base/hover": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "close_button_panel", "namespace": "common" } }, "close_button_base/pressed": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "close_button_panel", "namespace": "common" } }, "x_close_button": { "file": "ui/npc_interact_screen.json", "type": "button", "extend": { "name": "close_button", "namespace": "common" } }, "ignorable_x_close_button": { "file": "ui/npc_interact_screen.json", "type": "panel", "children": [ "button" ] }, "ignorable_x_close_button/button": { "file": "ui/npc_interact_screen.json", "type": "button", "extend": { "name": "x_close_button", "namespace": "npc_interact" } }, "close_button_holder": { "file": "ui/npc_interact_screen.json", "type": "panel", "children": [ "close_basic", "close_student_edit", "close_student", "close_maximized_action_edit", "close_advanced" ] }, "close_button_holder/close_basic": { "file": "ui/npc_interact_screen.json", "type": "button", "extend": { "name": "x_close_button", "namespace": "npc_interact" } }, "close_button_holder/close_student_edit": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "ignorable_x_close_button", "namespace": "npc_interact" } }, "close_button_holder/close_student": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "ignorable_x_close_button", "namespace": "npc_interact" } }, "close_button_holder/close_maximized_action_edit": { "file": "ui/npc_interact_screen.json", "type": "button", "extend": { "name": "close_button_base", "namespace": "npc_interact" } }, "close_button_holder/close_advanced": { "file": "ui/npc_interact_screen.json", "type": "button", "extend": { "name": "close_button_base", "namespace": "npc_interact" } }, "main_content": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "basic", "advanced", "maximized_action_edit", "close" ] }, "main_content/basic": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "basic_content", "namespace": "npc_interact" } }, "main_content/advanced": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "advanced_scrolling_panel", "namespace": "npc_interact" } }, "main_content/maximized_action_edit": { "file": "ui/npc_interact_screen.json", "type": "edit_box", "extend": { "name": "maximized_action_edit", "namespace": "npc_interact" } }, "main_content/close": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "close_button_holder", "namespace": "npc_interact" } }, "root_panel": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "main_panel_no_buttons", "namespace": "common_dialogs" } }, "gamepad_helper_exit_text": { "file": "ui/npc_interact_screen.json", "type": "label" }, "close_text": { "file": "ui/npc_interact_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_b", "namespace": "common" } }, "npc_screen_contents": { "file": "ui/npc_interact_screen.json", "type": "panel", "children": [ "teacher", "student", "npc_screen_close" ] }, "npc_screen_contents/teacher": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "root_panel", "namespace": "npc_interact" } }, "npc_screen_contents/student": { "file": "ui/npc_interact_screen.json", "type": "panel", "extend": { "name": "form_fitting_main_panel_no_buttons", "namespace": "common_dialogs" } }, "npc_screen_contents/npc_screen_close": { "file": "ui/npc_interact_screen.json", "type": "stack_panel", "extend": { "name": "close_text", "namespace": "npc_interact" } }, "npc_screen": { "file": "ui/npc_interact_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } } }, "online_safety": { "online_safety_proceed_button": { "file": "ui/online_safety_screen.json", "type": "button", "extend": { "name": "popup_dialog_button", "namespace": "popup_dialog" } }, "online_safety_back_button": { "file": "ui/online_safety_screen.json", "type": "button", "extend": { "name": "popup_dialog_button", "namespace": "popup_dialog" } }, "online_safety_description": { "file": "ui/online_safety_screen.json", "type": "label" }, "ip_safety_description": { "file": "ui/online_safety_screen.json", "type": "label" }, "online_safety_label_panel": { "file": "ui/online_safety_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "ip_safety_label_panel": { "file": "ui/online_safety_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "do_not_show_checkbox": { "file": "ui/online_safety_screen.json", "type": "toggle", "extend": { "name": "checkbox", "namespace": "common" }, "children": [ "header_description_stack_panel" ] }, "do_not_show_checkbox/header_description_stack_panel": { "file": "ui/online_safety_screen.json", "type": "stack_panel", "children": [ "checkbox_visuals", "buffer_panel", "another_panel" ] }, "do_not_show_checkbox/header_description_stack_panel/checkbox_visuals": { "file": "ui/online_safety_screen.json", "type": "panel", "extend": { "name": "toggle_visuals", "namespace": "common" } }, "do_not_show_checkbox/header_description_stack_panel/buffer_panel": { "file": "ui/online_safety_screen.json", "type": "panel", "children": [ "label" ] }, "do_not_show_checkbox/header_description_stack_panel/buffer_panel/label": { "file": "ui/online_safety_screen.json", "type": "label" }, "do_not_show_checkbox/header_description_stack_panel/another_panel": { "file": "ui/online_safety_screen.json", "type": "panel" }, "online_safety_dialog": { "file": "ui/online_safety_screen.json", "type": "panel", "extend": { "name": "main_panel_two_buttons", "namespace": "common_dialogs" } }, "ip_safety_dialog": { "file": "ui/online_safety_screen.json", "type": "panel", "extend": { "name": "main_panel_three_buttons", "namespace": "common_dialogs" } }, "gamepad_helpers": { "file": "ui/online_safety_screen.json", "type": "panel", "children": [ "gamepad_helper_a" ] }, "gamepad_helpers/gamepad_helper_a": { "file": "ui/online_safety_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_a", "namespace": "common" } }, "online_safety_screen": { "file": "ui/online_safety_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "online_safety_screen_content": { "file": "ui/online_safety_screen.json", "type": "panel", "children": [ "online_safety_dialog", "gamepad_helpers" ] }, "online_safety_screen_content/online_safety_dialog": { "file": "ui/online_safety_screen.json", "type": "panel", "extend": { "name": "online_safety_dialog", "namespace": "online_safety" } }, "online_safety_screen_content/gamepad_helpers": { "file": "ui/online_safety_screen.json", "type": "panel", "extend": { "name": "gamepad_helpers", "namespace": "online_safety" } }, "ip_safety_screen": { "file": "ui/online_safety_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "ip_safety_screen_content": { "file": "ui/online_safety_screen.json", "type": "panel", "children": [ "ip_safety_dialog", "gamepad_helpers" ] }, "ip_safety_screen_content/ip_safety_dialog": { "file": "ui/online_safety_screen.json", "type": "panel", "extend": { "name": "ip_safety_dialog", "namespace": "online_safety" } }, "ip_safety_screen_content/gamepad_helpers": { "file": "ui/online_safety_screen.json", "type": "panel", "extend": { "name": "gamepad_helpers", "namespace": "online_safety" } } }, "pack_settings": { "background": { "file": "ui/pack_settings_screen.json", "type": "image", "extend": { "name": "screen_background", "namespace": "common" } }, "screen": { "file": "ui/pack_settings_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "main_screen_content": { "file": "ui/pack_settings_screen.json", "type": "panel", "extend": { "name": "main_panel_no_buttons", "namespace": "common_dialogs" } }, "pack_scroll_panel": { "file": "ui/pack_settings_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "scrolling_content": { "file": "ui/pack_settings_screen.json", "type": "stack_panel", "children": [ "content_tiering_panel", "generated_form" ] }, "scrolling_content/content_tiering_panel": { "file": "ui/pack_settings_screen.json", "type": "stack_panel", "extend": { "name": "content_tiering_panel", "namespace": "pack_settings" } }, "scrolling_content/generated_form": { "file": "ui/pack_settings_screen.json", "type": "stack_panel", "extend": { "name": "generated_contents", "namespace": "server_form" } }, "content_tiering_panel": { "file": "ui/pack_settings_screen.json", "type": "stack_panel", "children": [ "label_panel", "slider_panel", "incompatible_label_panel" ] }, "content_tiering_panel/label_panel": { "file": "ui/pack_settings_screen.json", "type": "panel", "children": [ "content_tier_label", "unsupported_content_tier_label" ] }, "content_tiering_panel/label_panel/content_tier_label": { "file": "ui/pack_settings_screen.json", "type": "label" }, "content_tiering_panel/label_panel/unsupported_content_tier_label": { "file": "ui/pack_settings_screen.json", "type": "label" }, "content_tiering_panel/slider_panel": { "file": "ui/pack_settings_screen.json", "type": "panel", "children": [ "content_tier_slider" ] }, "content_tiering_panel/slider_panel/content_tier_slider": { "file": "ui/pack_settings_screen.json", "type": "slider", "extend": { "name": "slider", "namespace": "common" } }, "content_tiering_panel/incompatible_label_panel": { "file": "ui/pack_settings_screen.json", "type": "panel", "children": [ "label" ] }, "content_tiering_panel/incompatible_label_panel/label": { "file": "ui/pack_settings_screen.json", "type": "label" } }, "panorama": { "panorama_view": { "file": "ui/panorama_screen.json", "type": "panel", "children": [ "pan_left", "screenshot", "pan_right" ] }, "panorama_view/pan_left": { "file": "ui/panorama_screen.json", "type": "button", "extend": { "name": "pan_left_button", "namespace": "panorama" } }, "panorama_view/screenshot": { "file": "ui/panorama_screen.json", "type": "input_panel", "extend": { "name": "panorama_input_panel", "namespace": "panorama" } }, "panorama_view/pan_right": { "file": "ui/panorama_screen.json", "type": "button", "extend": { "name": "pan_right_button", "namespace": "panorama" } }, "panorama_input_panel": { "file": "ui/panorama_screen.json", "type": "input_panel", "children": [ "image_border" ] }, "panorama_input_panel/image_border": { "file": "ui/panorama_screen.json", "type": "image", "extend": { "name": "square_image_border_white", "namespace": "common" }, "children": [ "panorama_key_art", "progress_loading" ] }, "panorama_input_panel/image_border/panorama_key_art": { "file": "ui/panorama_screen.json", "type": "custom" }, "panorama_input_panel/image_border/progress_loading": { "file": "ui/panorama_screen.json", "type": "panel", "extend": { "name": "progress_loading", "namespace": "common_store" } }, "pan_left_button": { "file": "ui/panorama_screen.json", "type": "button", "extend": { "name": "cycle_pack_left_button", "namespace": "common_store" } }, "pan_right_button": { "file": "ui/panorama_screen.json", "type": "button", "extend": { "name": "cycle_pack_right_button", "namespace": "common_store" } } }, "patch_notes": { "solid_texture": { "file": "ui/patch_notes_screen.json", "type": "image" }, "image_with_background": { "file": "ui/patch_notes_screen.json", "type": "image", "extend": { "name": "solid_texture", "namespace": "patch_notes" }, "children": [ "image" ] }, "image_with_background/image": { "file": "ui/patch_notes_screen.json", "type": "unknown", "children": [ "loading_animation" ] }, "image_with_background/image/loading_animation": { "file": "ui/patch_notes_screen.json", "type": "panel", "extend": { "name": "progress_loading", "namespace": "common_store" } }, "white_image": { "file": "ui/patch_notes_screen.json", "type": "image", "extend": { "name": "solid_texture", "namespace": "patch_notes" } }, "patch_main_image": { "file": "ui/patch_notes_screen.json", "type": "image" }, "store_image": { "file": "ui/patch_notes_screen.json", "type": "image" }, "patch_notes_header_background": { "file": "ui/patch_notes_screen.json", "type": "panel", "children": [ "black_background" ] }, "patch_notes_header_background/black_background": { "file": "ui/patch_notes_screen.json", "type": "image", "children": [ "content" ] }, "patch_notes_header_background/black_background/content": { "file": "ui/patch_notes_screen.json", "type": "unknown" }, "button_label_panel": { "file": "ui/patch_notes_screen.json", "type": "panel", "children": [ "text_label" ] }, "button_label_panel/text_label": { "file": "ui/patch_notes_screen.json", "type": "label" }, "button_content": { "file": "ui/patch_notes_screen.json", "type": "panel", "children": [ "button_label2" ] }, "button_content/button_label2": { "file": "ui/patch_notes_screen.json", "type": "panel", "extend": { "name": "button_label_panel", "namespace": "patch_notes" } }, "patch_image": { "file": "ui/patch_notes_screen.json", "type": "image", "extend": { "name": "image_with_background", "namespace": "patch_notes" } }, "patch_notes_header_content_without_offer": { "file": "ui/patch_notes_screen.json", "type": "panel", "children": [ "patch_image" ] }, "patch_notes_header_content_without_offer/patch_image": { "file": "ui/patch_notes_screen.json", "type": "image", "extend": { "name": "patch_image", "namespace": "patch_notes" } }, "patch_notes_header_content_with_offer": { "file": "ui/patch_notes_screen.json", "type": "stack_panel", "children": [ "patch_image", "padding", "store_item_section" ] }, "patch_notes_header_content_with_offer/patch_image": { "file": "ui/patch_notes_screen.json", "type": "image", "extend": { "name": "patch_image", "namespace": "patch_notes" } }, "patch_notes_header_content_with_offer/padding": { "file": "ui/patch_notes_screen.json", "type": "panel" }, "patch_notes_header_content_with_offer/store_item_section": { "file": "ui/patch_notes_screen.json", "type": "stack_panel", "children": [ "store_image", "padding", "store_button" ] }, "patch_notes_header_content_with_offer/store_item_section/store_image": { "file": "ui/patch_notes_screen.json", "type": "image", "extend": { "name": "image_with_background", "namespace": "patch_notes" } }, "patch_notes_header_content_with_offer/store_item_section/padding": { "file": "ui/patch_notes_screen.json", "type": "panel" }, "patch_notes_header_content_with_offer/store_item_section/store_button": { "file": "ui/patch_notes_screen.json", "type": "panel", "extend": { "name": "store_button", "namespace": "patch_notes" } }, "store_button": { "file": "ui/patch_notes_screen.json", "type": "panel", "children": [ "store_button", "loading_animation" ] }, "store_button/store_button": { "file": "ui/patch_notes_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "store_button/loading_animation": { "file": "ui/patch_notes_screen.json", "type": "button", "extend": { "name": "focus_border", "namespace": "pdp" } }, "patch_notes_header": { "file": "ui/patch_notes_screen.json", "type": "panel", "children": [ "patch_notes_background" ] }, "patch_notes_header/patch_notes_background": { "file": "ui/patch_notes_screen.json", "type": "panel", "extend": { "name": "patch_notes_header_background", "namespace": "patch_notes" } }, "scroll_content": { "file": "ui/patch_notes_screen.json", "type": "stack_panel", "children": [ "padding_0", "patch_notes_header", "padding_1", "tts_label_wrapper" ] }, "scroll_content/padding_0": { "file": "ui/patch_notes_screen.json", "type": "panel" }, "scroll_content/patch_notes_header": { "file": "ui/patch_notes_screen.json", "type": "panel", "extend": { "name": "patch_notes_header", "namespace": "patch_notes" } }, "scroll_content/padding_1": { "file": "ui/patch_notes_screen.json", "type": "panel" }, "scroll_content/tts_label_wrapper": { "file": "ui/patch_notes_screen.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "patch_notes_panel": { "file": "ui/patch_notes_screen.json", "type": "panel", "children": [ "patch_notes_text" ] }, "patch_notes_panel/patch_notes_text": { "file": "ui/patch_notes_screen.json", "type": "label", "children": [ "loading_animation" ] }, "patch_notes_panel/patch_notes_text/loading_animation": { "file": "ui/patch_notes_screen.json", "type": "panel", "extend": { "name": "progress_loading", "namespace": "common_store" } }, "patch_notes_content": { "file": "ui/patch_notes_screen.json", "type": "panel", "children": [ "scrolling_panel" ] }, "patch_notes_content/scrolling_panel": { "file": "ui/patch_notes_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "continue_button": { "file": "ui/patch_notes_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "patch_notes_dialog": { "file": "ui/patch_notes_screen.json", "type": "panel", "extend": { "name": "main_panel_small_title_one_button", "namespace": "common_dialogs" } }, "patch_notes_screen": { "file": "ui/patch_notes_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "sunsetting_button_panel": { "file": "ui/patch_notes_screen.json", "type": "stack_panel", "children": [ "padding_0", "more_info_button", "padding_1", "continue_button", "padding_2", "sunsetting_toggle_panel" ] }, "sunsetting_button_panel/padding_0": { "file": "ui/patch_notes_screen.json", "type": "panel" }, "sunsetting_button_panel/more_info_button": { "file": "ui/patch_notes_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "sunsetting_button_panel/padding_1": { "file": "ui/patch_notes_screen.json", "type": "panel" }, "sunsetting_button_panel/continue_button": { "file": "ui/patch_notes_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "sunsetting_button_panel/padding_2": { "file": "ui/patch_notes_screen.json", "type": "panel" }, "sunsetting_button_panel/sunsetting_toggle_panel": { "file": "ui/patch_notes_screen.json", "type": "toggle", "extend": { "name": "checkbox", "namespace": "common" }, "children": [ "header_description_stack_panel" ] }, "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel": { "file": "ui/patch_notes_screen.json", "type": "stack_panel", "children": [ "checkbox_visuals", "buffer_panel", "another_panel" ] }, "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/checkbox_visuals": { "file": "ui/patch_notes_screen.json", "type": "panel", "extend": { "name": "toggle_visuals", "namespace": "common" } }, "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/buffer_panel": { "file": "ui/patch_notes_screen.json", "type": "panel", "children": [ "label" ] }, "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/buffer_panel/label": { "file": "ui/patch_notes_screen.json", "type": "label" }, "sunsetting_button_panel/sunsetting_toggle_panel/header_description_stack_panel/another_panel": { "file": "ui/patch_notes_screen.json", "type": "panel" }, "sunsetting_content": { "file": "ui/patch_notes_screen.json", "type": "panel", "children": [ "scrolling_panel" ] }, "sunsetting_content/scrolling_panel": { "file": "ui/patch_notes_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "sunsetting_dialog": { "file": "ui/patch_notes_screen.json", "type": "panel", "extend": { "name": "main_panel_small_title_one_button", "namespace": "common_dialogs" } }, "sunsetting_screen": { "file": "ui/patch_notes_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } } }, "pause": { "pause_icon": { "file": "ui/pause_screen.json", "type": "image" }, "feedback_icon": { "file": "ui/pause_screen.json", "type": "image" }, "change_skin_icon": { "file": "ui/pause_screen.json", "type": "image" }, "take_screenshot_icon": { "file": "ui/pause_screen.json", "type": "image" }, "settings_icon": { "file": "ui/pause_screen.json", "type": "image" }, "achievements_icon": { "file": "ui/pause_screen.json", "type": "image" }, "how_to_play_icon": { "file": "ui/pause_screen.json", "type": "image" }, "store_icon": { "file": "ui/pause_screen.json", "type": "image" }, "realms_stories_icon": { "file": "ui/pause_screen.json", "type": "image" }, "alex_icon": { "file": "ui/pause_screen.json", "type": "image" }, "profile_gamerpic": { "file": "ui/pause_screen.json", "type": "custom" }, "button_x": { "file": "ui/pause_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_x_14", "namespace": "common" } }, "dressing_room_controller_button_content": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "button_x", "button_label_panel" ] }, "dressing_room_controller_button_content/button_x": { "file": "ui/pause_screen.json", "type": "stack_panel", "extend": { "name": "button_x", "namespace": "pause" } }, "dressing_room_controller_button_content/button_label_panel": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "button_label_text_left" ] }, "dressing_room_controller_button_content/button_label_panel/button_label_text_left": { "file": "ui/pause_screen.json", "type": "label", "extend": { "name": "controller_button_label", "namespace": "pause" } }, "controller_button_label": { "file": "ui/pause_screen.json", "type": "label", "extend": { "name": "new_ui_binding_button_label", "namespace": "common_buttons" } }, "column_frame": { "file": "ui/pause_screen.json", "type": "panel" }, "dressing_room_button_gamepad": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "light_content_form_fitting_button", "namespace": "common_buttons" } }, "dressing_room_button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "light_text_form_fitting_button", "namespace": "common_buttons" } }, "profile_button_content": { "file": "ui/pause_screen.json", "type": "stack_panel", "children": [ "button_offset_wrapper", "gamerpic_offset_wrapper", "padding_middle", "vertically_central_text", "padding_right" ] }, "profile_button_content/button_offset_wrapper": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "button_x" ] }, "profile_button_content/button_offset_wrapper/button_x": { "file": "ui/pause_screen.json", "type": "stack_panel", "extend": { "name": "button_x", "namespace": "pause" } }, "profile_button_content/gamerpic_offset_wrapper": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "gamerpic_with_border" ] }, "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "gamerpic", "alex_icon", "border_black" ] }, "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/gamerpic": { "file": "ui/pause_screen.json", "type": "custom", "extend": { "name": "profile_gamerpic", "namespace": "pause" } }, "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/alex_icon": { "file": "ui/pause_screen.json", "type": "image", "extend": { "name": "alex_icon", "namespace": "pause" } }, "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/border_black": { "file": "ui/pause_screen.json", "type": "image", "extend": { "name": "focus_border_black", "namespace": "common" } }, "profile_button_content/padding_middle": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "profile_button_content/vertically_central_text": { "file": "ui/pause_screen.json", "type": "stack_panel", "children": [ "top_padding", "profile_button_label" ] }, "profile_button_content/vertically_central_text/top_padding": { "file": "ui/pause_screen.json", "type": "panel" }, "profile_button_content/vertically_central_text/profile_button_label": { "file": "ui/pause_screen.json", "type": "label", "extend": { "name": "new_ui_binding_button_label", "namespace": "common_buttons" } }, "profile_button_content/padding_right": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "profile_button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "light_content_form_fitting_button", "namespace": "common_buttons" } }, "skin_viewer_panel": { "file": "ui/pause_screen.json", "type": "input_panel", "children": [ "paper_doll_panel", "paper_doll_name_tag" ] }, "skin_viewer_panel/paper_doll_panel": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "paper_doll" ] }, "skin_viewer_panel/paper_doll_panel/paper_doll": { "file": "ui/pause_screen.json", "type": "custom" }, "skin_viewer_panel/paper_doll_name_tag": { "file": "ui/pause_screen.json", "type": "custom" }, "skin_panel": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "interior" ] }, "skin_panel/interior": { "file": "ui/pause_screen.json", "type": "stack_panel", "extend": { "name": "skin_panel_interior", "namespace": "pause" } }, "skin_panel_interior": { "file": "ui/pause_screen.json", "type": "stack_panel", "children": [ "offset_panel", "fill_1", "change_profile_panel" ] }, "skin_panel_interior/offset_panel": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "viewer_panel" ] }, "skin_panel_interior/offset_panel/viewer_panel": { "file": "ui/pause_screen.json", "type": "input_panel", "extend": { "name": "skin_viewer_panel", "namespace": "pause" } }, "skin_panel_interior/fill_1": { "file": "ui/pause_screen.json", "type": "panel" }, "skin_panel_interior/change_profile_panel": { "file": "ui/pause_screen.json", "type": "stack_panel", "children": [ "centering_panel_1", "centering_panel_2", "centering_panel_3" ] }, "skin_panel_interior/change_profile_panel/centering_panel_1": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "dressing_room_button" ] }, "skin_panel_interior/change_profile_panel/centering_panel_1/dressing_room_button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "dressing_room_button", "namespace": "pause" } }, "skin_panel_interior/change_profile_panel/centering_panel_2": { "file": "ui/pause_screen.json", "type": "input_panel", "children": [ "dressing_room_button_gamepad" ] }, "skin_panel_interior/change_profile_panel/centering_panel_2/dressing_room_button_gamepad": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "dressing_room_button_gamepad", "namespace": "pause" } }, "skin_panel_interior/change_profile_panel/centering_panel_3": { "file": "ui/pause_screen.json", "type": "input_panel", "children": [ "profile_button" ] }, "skin_panel_interior/change_profile_panel/centering_panel_3/profile_button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "profile_button", "namespace": "pause" } }, "pause_button_template": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "grid_button_template": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "return_to_game_button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "pause_button_template", "namespace": "pause" } }, "realms_stories_button_panel": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "realms_stories_button", "unread_story_count_panel" ] }, "realms_stories_button_panel/realms_stories_button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "realms_stories_button", "namespace": "pause" } }, "realms_stories_button_panel/unread_story_count_panel": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "unread_story_count_panel", "namespace": "pause" } }, "realms_stories_button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "pause_button_template", "namespace": "pause" } }, "unread_story_count_panel": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "text" ] }, "unread_story_count_panel/text": { "file": "ui/pause_screen.json", "type": "label", "children": [ "background" ] }, "unread_story_count_panel/text/background": { "file": "ui/pause_screen.json", "type": "image" }, "store_button_panel": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "store_button", "store_error_button" ] }, "store_button_panel/store_button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "store_button", "namespace": "pause" } }, "store_button_panel/store_error_button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "store_error_button", "namespace": "pause" } }, "store_button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "pause_button_template", "namespace": "pause" } }, "store_error_button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "dynamic_tooltip_notification_panel", "namespace": "common_buttons" } }, "store_error_button_content": { "file": "ui/pause_screen.json", "type": "image", "children": [ "marketplace_button_label" ] }, "store_error_button_content/marketplace_button_label": { "file": "ui/pause_screen.json", "type": "label" }, "settings_button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "pause_button_template", "namespace": "pause" } }, "how_to_play_button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "pause_button_template", "namespace": "pause" } }, "invite_players_button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "grid_button_template", "namespace": "pause" } }, "buy_button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "pause_button_template", "namespace": "pause" } }, "quit_button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "pause_button_template", "namespace": "pause" } }, "feedback_button_primary_panel": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "feedback_button_primary" ] }, "feedback_button_primary_panel/feedback_button_primary": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "feedback_button_primary", "namespace": "pause" } }, "feedback_button_primary": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "pause_button_template", "namespace": "pause" } }, "icon_button_hover_text": { "file": "ui/pause_screen.json", "type": "image", "children": [ "tooltip_text" ] }, "icon_button_hover_text/tooltip_text": { "file": "ui/pause_screen.json", "type": "label" }, "icon_button_tooltip_trigger": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "pressed", "hover" ] }, "icon_button_tooltip_trigger/default": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "icon_button_tooltip_trigger/pressed": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "icon_button_tooltip_trigger/hover": { "file": "ui/pause_screen.json", "type": "image", "extend": { "name": "icon_button_hover_text", "namespace": "pause" } }, "feedback_button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "feedback_icon_button": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "feedback_button", "tooltip_trigger" ] }, "feedback_icon_button/feedback_button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "feedback_button", "namespace": "pause" } }, "feedback_icon_button/tooltip_trigger": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "icon_button_tooltip_trigger", "namespace": "pause" } }, "take_screenshot_gamepad_button_content": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "button_y", "take_screenshot_icon" ] }, "take_screenshot_gamepad_button_content/button_y": { "file": "ui/pause_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_y_14", "namespace": "common" } }, "take_screenshot_gamepad_button_content/take_screenshot_icon": { "file": "ui/pause_screen.json", "type": "image", "extend": { "name": "take_screenshot_icon", "namespace": "pause" } }, "take_screenshot_gamepad_button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "light_content_form_fitting_button", "namespace": "common_buttons" } }, "achievements_button_small": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "how_to_play_button_small": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "how_to_play_button_small_with_tooltip": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "button", "tooltip_trigger" ] }, "how_to_play_button_small_with_tooltip/button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "how_to_play_button_small", "namespace": "pause" } }, "how_to_play_button_small_with_tooltip/tooltip_trigger": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "icon_button_tooltip_trigger", "namespace": "pause" } }, "achievements_button_small_with_tooltip": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "button", "tooltip_trigger" ] }, "achievements_button_small_with_tooltip/button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "achievements_button_small", "namespace": "pause" } }, "achievements_button_small_with_tooltip/tooltip_trigger": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "icon_button_tooltip_trigger", "namespace": "pause" } }, "settings_button_small": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "settings_button_small_with_tooltip": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "button", "tooltip_trigger" ] }, "settings_button_small_with_tooltip/button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "settings_button_small", "namespace": "pause" } }, "settings_button_small_with_tooltip/tooltip_trigger": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "icon_button_tooltip_trigger", "namespace": "pause" } }, "take_screenshot_button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "take_screenshot_button_with_tooltip": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "button", "tooltip_trigger" ] }, "take_screenshot_button_with_tooltip/button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "take_screenshot_button", "namespace": "pause" } }, "take_screenshot_button_with_tooltip/tooltip_trigger": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "icon_button_tooltip_trigger", "namespace": "pause" } }, "take_screenshot_gamepad_button_with_tooltip": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "button", "tooltip_trigger" ] }, "take_screenshot_gamepad_button_with_tooltip/button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "take_screenshot_gamepad_button", "namespace": "pause" } }, "take_screenshot_gamepad_button_with_tooltip/tooltip_trigger": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "icon_button_tooltip_trigger", "namespace": "pause" } }, "store_button_small": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "store_button_small_disabled": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "deactivated_light_content_button", "namespace": "common_buttons" } }, "store_icon_disabled": { "file": "ui/pause_screen.json", "type": "image" }, "store_button_small_with_tooltip": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "enabled_button", "disabled_button", "tooltip_trigger" ] }, "store_button_small_with_tooltip/enabled_button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "store_button_small", "namespace": "pause" } }, "store_button_small_with_tooltip/disabled_button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "store_button_small_disabled", "namespace": "pause" } }, "store_button_small_with_tooltip/tooltip_trigger": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "icon_button_tooltip_trigger", "namespace": "pause" } }, "realms_stories_button_small": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "realms_stories_button_small_with_tooltip": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "button", "tooltip_trigger" ] }, "realms_stories_button_small_with_tooltip/button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "realms_stories_button_small", "namespace": "pause" } }, "realms_stories_button_small_with_tooltip/tooltip_trigger": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "icon_button_tooltip_trigger", "namespace": "pause" } }, "pause_screen": { "file": "ui/pause_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "pause_screen_content": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "pause_screen_main_panels", "skin_panel", "top_right_panel", "gamepad_helpers", "keyboard_helpers", "debug_drawer_button_panel" ] }, "pause_screen_content/pause_screen_main_panels": { "file": "ui/pause_screen.json", "type": "stack_panel", "extend": { "name": "pause_screen_main_panels", "namespace": "pause" } }, "pause_screen_content/skin_panel": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "skin_panel", "namespace": "pause" } }, "pause_screen_content/top_right_panel": { "file": "ui/pause_screen.json", "type": "stack_panel", "extend": { "name": "top_right_panel", "namespace": "pause" } }, "pause_screen_content/gamepad_helpers": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "gamepad_helpers", "namespace": "pause" } }, "pause_screen_content/keyboard_helpers": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "keyboard_helpers", "namespace": "pause" } }, "pause_screen_content/debug_drawer_button_panel": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "debug_drawer_button_panel", "namespace": "pause" } }, "top_right_panel": { "file": "ui/pause_screen.json", "type": "stack_panel", "children": [ "pause_panel", "friendsdrawer_button_panel" ] }, "top_right_panel/pause_panel": { "file": "ui/pause_screen.json", "type": "stack_panel", "extend": { "name": "pause_announcement_panel_grey", "namespace": "pause" } }, "top_right_panel/friendsdrawer_button_panel": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "friendsdrawer_button_panel", "namespace": "pause" } }, "friendsdrawer_button_panel": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "friendsdrawer_button", "friends_drawer_ftue_popup_wrapper" ] }, "friendsdrawer_button_panel/friendsdrawer_button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "button", "namespace": "friendsbutton" } }, "friendsdrawer_button_panel/friends_drawer_ftue_popup_wrapper": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "friends_drawer_ftue_popup" ] }, "friendsdrawer_button_panel/friends_drawer_ftue_popup_wrapper/friends_drawer_ftue_popup": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "friends_drawer_popup", "namespace": "friendsbutton" } }, "pause_screen_main_panels": { "file": "ui/pause_screen.json", "type": "stack_panel", "children": [ "menu" ] }, "pause_screen_main_panels/menu": { "file": "ui/pause_screen.json", "type": "image", "extend": { "name": "left_buttons_panel", "namespace": "pause" } }, "left_buttons_panel": { "file": "ui/pause_screen.json", "type": "image", "extend": { "name": "screen_background", "namespace": "common" }, "children": [ "filler", "trialTime", "the_rest_panel" ] }, "left_buttons_panel/filler": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "filler_panel", "namespace": "pause" } }, "left_buttons_panel/trialTime": { "file": "ui/pause_screen.json", "type": "custom" }, "left_buttons_panel/the_rest_panel": { "file": "ui/pause_screen.json", "type": "stack_panel", "extend": { "name": "the_rest_panel", "namespace": "pause" } }, "smaller_buttons_panel": { "file": "ui/pause_screen.json", "type": "stack_panel", "children": [ "stacked_column", "padding_bottom" ] }, "smaller_buttons_panel/stacked_column": { "file": "ui/pause_screen.json", "type": "stack_panel", "children": [ "fill_1", "side_padding", "small_settings_button", "small_settings_padding", "small_achievements_button", "small_achievements_padding", "small_how_to_play_button", "small_how_to_play_padding", "small_realms_stories_button", "small_realms_stories_padding", "small_store_button", "small_store_padding", "take_screenshot_btn", "screenshot_padding", "fill_3" ] }, "smaller_buttons_panel/stacked_column/fill_1": { "file": "ui/pause_screen.json", "type": "panel" }, "smaller_buttons_panel/stacked_column/side_padding": { "file": "ui/pause_screen.json", "type": "panel" }, "smaller_buttons_panel/stacked_column/small_settings_button": { "file": "ui/pause_screen.json", "type": "input_panel", "children": [ "small_settings_btn" ] }, "smaller_buttons_panel/stacked_column/small_settings_button/small_settings_btn": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "settings_button_small_with_tooltip", "namespace": "pause" } }, "smaller_buttons_panel/stacked_column/small_settings_padding": { "file": "ui/pause_screen.json", "type": "panel" }, "smaller_buttons_panel/stacked_column/small_achievements_button": { "file": "ui/pause_screen.json", "type": "input_panel", "children": [ "small_achievements_btn" ] }, "smaller_buttons_panel/stacked_column/small_achievements_button/small_achievements_btn": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "achievements_button_small_with_tooltip", "namespace": "pause" } }, "smaller_buttons_panel/stacked_column/small_achievements_padding": { "file": "ui/pause_screen.json", "type": "panel" }, "smaller_buttons_panel/stacked_column/small_how_to_play_button": { "file": "ui/pause_screen.json", "type": "input_panel", "children": [ "small_how_to_play_btn" ] }, "smaller_buttons_panel/stacked_column/small_how_to_play_button/small_how_to_play_btn": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "how_to_play_button_small_with_tooltip", "namespace": "pause" } }, "smaller_buttons_panel/stacked_column/small_how_to_play_padding": { "file": "ui/pause_screen.json", "type": "panel" }, "smaller_buttons_panel/stacked_column/small_realms_stories_button": { "file": "ui/pause_screen.json", "type": "input_panel", "children": [ "small_realms_stories_btn" ] }, "smaller_buttons_panel/stacked_column/small_realms_stories_button/small_realms_stories_btn": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "realms_stories_button_small_with_tooltip", "namespace": "pause" } }, "smaller_buttons_panel/stacked_column/small_realms_stories_padding": { "file": "ui/pause_screen.json", "type": "panel" }, "smaller_buttons_panel/stacked_column/small_store_button": { "file": "ui/pause_screen.json", "type": "input_panel", "children": [ "small_store_btn" ] }, "smaller_buttons_panel/stacked_column/small_store_button/small_store_btn": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "store_button_small_with_tooltip", "namespace": "pause" } }, "smaller_buttons_panel/stacked_column/small_store_padding": { "file": "ui/pause_screen.json", "type": "panel" }, "smaller_buttons_panel/stacked_column/take_screenshot_btn": { "file": "ui/pause_screen.json", "type": "input_panel", "children": [ "take_screenshot_button", "take_screenshot_gamepad_button" ] }, "smaller_buttons_panel/stacked_column/take_screenshot_btn/take_screenshot_button": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "take_screenshot_button_with_tooltip", "namespace": "pause" } }, "smaller_buttons_panel/stacked_column/take_screenshot_btn/take_screenshot_gamepad_button": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "take_screenshot_gamepad_button_with_tooltip", "namespace": "pause" } }, "smaller_buttons_panel/stacked_column/screenshot_padding": { "file": "ui/pause_screen.json", "type": "panel" }, "smaller_buttons_panel/stacked_column/fill_3": { "file": "ui/pause_screen.json", "type": "panel" }, "smaller_buttons_panel/padding_bottom": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "social_buttons_panel": { "file": "ui/pause_screen.json", "type": "stack_panel", "children": [ "friendsbutton_panel", "invitebutton_panel" ] }, "social_buttons_panel/friendsbutton_panel": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "friendsdrawer_button", "friends_drawer__ftue_popup" ] }, "social_buttons_panel/friendsbutton_panel/friendsdrawer_button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "button", "namespace": "friendsbutton" } }, "social_buttons_panel/friendsbutton_panel/friends_drawer__ftue_popup": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "friends_drawer_popup", "namespace": "friendsbutton" } }, "social_buttons_panel/invitebutton_panel": { "file": "ui/pause_screen.json", "type": "stack_panel", "children": [ "invite_button", "vertical_padding_2" ] }, "social_buttons_panel/invitebutton_panel/invite_button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "button", "namespace": "iconbutton" } }, "social_buttons_panel/invitebutton_panel/vertical_padding_2": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "vertical_padding", "namespace": "pause" } }, "the_rest_panel": { "file": "ui/pause_screen.json", "type": "stack_panel", "children": [ "fill_1", "pause_menu", "fill_3" ] }, "the_rest_panel/fill_1": { "file": "ui/pause_screen.json", "type": "panel" }, "the_rest_panel/pause_menu": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "menu_the_rest_panel", "namespace": "pause" } }, "the_rest_panel/fill_3": { "file": "ui/pause_screen.json", "type": "panel" }, "paused_text": { "file": "ui/pause_screen.json", "type": "label" }, "green_tag": { "file": "ui/pause_screen.json", "type": "image" }, "paused_text_panel_grey": { "file": "ui/pause_screen.json", "type": "image", "extend": { "name": "screen_background", "namespace": "common" }, "children": [ "pause" ] }, "paused_text_panel_grey/pause": { "file": "ui/pause_screen.json", "type": "label", "extend": { "name": "paused_text", "namespace": "pause" } }, "paused_text_panel_green": { "file": "ui/pause_screen.json", "type": "image", "extend": { "name": "green_tag", "namespace": "pause" }, "children": [ "horizontal_stack" ] }, "paused_text_panel_green/horizontal_stack": { "file": "ui/pause_screen.json", "type": "stack_panel", "children": [ "pause_icon", "fill_1", "pause" ] }, "paused_text_panel_green/horizontal_stack/pause_icon": { "file": "ui/pause_screen.json", "type": "image", "extend": { "name": "pause_icon", "namespace": "pause" } }, "paused_text_panel_green/horizontal_stack/fill_1": { "file": "ui/pause_screen.json", "type": "panel" }, "paused_text_panel_green/horizontal_stack/pause": { "file": "ui/pause_screen.json", "type": "label", "extend": { "name": "paused_text", "namespace": "pause" } }, "transparent_background": { "file": "ui/pause_screen.json", "type": "image" }, "non_transparent_background": { "file": "ui/pause_screen.json", "type": "image" }, "menu_the_rest_panel": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "menu_button_control" ] }, "menu_the_rest_panel/menu_button_control": { "file": "ui/pause_screen.json", "type": "image", "extend": { "name": "menu_button_control", "namespace": "pause" } }, "menu_button_control": { "file": "ui/pause_screen.json", "type": "image", "extend": { "name": "transparent_background", "namespace": "pause" }, "children": [ "menu_background" ] }, "menu_button_control/menu_background": { "file": "ui/pause_screen.json", "type": "image", "extend": { "name": "menu_background", "namespace": "pause" } }, "pause_announcement_panel_grey": { "file": "ui/pause_screen.json", "type": "stack_panel", "children": [ "horizontal_stack" ] }, "pause_announcement_panel_grey/horizontal_stack": { "file": "ui/pause_screen.json", "type": "stack_panel", "children": [ "fill_1", "pause_text", "fill_2" ] }, "pause_announcement_panel_grey/horizontal_stack/fill_1": { "file": "ui/pause_screen.json", "type": "panel" }, "pause_announcement_panel_grey/horizontal_stack/pause_text": { "file": "ui/pause_screen.json", "type": "image", "extend": { "name": "paused_text_panel_grey", "namespace": "pause" } }, "pause_announcement_panel_grey/horizontal_stack/fill_2": { "file": "ui/pause_screen.json", "type": "panel" }, "pause_announcement_panel_green": { "file": "ui/pause_screen.json", "type": "stack_panel", "children": [ "horizontal_stack" ] }, "pause_announcement_panel_green/horizontal_stack": { "file": "ui/pause_screen.json", "type": "stack_panel", "children": [ "fill_1", "pause_text", "fill_2" ] }, "pause_announcement_panel_green/horizontal_stack/fill_1": { "file": "ui/pause_screen.json", "type": "panel" }, "pause_announcement_panel_green/horizontal_stack/pause_text": { "file": "ui/pause_screen.json", "type": "image", "extend": { "name": "paused_text_panel_green", "namespace": "pause" } }, "pause_announcement_panel_green/horizontal_stack/fill_2": { "file": "ui/pause_screen.json", "type": "panel" }, "menu_background": { "file": "ui/pause_screen.json", "type": "image", "extend": { "name": "transparent_background", "namespace": "pause" }, "children": [ "button_panel" ] }, "menu_background/button_panel": { "file": "ui/pause_screen.json", "type": "stack_panel", "children": [ "title_image", "fill_1", "return_to_game_button", "return", "settings_button", "settings", "feedback_button_primary_panel", "feedback", "realms_stories_button_panel", "realms_stories", "buy_button", "buy", "store_button_panel", "store_button_panel_padding", "quit_button", "smaller_buttons", "pause_panel" ] }, "menu_background/button_panel/title_image": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "image" ] }, "menu_background/button_panel/title_image/image": { "file": "ui/pause_screen.json", "type": "image", "extend": { "name": "title_image", "namespace": "common_art" } }, "menu_background/button_panel/fill_1": { "file": "ui/pause_screen.json", "type": "panel" }, "menu_background/button_panel/return_to_game_button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "return_to_game_button", "namespace": "pause" } }, "menu_background/button_panel/return": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "vertical_padding", "namespace": "pause" } }, "menu_background/button_panel/settings_button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "settings_button", "namespace": "pause" } }, "menu_background/button_panel/settings": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "vertical_padding", "namespace": "pause" } }, "menu_background/button_panel/feedback_button_primary_panel": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "feedback_button_primary_panel", "namespace": "pause" } }, "menu_background/button_panel/feedback": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "vertical_padding", "namespace": "pause" } }, "menu_background/button_panel/realms_stories_button_panel": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "realms_stories_button_panel", "namespace": "pause" } }, "menu_background/button_panel/realms_stories": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "vertical_padding", "namespace": "pause" } }, "menu_background/button_panel/buy_button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "buy_button", "namespace": "pause" } }, "menu_background/button_panel/buy": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "vertical_padding", "namespace": "pause" } }, "menu_background/button_panel/store_button_panel": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "store_button_panel", "namespace": "pause" } }, "menu_background/button_panel/store_button_panel_padding": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "vertical_padding", "namespace": "pause" } }, "menu_background/button_panel/quit_button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "quit_button", "namespace": "pause" } }, "menu_background/button_panel/smaller_buttons": { "file": "ui/pause_screen.json", "type": "stack_panel", "extend": { "name": "smaller_buttons_panel", "namespace": "pause" } }, "menu_background/button_panel/pause_panel": { "file": "ui/pause_screen.json", "type": "stack_panel", "extend": { "name": "pause_announcement_panel_green", "namespace": "pause" } }, "info_panel_content_list": { "file": "ui/pause_screen.json", "type": "stack_panel", "children": [ "player_list_scrolling_panel", "vertical_padding" ] }, "info_panel_content_list/player_list_scrolling_panel": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "player_list_scrolling_panel", "namespace": "pause" } }, "info_panel_content_list/vertical_padding": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "vertical_padding", "namespace": "pause" } }, "info_panel_background": { "file": "ui/pause_screen.json", "type": "image", "extend": { "name": "transparent_background", "namespace": "pause" } }, "info_panel": { "file": "ui/pause_screen.json", "type": "image", "extend": { "name": "pause_screen_border", "namespace": "pause" }, "children": [ "info_panel_background", "info_panel_list" ] }, "info_panel/info_panel_background": { "file": "ui/pause_screen.json", "type": "image", "extend": { "name": "info_panel_background", "namespace": "pause" } }, "info_panel/info_panel_list": { "file": "ui/pause_screen.json", "type": "stack_panel", "extend": { "name": "info_panel_content_list", "namespace": "pause" } }, "player_panel_background": { "file": "ui/pause_screen.json", "type": "image", "extend": { "name": "transparent_background", "namespace": "pause" }, "children": [ "player_list_scrolling_panel" ] }, "player_panel_background/player_list_scrolling_panel": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "player_list_scrolling_panel", "namespace": "pause" } }, "player_list": { "file": "ui/pause_screen.json", "type": "stack_panel", "children": [ "vertical_padding_0", "social_buttons_panel", "players_label", "vertical_padding_4", "players_grid_panel", "vertical_padding_5", "invite_players_button_panel", "vertical_padding_6", "disconnected_from_multiplayer_label_panel", "vertical_padding_7" ] }, "player_list/vertical_padding_0": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "vertical_padding", "namespace": "pause" } }, "player_list/social_buttons_panel": { "file": "ui/pause_screen.json", "type": "stack_panel", "extend": { "name": "social_buttons_panel", "namespace": "pause" } }, "player_list/players_label": { "file": "ui/pause_screen.json", "type": "label", "extend": { "name": "players_label", "namespace": "pause" } }, "player_list/vertical_padding_4": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "vertical_padding", "namespace": "pause" } }, "player_list/players_grid_panel": { "file": "ui/pause_screen.json", "type": "grid", "extend": { "name": "players_grid", "namespace": "pause" } }, "player_list/vertical_padding_5": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "vertical_padding", "namespace": "pause" } }, "player_list/invite_players_button_panel": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "invite_players_button_panel", "namespace": "pause" } }, "player_list/vertical_padding_6": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "vertical_padding", "namespace": "pause" } }, "player_list/disconnected_from_multiplayer_label_panel": { "file": "ui/pause_screen.json", "type": "stack_panel", "extend": { "name": "disconnected_from_multiplayer_label_panel", "namespace": "pause" } }, "player_list/vertical_padding_7": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "vertical_padding", "namespace": "pause" } }, "player_lists": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "normal_list", "scoreboard_list" ] }, "player_lists/normal_list": { "file": "ui/pause_screen.json", "type": "stack_panel", "extend": { "name": "player_list", "namespace": "pause" } }, "player_lists/scoreboard_list": { "file": "ui/pause_screen.json", "type": "stack_panel", "extend": { "name": "scoreboard_player_list", "namespace": "scoreboard" } }, "player_list_scrolling_panel": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "disconnected_label": { "file": "ui/pause_screen.json", "type": "label" }, "disconnected_from_multiplayer_label_panel": { "file": "ui/pause_screen.json", "type": "stack_panel", "children": [ "disconnected_from_xbox_live_label", "disconnected_from_third_party_label", "disconnected_from_adhoc_label", "disconnected_from_crossplatform_multiplayer", "disconnected_from_multiplayer" ] }, "disconnected_from_multiplayer_label_panel/disconnected_from_xbox_live_label": { "file": "ui/pause_screen.json", "type": "label", "extend": { "name": "disconnected_label", "namespace": "pause" } }, "disconnected_from_multiplayer_label_panel/disconnected_from_third_party_label": { "file": "ui/pause_screen.json", "type": "label", "extend": { "name": "disconnected_label", "namespace": "pause" } }, "disconnected_from_multiplayer_label_panel/disconnected_from_adhoc_label": { "file": "ui/pause_screen.json", "type": "label", "extend": { "name": "disconnected_label", "namespace": "pause" } }, "disconnected_from_multiplayer_label_panel/disconnected_from_crossplatform_multiplayer": { "file": "ui/pause_screen.json", "type": "label", "extend": { "name": "disconnected_label", "namespace": "pause" } }, "disconnected_from_multiplayer_label_panel/disconnected_from_multiplayer": { "file": "ui/pause_screen.json", "type": "label", "extend": { "name": "disconnected_label", "namespace": "pause" } }, "invite_players_button_panel": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "invite_players_button" ] }, "invite_players_button_panel/invite_players_button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "invite_players_button", "namespace": "pause" } }, "ip_label": { "file": "ui/pause_screen.json", "type": "label" }, "players_label": { "file": "ui/pause_screen.json", "type": "label" }, "players_grid": { "file": "ui/pause_screen.json", "type": "grid" }, "player_grid_item": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "player_grid_item_content" ] }, "player_grid_item/player_grid_item_content": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "player_grid_item_content", "namespace": "pause" } }, "player_grid_item_content": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "player_button_panel", "player_permission_button_panel" ] }, "player_grid_item_content/player_button_panel": { "file": "ui/pause_screen.json", "type": "stack_panel", "children": [ "player_button_banner", "player_permission_button_padding" ] }, "player_grid_item_content/player_button_panel/player_button_banner": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "player_button", "player_banner" ] }, "player_grid_item_content/player_button_panel/player_button_banner/player_button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "player_button", "namespace": "pause" } }, "player_grid_item_content/player_button_panel/player_button_banner/player_banner": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "player_banner", "namespace": "pause" } }, "player_grid_item_content/player_button_panel/player_permission_button_padding": { "file": "ui/pause_screen.json", "type": "panel" }, "player_grid_item_content/player_permission_button_panel": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "player_permission_button" ] }, "player_grid_item_content/player_permission_button_panel/player_permission_button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "player_permission_button", "namespace": "pause" } }, "player_permission_button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "dark_content_button", "namespace": "common_buttons" } }, "player_permission_button_content": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "permission_icon_image" ] }, "player_permission_button_content/permission_icon_image": { "file": "ui/pause_screen.json", "type": "image" }, "vertical_padding": { "file": "ui/pause_screen.json", "type": "panel" }, "horizontal_padding": { "file": "ui/pause_screen.json", "type": "panel" }, "player_button_content": { "file": "ui/pause_screen.json", "type": "stack_panel", "children": [ "player_pic_panel", "player_gamertag", "platform_icon" ] }, "player_button_content/player_pic_panel": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "player_pic_panel", "namespace": "pause" } }, "player_button_content/player_gamertag": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "gametag_wrapper", "namespace": "pause" } }, "player_button_content/platform_icon": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "platform_icon_panel", "namespace": "pause" } }, "player_button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "dark_content_button", "namespace": "common_buttons" } }, "player_banner": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "player_grid_banner", "namespace": "pause" } }, "player_pic_panel": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "player_gamer_pic", "player_local_icon" ] }, "player_pic_panel/player_gamer_pic": { "file": "ui/pause_screen.json", "type": "image", "extend": { "name": "player_gamer_pic", "namespace": "pause" } }, "player_pic_panel/player_local_icon": { "file": "ui/pause_screen.json", "type": "image", "extend": { "name": "player_local_icon", "namespace": "pause" } }, "player_local_icon": { "file": "ui/pause_screen.json", "type": "image" }, "player_gamer_pic": { "file": "ui/pause_screen.json", "type": "image", "children": [ "player_panel_black_border" ] }, "player_gamer_pic/player_panel_black_border": { "file": "ui/pause_screen.json", "type": "image", "extend": { "name": "pause_screen_border", "namespace": "pause" } }, "gametag_wrapper": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "gamertag" ] }, "gametag_wrapper/gamertag": { "file": "ui/pause_screen.json", "type": "label", "extend": { "name": "player_gamertag", "namespace": "pause" } }, "platform_icon_panel": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "platform_icon" ] }, "platform_icon_panel/platform_icon": { "file": "ui/pause_screen.json", "type": "image", "extend": { "name": "platform_icon", "namespace": "pause" } }, "player_gamertag": { "file": "ui/pause_screen.json", "type": "label" }, "platform_icon": { "file": "ui/pause_screen.json", "type": "image" }, "player_grid_banner_no_focus": { "file": "ui/pause_screen.json", "type": "image" }, "player_grid_banner": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "player_grid_banner_no_focus", "focus_border_button" ] }, "player_grid_banner/player_grid_banner_no_focus": { "file": "ui/pause_screen.json", "type": "image", "extend": { "name": "player_grid_banner_no_focus", "namespace": "pause" }, "children": [ "player_button_content" ] }, "player_grid_banner/player_grid_banner_no_focus/player_button_content": { "file": "ui/pause_screen.json", "type": "stack_panel", "extend": { "name": "player_button_content", "namespace": "pause" } }, "player_grid_banner/focus_border_button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "focus_border_button", "namespace": "pause" } }, "focus_border_button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed" ] }, "focus_border_button/default": { "file": "ui/pause_screen.json", "type": "panel", "extend": { "name": "filler_panel", "namespace": "pause" } }, "focus_border_button/hover": { "file": "ui/pause_screen.json", "type": "image", "extend": { "name": "focus_border", "namespace": "pause" } }, "focus_border_button/pressed": { "file": "ui/pause_screen.json", "type": "image", "extend": { "name": "focus_border", "namespace": "pause" } }, "focus_border": { "file": "ui/pause_screen.json", "type": "image" }, "pause_screen_border": { "file": "ui/pause_screen.json", "type": "image" }, "filler_panel": { "file": "ui/pause_screen.json", "type": "panel" }, "gamepad_helpers": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "gamepad_helper_y" ] }, "gamepad_helpers/gamepad_helper_y": { "file": "ui/pause_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_y", "namespace": "common" } }, "keyboard_helpers": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "keyboard_helper_keys" ] }, "keyboard_helpers/keyboard_helper_keys": { "file": "ui/pause_screen.json", "type": "stack_panel", "extend": { "name": "keyboard_helper_keys", "namespace": "common" } }, "debug_drawer_button_content": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "button_label_panel" ] }, "debug_drawer_button_content/button_label_panel": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "button_label_text_left" ] }, "debug_drawer_button_content/button_label_panel/button_label_text_left": { "file": "ui/pause_screen.json", "type": "label", "extend": { "name": "controller_button_label", "namespace": "pause" } }, "debug_drawer_button_panel": { "file": "ui/pause_screen.json", "type": "panel", "children": [ "debug_drawer_button_input" ] }, "debug_drawer_button_panel/debug_drawer_button_input": { "file": "ui/pause_screen.json", "type": "input_panel", "children": [ "debug_drawer_button" ] }, "debug_drawer_button_panel/debug_drawer_button_input/debug_drawer_button": { "file": "ui/pause_screen.json", "type": "button", "extend": { "name": "light_text_form_fitting_button", "namespace": "common_buttons" } } }, "pdp": { "download_progress": { "file": "ui/pdp_screen.json", "type": "image", "children": [ "stacker" ] }, "download_progress/stacker": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "sizer_text", "sizer_bar" ] }, "download_progress/stacker/sizer_text": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "download_progress_text" ] }, "download_progress/stacker/sizer_text/download_progress_text": { "file": "ui/pdp_screen.json", "type": "label" }, "download_progress/stacker/sizer_bar": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "download_progress_bar" ] }, "download_progress/stacker/sizer_bar/download_progress_bar": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "store_progress_bar_icon", "namespace": "common_store" } }, "summary_box_button_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "buttons_panel", "download_buttons_panel", "focus_border" ] }, "summary_box_button_panel/buttons_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "smooth_buttons_panel", "namespace": "pdp" } }, "summary_box_button_panel/download_buttons_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "download_buttons_panel", "namespace": "pdp" } }, "summary_box_button_panel/focus_border": { "file": "ui/pdp_screen.json", "type": "button", "extend": { "name": "focus_border", "namespace": "pdp" } }, "interaction_button_content": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "line1_panel" ] }, "interaction_button_content/line1_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "upsell_text" ] }, "interaction_button_content/line1_panel/upsell_text": { "file": "ui/pdp_screen.json", "type": "label" }, "interaction_button_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "content_action_button", "progress_bar", "focus_border" ] }, "interaction_button_panel/content_action_button": { "file": "ui/pdp_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "interaction_button_panel/progress_bar": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "download_progress", "namespace": "pdp" } }, "interaction_button_panel/focus_border": { "file": "ui/pdp_screen.json", "type": "button", "extend": { "name": "focus_border", "namespace": "pdp" } }, "download_progress_small": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "banner_fill", "namespace": "purchase_common" }, "children": [ "stacker" ] }, "download_progress_small/stacker": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "sizer_text", "sizer_bar" ] }, "download_progress_small/stacker/sizer_text": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "download_progress_text" ] }, "download_progress_small/stacker/sizer_text/download_progress_text": { "file": "ui/pdp_screen.json", "type": "label" }, "download_progress_small/stacker/sizer_bar": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "download_progress_bar" ] }, "download_progress_small/stacker/sizer_bar/download_progress_bar": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "store_progress_bar_icon", "namespace": "common_store" } }, "progress_loading_anim": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "progress_loading", "namespace": "common_store" } }, "focus_border": { "file": "ui/pdp_screen.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed" ] }, "focus_border/default": { "file": "ui/pdp_screen.json", "type": "image", "children": [ "loading_anim" ] }, "focus_border/default/loading_anim": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "progress_loading_anim", "namespace": "pdp" } }, "focus_border/hover": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "focus_border", "namespace": "common_buttons" }, "children": [ "loading_anim" ] }, "focus_border/hover/loading_anim": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "progress_loading_anim", "namespace": "pdp" } }, "focus_border/pressed": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "focus_border", "namespace": "common_buttons" }, "children": [ "loading_anim" ] }, "focus_border/pressed/loading_anim": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "progress_loading_anim", "namespace": "pdp" } }, "purchase_button_base": { "file": "ui/pdp_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "deactivated_purchase_button_base": { "file": "ui/pdp_screen.json", "type": "button", "extend": { "name": "deactivated_light_content_button", "namespace": "common_buttons" } }, "download_buttons_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "progress_panel" ] }, "download_buttons_panel/progress_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "progress_bar" ] }, "download_buttons_panel/progress_panel/progress_bar": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "download_progress_small", "namespace": "pdp" } }, "smooth_purchase_buttons_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "activated_purchase_buttons_panel", "deactivated_purchase_buttons_panel" ] }, "smooth_purchase_buttons_panel/activated_purchase_buttons_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "activated_smooth_purchase_buttons_panel", "namespace": "pdp" } }, "smooth_purchase_buttons_panel/deactivated_purchase_buttons_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "deactivated_smooth_purchase_buttons_panel", "namespace": "pdp" } }, "smooth_buttons_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "purchase_buttons_panel", "interact_filling_button", "interact_exit_world_filling_button" ] }, "smooth_buttons_panel/purchase_buttons_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "smooth_purchase_buttons_panel", "namespace": "pdp" } }, "smooth_buttons_panel/interact_filling_button": { "file": "ui/pdp_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "smooth_buttons_panel/interact_exit_world_filling_button": { "file": "ui/pdp_screen.json", "type": "button", "extend": { "name": "deactivated_light_content_button", "namespace": "common_buttons" } }, "disabled_interact_label_formfitting": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "info_icon", "info_icon_pad", "interact_label_panel", "pad" ] }, "disabled_interact_label_formfitting/info_icon": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "info_bulb_image_small_centered", "namespace": "pdp" } }, "disabled_interact_label_formfitting/info_icon_pad": { "file": "ui/pdp_screen.json", "type": "panel" }, "disabled_interact_label_formfitting/interact_label_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "interact_label_text_left" ] }, "disabled_interact_label_formfitting/interact_label_panel/interact_label_text_left": { "file": "ui/pdp_screen.json", "type": "label", "extend": { "name": "interact_label_text", "namespace": "pdp" } }, "disabled_interact_label_formfitting/pad": { "file": "ui/pdp_screen.json", "type": "panel" }, "interact_label_text": { "file": "ui/pdp_screen.json", "type": "label" }, "activated_smooth_purchase_buttons_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "purchase_coins_button_panel", "pad_h1", "purchase_currency_button_panel" ] }, "activated_smooth_purchase_buttons_panel/purchase_coins_button_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "smooth_purchase_with_coins_button" ] }, "activated_smooth_purchase_buttons_panel/purchase_coins_button_panel/smooth_purchase_with_coins_button": { "file": "ui/pdp_screen.json", "type": "button", "extend": { "name": "purchase_button_base", "namespace": "pdp" } }, "activated_smooth_purchase_buttons_panel/pad_h1": { "file": "ui/pdp_screen.json", "type": "panel" }, "activated_smooth_purchase_buttons_panel/purchase_currency_button_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "purchase_with_currency_button" ] }, "activated_smooth_purchase_buttons_panel/purchase_currency_button_panel/purchase_with_currency_button": { "file": "ui/pdp_screen.json", "type": "button", "extend": { "name": "purchase_button_base", "namespace": "pdp" } }, "deactivated_purchase_hover_popup": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "dynamic_tooltip_left", "namespace": "common" } }, "deactivated_smooth_purchase_buttons_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "fake_deactivated_smooth_purchase_with_coins_button", "pad_h1", "purchase_currency_button_panel" ] }, "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button": { "file": "ui/pdp_screen.json", "type": "image", "children": [ "deactivated_purchase_hover_popup", "content" ] }, "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button/deactivated_purchase_hover_popup": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "deactivated_purchase_hover_popup", "namespace": "pdp" } }, "deactivated_smooth_purchase_buttons_panel/fake_deactivated_smooth_purchase_with_coins_button/content": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "disabled_smooth_coin_purchase_label_formfitting", "namespace": "pdp" } }, "deactivated_smooth_purchase_buttons_panel/pad_h1": { "file": "ui/pdp_screen.json", "type": "panel" }, "deactivated_smooth_purchase_buttons_panel/purchase_currency_button_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "deactivated_purchase_with_currency_button" ] }, "deactivated_smooth_purchase_buttons_panel/purchase_currency_button_panel/deactivated_purchase_with_currency_button": { "file": "ui/pdp_screen.json", "type": "button", "extend": { "name": "deactivated_purchase_button_base", "namespace": "pdp" } }, "smooth_save_share_button_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "pad_0", "share_button", "pad_1", "save_button" ] }, "smooth_save_share_button_panel/pad_0": { "file": "ui/pdp_screen.json", "type": "panel" }, "smooth_save_share_button_panel/share_button": { "file": "ui/pdp_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "smooth_save_share_button_panel/pad_1": { "file": "ui/pdp_screen.json", "type": "panel" }, "smooth_save_share_button_panel/save_button": { "file": "ui/pdp_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "currency_purchase_label": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "currency_purchase_label_text" ] }, "currency_purchase_label/currency_purchase_label_text": { "file": "ui/pdp_screen.json", "type": "label" }, "coin_image": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "coin_icon", "namespace": "common_store" } }, "smooth_currency_purchase_label": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "currency_purchase_label_text" ] }, "smooth_currency_purchase_label/currency_purchase_label_text": { "file": "ui/pdp_screen.json", "type": "label" }, "discount_label": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "label_panel", "icon_panel" ] }, "discount_label/label_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "label" ] }, "discount_label/label_panel/label": { "file": "ui/pdp_screen.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "discount_label/icon_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "icon" ] }, "discount_label/icon_panel/icon": { "file": "ui/pdp_screen.json", "type": "image" }, "coin_purchase_label_text": { "file": "ui/pdp_screen.json", "type": "label" }, "smooth_coin_purchase_label_formfitting": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "sales_banner_offset_panel", "markdown_panel", "fill_pad_left", "left_coin_image_offset_panel", "coin_purchase_label_panel", "pad", "right_coin_image_offset_panel", "fill_pad_right" ] }, "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "sales_banner_panel" ] }, "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "markdown_banner" ] }, "smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel/markdown_banner": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "markdown_background", "namespace": "common_store" } }, "smooth_coin_purchase_label_formfitting/markdown_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "markdown_label" ] }, "smooth_coin_purchase_label_formfitting/markdown_panel/markdown_label": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "price_markdown_panel", "namespace": "pdp" } }, "smooth_coin_purchase_label_formfitting/fill_pad_left": { "file": "ui/pdp_screen.json", "type": "panel" }, "smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "coin" ] }, "smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel/coin": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "coin_image", "namespace": "pdp" } }, "smooth_coin_purchase_label_formfitting/coin_purchase_label_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "coin_purchase_label_text_left" ] }, "smooth_coin_purchase_label_formfitting/coin_purchase_label_panel/coin_purchase_label_text_left": { "file": "ui/pdp_screen.json", "type": "label", "extend": { "name": "coin_purchase_label_text", "namespace": "pdp" } }, "smooth_coin_purchase_label_formfitting/pad": { "file": "ui/pdp_screen.json", "type": "panel" }, "smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "coin" ] }, "smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel/coin": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "coin_image", "namespace": "pdp" } }, "smooth_coin_purchase_label_formfitting/fill_pad_right": { "file": "ui/pdp_screen.json", "type": "panel" }, "disabled_smooth_coin_purchase_label_formfitting": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "sales_banner_offset_panel", "markdown_panel", "fill_pad_left", "info_icon_input_panel", "left_coin_image_offset_panel", "info_icon_pad", "coin_purchase_label_panel", "pad", "right_coin_image_offset_panel", "fill_pad_right" ] }, "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "sales_banner_panel" ] }, "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "markdown_banner" ] }, "disabled_smooth_coin_purchase_label_formfitting/sales_banner_offset_panel/sales_banner_panel/markdown_banner": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "markdown_background", "namespace": "common_store" } }, "disabled_smooth_coin_purchase_label_formfitting/markdown_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "markdown_label" ] }, "disabled_smooth_coin_purchase_label_formfitting/markdown_panel/markdown_label": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "price_markdown_panel", "namespace": "pdp" } }, "disabled_smooth_coin_purchase_label_formfitting/fill_pad_left": { "file": "ui/pdp_screen.json", "type": "panel" }, "disabled_smooth_coin_purchase_label_formfitting/info_icon_input_panel": { "file": "ui/pdp_screen.json", "type": "input_panel", "children": [ "info_bulb" ] }, "disabled_smooth_coin_purchase_label_formfitting/info_icon_input_panel/info_bulb": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "info_bulb_image_small_centered", "namespace": "pdp" } }, "disabled_smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "coin" ] }, "disabled_smooth_coin_purchase_label_formfitting/left_coin_image_offset_panel/coin": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "coin_image", "namespace": "pdp" } }, "disabled_smooth_coin_purchase_label_formfitting/info_icon_pad": { "file": "ui/pdp_screen.json", "type": "panel" }, "disabled_smooth_coin_purchase_label_formfitting/coin_purchase_label_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "coin_purchase_label_text_left" ] }, "disabled_smooth_coin_purchase_label_formfitting/coin_purchase_label_panel/coin_purchase_label_text_left": { "file": "ui/pdp_screen.json", "type": "label", "extend": { "name": "coin_purchase_label_text", "namespace": "pdp" } }, "disabled_smooth_coin_purchase_label_formfitting/pad": { "file": "ui/pdp_screen.json", "type": "panel" }, "disabled_smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "coin" ] }, "disabled_smooth_coin_purchase_label_formfitting/right_coin_image_offset_panel/coin": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "coin_image", "namespace": "pdp" } }, "disabled_smooth_coin_purchase_label_formfitting/fill_pad_right": { "file": "ui/pdp_screen.json", "type": "panel" }, "share_icon": { "file": "ui/pdp_screen.json", "type": "image" }, "share_label": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "share_image_offset_panel" ] }, "share_label/share_image_offset_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "link_share" ] }, "share_label/share_image_offset_panel/link_share": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "share_icon", "namespace": "pdp" } }, "save_label_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "heart_image", "progress_loading" ] }, "save_label_panel/heart_image": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "save_label", "namespace": "pdp" } }, "save_label_panel/progress_loading": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "progress_loading_spinner", "namespace": "common_store" } }, "save_label": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "save_image_offset_panel" ] }, "save_label/save_image_offset_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "full_heart", "empty_heart" ] }, "save_label/save_image_offset_panel/full_heart": { "file": "ui/pdp_screen.json", "type": "image" }, "save_label/save_image_offset_panel/empty_heart": { "file": "ui/pdp_screen.json", "type": "image" }, "large_button_coin_purchase_label": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "markdown_banner_filler_panel", "center_markdown_panel", "sales_padding_0", "price_markdown_panel", "sales_padding_1", "left_coin_image_offset_panel", "coin_purchase_label_panel", "right_coin_image_offset_panel", "fill_padding_1" ] }, "large_button_coin_purchase_label/markdown_banner_filler_panel": { "file": "ui/pdp_screen.json", "type": "panel" }, "large_button_coin_purchase_label/center_markdown_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "markdown_banner" ] }, "large_button_coin_purchase_label/center_markdown_panel/markdown_banner": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "markdown_background", "namespace": "common_store" } }, "large_button_coin_purchase_label/sales_padding_0": { "file": "ui/pdp_screen.json", "type": "panel" }, "large_button_coin_purchase_label/price_markdown_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "price_markdown_label" ] }, "large_button_coin_purchase_label/price_markdown_panel/price_markdown_label": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "price_markdown_panel", "namespace": "pdp" } }, "large_button_coin_purchase_label/sales_padding_1": { "file": "ui/pdp_screen.json", "type": "panel" }, "large_button_coin_purchase_label/left_coin_image_offset_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "coin" ] }, "large_button_coin_purchase_label/left_coin_image_offset_panel/coin": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "coin_image", "namespace": "pdp" } }, "large_button_coin_purchase_label/coin_purchase_label_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "coin_purchase_label_text" ] }, "large_button_coin_purchase_label/coin_purchase_label_panel/coin_purchase_label_text": { "file": "ui/pdp_screen.json", "type": "label", "extend": { "name": "coin_purchase_label_text", "namespace": "pdp" } }, "large_button_coin_purchase_label/right_coin_image_offset_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "coin" ] }, "large_button_coin_purchase_label/right_coin_image_offset_panel/coin": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "coin_image", "namespace": "pdp" } }, "large_button_coin_purchase_label/fill_padding_1": { "file": "ui/pdp_screen.json", "type": "panel" }, "price_markdown_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "offer_price" ] }, "price_markdown_panel/offer_price": { "file": "ui/pdp_screen.json", "type": "label", "children": [ "text_strike_through" ] }, "price_markdown_panel/offer_price/text_strike_through": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "text_strike_through", "namespace": "common_store" } }, "vertical_padding_2px": { "file": "ui/pdp_screen.json", "type": "panel" }, "vertical_padding_4px": { "file": "ui/pdp_screen.json", "type": "panel" }, "vertical_padding_fill": { "file": "ui/pdp_screen.json", "type": "panel" }, "horizontal_padding_2px": { "file": "ui/pdp_screen.json", "type": "panel" }, "horizontal_padding_4px": { "file": "ui/pdp_screen.json", "type": "panel" }, "horizontal_padding_8px": { "file": "ui/pdp_screen.json", "type": "panel" }, "horizontal_padding_fill": { "file": "ui/pdp_screen.json", "type": "panel" }, "empty_content_panel": { "file": "ui/pdp_screen.json", "type": "panel" }, "section_header": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "header_label" ] }, "section_header/header_label": { "file": "ui/pdp_screen.json", "type": "label" }, "content_section_bg": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "pad", "section_header", "bg_and_content" ] }, "content_section_bg/pad": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "vertical_padding_2px", "namespace": "pdp" } }, "content_section_bg/section_header": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "section_header", "namespace": "pdp" } }, "content_section_bg/bg_and_content": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "bg" ] }, "content_section_bg/bg_and_content/bg": { "file": "ui/pdp_screen.json", "type": "image" }, "content_section_boarder_bg": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "pad", "bg_and_content", "pad_3", "divider_3" ] }, "content_section_boarder_bg/pad": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "vertical_padding_2px", "namespace": "pdp" } }, "content_section_boarder_bg/bg_and_content": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "bg" ] }, "content_section_boarder_bg/bg_and_content/bg": { "file": "ui/pdp_screen.json", "type": "image", "children": [ "inner" ] }, "content_section_boarder_bg/bg_and_content/bg/inner": { "file": "ui/pdp_screen.json", "type": "image" }, "content_section_boarder_bg/pad_3": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "vertical_padding_2px", "namespace": "pdp" } }, "content_section_boarder_bg/divider_3": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "horizontal_divider", "namespace": "common" } }, "summary_factory_object": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "summary", "navigation_tab_section", "update_notification_section" ] }, "summary_factory_object/summary": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "summary_content_panel", "namespace": "pdp" } }, "summary_factory_object/navigation_tab_section": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "nav_button_grid_panel", "namespace": "store_layout" } }, "summary_factory_object/update_notification_section": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "content_section_boarder_bg", "namespace": "pdp" } }, "screenshot_carousel_factory_object": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "resource_pack_content_panel", "pad_3", "divider_3" ] }, "screenshot_carousel_factory_object/resource_pack_content_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "content_section_bg", "namespace": "pdp" } }, "screenshot_carousel_factory_object/pad_3": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "vertical_padding_2px", "namespace": "pdp" } }, "screenshot_carousel_factory_object/divider_3": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "horizontal_divider", "namespace": "common" } }, "image_gallery_factory_object": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "resource_pack_content_panel" ] }, "image_gallery_factory_object/resource_pack_content_panel": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "image_row_content", "namespace": "pdp" } }, "left_text_right_image_factory_object": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "resource_pack_content_panel" ] }, "left_text_right_image_factory_object/resource_pack_content_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "image_row_left_text_content", "namespace": "pdp" } }, "right_text_left_image_factory_object": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "resource_pack_content_panel" ] }, "right_text_left_image_factory_object/resource_pack_content_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "image_row_right_text_content", "namespace": "pdp" } }, "skin_pack_section_factory_object": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "skin_pack_section_factory_content" ] }, "skin_pack_section_factory_object/skin_pack_section_factory_content": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "skin_pack_content_panel", "pad_3", "divider_3" ] }, "skin_pack_section_factory_object/skin_pack_section_factory_content/skin_pack_content_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "skin_pack_content_panel", "namespace": "pdp" } }, "skin_pack_section_factory_object/skin_pack_section_factory_content/pad_3": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "vertical_padding_2px", "namespace": "pdp" } }, "skin_pack_section_factory_object/skin_pack_section_factory_content/divider_3": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "horizontal_divider", "namespace": "common" } }, "panorama_view_factory_object": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "panorama_view_content_panel", "pad_3", "divider_3" ] }, "panorama_view_factory_object/panorama_view_content_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "content_section_bg", "namespace": "pdp" } }, "panorama_view_factory_object/pad_3": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "vertical_padding_2px", "namespace": "pdp" } }, "panorama_view_factory_object/divider_3": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "horizontal_divider", "namespace": "common" } }, "ratings_factory_object": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "rating_factory_object_content" ] }, "ratings_factory_object/rating_factory_object_content": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "ratings_content_panel", "namespace": "pdp" } }, "focus_container_button": { "file": "ui/pdp_screen.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default" ] }, "focus_container_button/default": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "bundle_summary_factory_object": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "bundle_summary_factory_object_content" ] }, "bundle_summary_factory_object/bundle_summary_factory_object_content": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "bundle_summary_section_panel", "namespace": "pdp" } }, "pdp_cycle_offer_row_content": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "store_row_panel", "pad_3", "divider_3" ] }, "pdp_cycle_offer_row_content/store_row_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "store_row", "namespace": "common_store" } }, "pdp_cycle_offer_row_content/pad_3": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "vertical_padding_2px", "namespace": "pdp" } }, "pdp_cycle_offer_row_content/divider_3": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "horizontal_divider", "namespace": "common" } }, "pdp_cycle_offer_row_section": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "store_section_panel", "namespace": "common_store" } }, "scrolling_content_stack": { "file": "ui/pdp_screen.json", "type": "stack_panel" }, "warning_image": { "file": "ui/pdp_screen.json", "type": "image" }, "scaling_rating": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "empty_rating" ] }, "scaling_rating/empty_rating": { "file": "ui/pdp_screen.json", "type": "image", "children": [ "full_rating" ] }, "scaling_rating/empty_rating/full_rating": { "file": "ui/pdp_screen.json", "type": "image" }, "scaling_rating_new": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "empty_rating" ] }, "scaling_rating_new/empty_rating": { "file": "ui/pdp_screen.json", "type": "image", "children": [ "full_rating" ] }, "scaling_rating_new/empty_rating/full_rating": { "file": "ui/pdp_screen.json", "type": "image" }, "chart_section": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "stack" ] }, "chart_section/stack": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "star_number_panel", "star_panel", "pad_0", "bar_panel", "pad_1", "percent" ] }, "chart_section/stack/star_number_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "star_number" ] }, "chart_section/stack/star_number_panel/star_number": { "file": "ui/pdp_screen.json", "type": "label" }, "chart_section/stack/star_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "star_img" ] }, "chart_section/stack/star_panel/star_img": { "file": "ui/pdp_screen.json", "type": "image" }, "chart_section/stack/pad_0": { "file": "ui/pdp_screen.json", "type": "panel" }, "chart_section/stack/bar_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "bar" ] }, "chart_section/stack/bar_panel/bar": { "file": "ui/pdp_screen.json", "type": "image", "children": [ "full_bar" ] }, "chart_section/stack/bar_panel/bar/full_bar": { "file": "ui/pdp_screen.json", "type": "image" }, "chart_section/stack/pad_1": { "file": "ui/pdp_screen.json", "type": "panel" }, "chart_section/stack/percent": { "file": "ui/pdp_screen.json", "type": "label" }, "ratings_chart": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "5_star", "4_star", "3_star", "2_star", "1_star" ] }, "ratings_chart/5_star": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "chart_section", "namespace": "pdp" } }, "ratings_chart/4_star": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "chart_section", "namespace": "pdp" } }, "ratings_chart/3_star": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "chart_section", "namespace": "pdp" } }, "ratings_chart/2_star": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "chart_section", "namespace": "pdp" } }, "ratings_chart/1_star": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "chart_section", "namespace": "pdp" } }, "ratings_chart_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "ratings_chart_content" ] }, "ratings_chart_panel/ratings_chart_content": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "pad_0", "title", "pad_1", "rating_panel", "rating_text_panel", "count_panel", "pad_2", "chart", "pad_3" ] }, "ratings_chart_panel/ratings_chart_content/pad_0": { "file": "ui/pdp_screen.json", "type": "panel" }, "ratings_chart_panel/ratings_chart_content/title": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "title_text" ] }, "ratings_chart_panel/ratings_chart_content/title/title_text": { "file": "ui/pdp_screen.json", "type": "label" }, "ratings_chart_panel/ratings_chart_content/pad_1": { "file": "ui/pdp_screen.json", "type": "panel" }, "ratings_chart_panel/ratings_chart_content/rating_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "rating" ] }, "ratings_chart_panel/ratings_chart_content/rating_panel/rating": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "rating_bar", "pad" ] }, "ratings_chart_panel/ratings_chart_content/rating_panel/rating/rating_bar": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "scaling_rating_new", "namespace": "pdp" } }, "ratings_chart_panel/ratings_chart_content/rating_panel/rating/pad": { "file": "ui/pdp_screen.json", "type": "panel" }, "ratings_chart_panel/ratings_chart_content/rating_text_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "rating_text" ] }, "ratings_chart_panel/ratings_chart_content/rating_text_panel/rating_text": { "file": "ui/pdp_screen.json", "type": "label" }, "ratings_chart_panel/ratings_chart_content/count_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "count" ] }, "ratings_chart_panel/ratings_chart_content/count_panel/count": { "file": "ui/pdp_screen.json", "type": "label" }, "ratings_chart_panel/ratings_chart_content/pad_2": { "file": "ui/pdp_screen.json", "type": "panel" }, "ratings_chart_panel/ratings_chart_content/chart": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "ratings_chart", "namespace": "pdp" } }, "ratings_chart_panel/ratings_chart_content/pad_3": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "vertical_padding_2px", "namespace": "pdp" } }, "ratings_box": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "ratings_panel_focus_point", "ratings_full_panel", "divider" ] }, "ratings_box/ratings_panel_focus_point": { "file": "ui/pdp_screen.json", "type": "button", "extend": { "name": "focus_container_button", "namespace": "pdp" } }, "ratings_box/ratings_full_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "ratings_chart_and_button" ] }, "ratings_box/ratings_full_panel/ratings_chart_and_button": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "chart", "pad_1" ] }, "ratings_box/ratings_full_panel/ratings_chart_and_button/chart": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "ratings_chart_panel", "namespace": "pdp" } }, "ratings_box/ratings_full_panel/ratings_chart_and_button/pad_1": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "vertical_padding_2px", "namespace": "pdp" } }, "ratings_box/divider": { "file": "ui/pdp_screen.json", "type": "image" }, "user_rating_star_button": { "file": "ui/pdp_screen.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover" ] }, "user_rating_star_button/default": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "default_user_rating_star" ] }, "user_rating_star_button/default/default_user_rating_star": { "file": "ui/pdp_screen.json", "type": "image" }, "user_rating_star_button/hover": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "hover_user_rating_star" ] }, "user_rating_star_button/hover/hover_user_rating_star": { "file": "ui/pdp_screen.json", "type": "image" }, "user_rating_star_list_grid": { "file": "ui/pdp_screen.json", "type": "grid" }, "ratings_interact_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "title_text", "pad_vertical_4px", "rating_stars_and_button_panel", "pad_vertical_8px", "fill_pad", "send_feedback_button", "pad_1" ] }, "ratings_interact_panel/title_text": { "file": "ui/pdp_screen.json", "type": "label" }, "ratings_interact_panel/pad_vertical_4px": { "file": "ui/pdp_screen.json", "type": "panel" }, "ratings_interact_panel/rating_stars_and_button_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "fill_stars", "pad_3_percent", "submit_button_panel" ] }, "ratings_interact_panel/rating_stars_and_button_panel/fill_stars": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "rating_buttons" ] }, "ratings_interact_panel/rating_stars_and_button_panel/fill_stars/rating_buttons": { "file": "ui/pdp_screen.json", "type": "grid", "extend": { "name": "user_rating_star_list_grid", "namespace": "pdp" } }, "ratings_interact_panel/rating_stars_and_button_panel/pad_3_percent": { "file": "ui/pdp_screen.json", "type": "panel" }, "ratings_interact_panel/rating_stars_and_button_panel/submit_button_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "submit" ] }, "ratings_interact_panel/rating_stars_and_button_panel/submit_button_panel/submit": { "file": "ui/pdp_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "ratings_interact_panel/pad_vertical_8px": { "file": "ui/pdp_screen.json", "type": "panel" }, "ratings_interact_panel/fill_pad": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "text" ] }, "ratings_interact_panel/fill_pad/text": { "file": "ui/pdp_screen.json", "type": "label" }, "ratings_interact_panel/send_feedback_button": { "file": "ui/pdp_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "ratings_interact_panel/pad_1": { "file": "ui/pdp_screen.json", "type": "panel" }, "ratings_info_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "ratings", "ratings_right" ] }, "ratings_info_panel/ratings": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "ratings_box", "namespace": "pdp" } }, "ratings_info_panel/ratings_right": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "ratings_interact_panel" ] }, "ratings_info_panel/ratings_right/ratings_interact_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "ratings_interact_panel", "namespace": "pdp" } }, "ratings_content_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "content_section_boarder_bg", "namespace": "pdp" } }, "panorama_view_content": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "panorama_panel" ] }, "panorama_view_content/panorama_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "panorama_content" ] }, "panorama_view_content/panorama_panel/panorama_content": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "panorama_view", "namespace": "panorama" } }, "skins": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "skins_panel", "namespace": "skin_pack_purchase" } }, "skin_pack_content_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "content_section_bg", "namespace": "pdp" } }, "resource_pack_content": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "screenshots" ] }, "resource_pack_content/screenshots": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "screenshot_carousel", "namespace": "pdp_screenshots" } }, "image_row_left_text_content": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "buffer_panel_front", "text_section", "buffer_panel_mid", "screenshots_single", "buffer_panel_back" ] }, "image_row_left_text_content/buffer_panel_front": { "file": "ui/pdp_screen.json", "type": "panel" }, "image_row_left_text_content/text_section": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "left_header", "left_text", "buffer_panel_bottom" ] }, "image_row_left_text_content/text_section/left_header": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "section_header", "namespace": "pdp" } }, "image_row_left_text_content/text_section/left_text": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "sdl_text_row_component_panel", "namespace": "sdl_text_row" } }, "image_row_left_text_content/text_section/buffer_panel_bottom": { "file": "ui/pdp_screen.json", "type": "panel" }, "image_row_left_text_content/buffer_panel_mid": { "file": "ui/pdp_screen.json", "type": "panel" }, "image_row_left_text_content/screenshots_single": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "double_image", "namespace": "sdl_image_row" } }, "image_row_left_text_content/buffer_panel_back": { "file": "ui/pdp_screen.json", "type": "panel" }, "image_row_right_text_content": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "buffer_panel_front", "screenshots_single", "buffer_panel_mid", "text_section", "buffer_panel_back" ] }, "image_row_right_text_content/buffer_panel_front": { "file": "ui/pdp_screen.json", "type": "panel" }, "image_row_right_text_content/screenshots_single": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "double_image", "namespace": "sdl_image_row" } }, "image_row_right_text_content/buffer_panel_mid": { "file": "ui/pdp_screen.json", "type": "panel" }, "image_row_right_text_content/text_section": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "right_header", "right_text", "buffer_panel_bottom" ] }, "image_row_right_text_content/text_section/right_header": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "section_header", "namespace": "pdp" } }, "image_row_right_text_content/text_section/right_text": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "sdl_text_row_component_panel", "namespace": "sdl_text_row" } }, "image_row_right_text_content/text_section/buffer_panel_bottom": { "file": "ui/pdp_screen.json", "type": "panel" }, "image_row_right_text_content/buffer_panel_back": { "file": "ui/pdp_screen.json", "type": "panel" }, "image_row_content": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "screenshots_triple" ] }, "image_row_content/screenshots_triple": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "image_row_factory", "namespace": "sdl_image_row" } }, "play_button": { "file": "ui/pdp_screen.json", "type": "image" }, "csb_expiration": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "background" ] }, "csb_expiration/background": { "file": "ui/pdp_screen.json", "type": "image", "children": [ "content_stack_panel" ] }, "csb_expiration/background/content_stack_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "icon_wrapper", "text_wrapper" ] }, "csb_expiration/background/content_stack_panel/icon_wrapper": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "icon" ] }, "csb_expiration/background/content_stack_panel/icon_wrapper/icon": { "file": "ui/pdp_screen.json", "type": "image" }, "csb_expiration/background/content_stack_panel/text_wrapper": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "text" ] }, "csb_expiration/background/content_stack_panel/text_wrapper/text": { "file": "ui/pdp_screen.json", "type": "label" }, "summary_content_left_side": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "pad_left", "full_content" ] }, "summary_content_left_side/pad_left": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "horizontal_padding_4px", "namespace": "pdp" } }, "summary_content_left_side/full_content": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "top", "bottom" ] }, "summary_content_left_side/full_content/top": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "image", "divider", "info" ] }, "summary_content_left_side/full_content/top/image": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "key_image" ] }, "summary_content_left_side/full_content/top/image/key_image": { "file": "ui/pdp_screen.json", "type": "image", "children": [ "border", "csb_expiration_banner", "video_overlay_button", "rtx_label" ] }, "summary_content_left_side/full_content/top/image/key_image/border": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "focus_border_white", "namespace": "common" } }, "summary_content_left_side/full_content/top/image/key_image/csb_expiration_banner": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "csb_expiration", "namespace": "pdp" } }, "summary_content_left_side/full_content/top/image/key_image/video_overlay_button": { "file": "ui/pdp_screen.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "mask", "default", "hover" ] }, "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/mask": { "file": "ui/pdp_screen.json", "type": "image" }, "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/default": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "play_button", "namespace": "pdp" } }, "summary_content_left_side/full_content/top/image/key_image/video_overlay_button/hover": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "play_button", "namespace": "pdp" } }, "summary_content_left_side/full_content/top/image/key_image/rtx_label": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "rtx_label", "namespace": "common_store" } }, "summary_content_left_side/full_content/top/divider": { "file": "ui/pdp_screen.json", "type": "panel" }, "summary_content_left_side/full_content/top/info": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "summary_title_and_author_panel", "pad_fill", "info_buttons_factory" ] }, "summary_content_left_side/full_content/top/info/summary_title_and_author_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "title_and_author_panel", "namespace": "pdp" } }, "summary_content_left_side/full_content/top/info/pad_fill": { "file": "ui/pdp_screen.json", "type": "panel" }, "summary_content_left_side/full_content/top/info/info_buttons_factory": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "info_buttons_factory", "namespace": "pdp" } }, "summary_content_left_side/full_content/bottom": { "file": "ui/pdp_screen.json", "type": "panel" }, "info_buttons_factory": { "file": "ui/pdp_screen.json", "type": "stack_panel" }, "ratings_summary": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "ratings_display" ] }, "ratings_summary/ratings_display": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "rating", "summary_rating_button" ] }, "ratings_summary/ratings_display/rating": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "scaling_rating", "namespace": "pdp" } }, "ratings_summary/ratings_display/summary_rating_button": { "file": "ui/pdp_screen.json", "type": "button", "extend": { "name": "underline_button", "namespace": "common_buttons" } }, "offer_title_label": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "single_line_label", "namespace": "common" } }, "title_and_author_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "title_panel", "author_button_panel" ] }, "title_and_author_panel/title_panel": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "offer_title_label", "namespace": "pdp" } }, "title_and_author_panel/author_button_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "summary_author_button" ] }, "title_and_author_panel/author_button_panel/summary_author_button": { "file": "ui/pdp_screen.json", "type": "button", "extend": { "name": "underline_button", "namespace": "common_buttons" } }, "description_label": { "file": "ui/pdp_screen.json", "type": "label" }, "warning_stack_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "warning_icon", "pad_0", "warning_text_panel" ] }, "warning_stack_panel/warning_icon": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "warning_image", "namespace": "pdp" } }, "warning_stack_panel/pad_0": { "file": "ui/pdp_screen.json", "type": "panel" }, "warning_stack_panel/warning_text_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "warning_text" ] }, "warning_stack_panel/warning_text_panel/warning_text": { "file": "ui/pdp_screen.json", "type": "label" }, "warning_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "background", "content_stack_panel" ] }, "warning_panel/background": { "file": "ui/pdp_screen.json", "type": "image" }, "warning_panel/content_stack_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "warning_stack_panel", "namespace": "pdp" } }, "description_toggle_show_button_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "description_bottom_right_button_border", "description_toggle_show_button", "warning_icon" ] }, "description_toggle_show_button_panel/description_bottom_right_button_border": { "file": "ui/pdp_screen.json", "type": "image" }, "description_toggle_show_button_panel/description_toggle_show_button": { "file": "ui/pdp_screen.json", "type": "button", "extend": { "name": "light_text_form_fitting_button", "namespace": "common_buttons" } }, "description_toggle_show_button_panel/warning_icon": { "file": "ui/pdp_screen.json", "type": "image" }, "vibrant_visuals_underline_button": { "file": "ui/pdp_screen.json", "type": "button", "extend": { "name": "underline_button", "namespace": "common_buttons" } }, "vibrant_visuals_hover_popup": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "dynamic_tooltip_below", "namespace": "common" } }, "vibrant_visuals_badge_display": { "file": "ui/pdp_screen.json", "type": "image", "children": [ "vibrant_visuals_underline_button" ] }, "vibrant_visuals_badge_display/vibrant_visuals_underline_button": { "file": "ui/pdp_screen.json", "type": "button", "extend": { "name": "vibrant_visuals_underline_button", "namespace": "pdp" } }, "vibrant_visuals_badge_and_hover": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "vibrant_visuals_hover_popup", "vibrant_visuals_badge_display" ] }, "vibrant_visuals_badge_and_hover/vibrant_visuals_hover_popup": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "vibrant_visuals_hover_popup", "namespace": "pdp" } }, "vibrant_visuals_badge_and_hover/vibrant_visuals_badge_display": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "vibrant_visuals_badge_display", "namespace": "pdp" } }, "glyph_icon": { "file": "ui/pdp_screen.json", "type": "image" }, "glyph_count_label": { "file": "ui/pdp_screen.json", "type": "label" }, "glyph_count_underline_button": { "file": "ui/pdp_screen.json", "type": "button", "extend": { "name": "underline_button", "namespace": "common_buttons" } }, "glyph_count_hover_underline_button_panel": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "glyph_hover_popup", "glyph_count_underline_button" ] }, "glyph_count_hover_underline_button_panel/glyph_hover_popup": { "file": "ui/pdp_screen.json", "type": "unknown" }, "glyph_count_hover_underline_button_panel/glyph_count_underline_button": { "file": "ui/pdp_screen.json", "type": "button", "extend": { "name": "glyph_count_underline_button", "namespace": "pdp" } }, "glyph_icon_with_count": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "horizontal_stack_panel", "namespace": "common" }, "children": [ "glyph_icon", "horizontal_padding", "item_glyph_count_panel_label" ] }, "glyph_icon_with_count/glyph_icon": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "glyph_icon", "namespace": "pdp" } }, "glyph_icon_with_count/horizontal_padding": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "glyph_icon_with_count/item_glyph_count_panel_label": { "file": "ui/pdp_screen.json", "type": "unknown" }, "glyph_panel_hover_popup": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "dynamic_tooltip_popup_with_image_and_text", "namespace": "common" } }, "glyph_panel_mashup_hover_popup": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "dynamic_custom_tooltip_below", "namespace": "common" } }, "mashup_glyph_tooltip_content": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "vertical_stack_panel", "namespace": "common" }, "children": [ "mashup_text_row", "mashup_line_two", "basic_vertical_glyphs" ] }, "mashup_glyph_tooltip_content/mashup_text_row": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "horizontal_stack_panel", "namespace": "common" }, "children": [ "info_icon", "mashup_line_one" ] }, "mashup_glyph_tooltip_content/mashup_text_row/info_icon": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "info_bulb_image_small_centered", "namespace": "pdp" } }, "mashup_glyph_tooltip_content/mashup_text_row/mashup_line_one": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "single_line_label", "namespace": "common" } }, "mashup_glyph_tooltip_content/mashup_line_two": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "single_line_label", "namespace": "common" } }, "mashup_glyph_tooltip_content/basic_vertical_glyphs": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "info_buttons_factory", "namespace": "pdp" } }, "glyph_section_mashup": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "glyph_icon_with_count", "namespace": "pdp" } }, "glyph_section_skin": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "glyph_icon_with_count", "namespace": "pdp" } }, "glyph_section_resource_pack": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "glyph_icon_with_count", "namespace": "pdp" } }, "glyph_section_world": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "glyph_icon_with_count", "namespace": "pdp" } }, "glyph_section_addon": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "glyph_icon_with_count", "namespace": "pdp" } }, "summary_text_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "top_interact_button_stack", "apply_to_realm_panel", "in_csb_panel", "progress_loading_anim_panel", "pad_0", "disclaimer_panel", "pad_1", "save_share_button_panel", "pad_2" ] }, "summary_text_panel/top_interact_button_stack": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "top_interact" ] }, "summary_text_panel/top_interact_button_stack/top_interact": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "summary_box_button_panel", "namespace": "pdp" } }, "summary_text_panel/apply_to_realm_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "apply_to_realm_button" ] }, "summary_text_panel/apply_to_realm_panel/apply_to_realm_button": { "file": "ui/pdp_screen.json", "type": "button", "extend": { "name": "apply_to_realm_button", "namespace": "pdp" } }, "summary_text_panel/in_csb_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "in_csb_button" ] }, "summary_text_panel/in_csb_panel/in_csb_button": { "file": "ui/pdp_screen.json", "type": "button", "extend": { "name": "in_csb_button", "namespace": "pdp" } }, "summary_text_panel/progress_loading_anim_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "progress_loading_anim" ] }, "summary_text_panel/progress_loading_anim_panel/progress_loading_anim": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "progress_loading", "namespace": "common_store" } }, "summary_text_panel/pad_0": { "file": "ui/pdp_screen.json", "type": "panel" }, "summary_text_panel/disclaimer_panel": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "disclaimer_panel", "namespace": "common_store" } }, "summary_text_panel/pad_1": { "file": "ui/pdp_screen.json", "type": "panel" }, "summary_text_panel/save_share_button_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "smooth_save_share_button_panel", "namespace": "pdp" } }, "summary_text_panel/pad_2": { "file": "ui/pdp_screen.json", "type": "panel" }, "info_bulb_image": { "file": "ui/pdp_screen.json", "type": "image" }, "info_bulb_image_small": { "file": "ui/pdp_screen.json", "type": "image" }, "info_bulb_image_small_centered": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "top_filler", "middle_panel", "bottom_filler" ] }, "info_bulb_image_small_centered/top_filler": { "file": "ui/pdp_screen.json", "type": "panel" }, "info_bulb_image_small_centered/middle_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "front_filler", "info_bulb", "bottom_filler" ] }, "info_bulb_image_small_centered/middle_panel/front_filler": { "file": "ui/pdp_screen.json", "type": "panel" }, "info_bulb_image_small_centered/middle_panel/info_bulb": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "info_bulb_image_small", "namespace": "pdp" } }, "info_bulb_image_small_centered/middle_panel/bottom_filler": { "file": "ui/pdp_screen.json", "type": "panel" }, "info_bulb_image_small_centered/bottom_filler": { "file": "ui/pdp_screen.json", "type": "panel" }, "realms_incompatable_content": { "file": "ui/pdp_screen.json", "type": "image", "children": [ "realms_content_stack_panel" ] }, "realms_incompatable_content/realms_content_stack_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "info_bulb_image", "padding", "realms_incompatable_button_label" ] }, "realms_incompatable_content/realms_content_stack_panel/info_bulb_image": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "info_bulb_image_small", "namespace": "pdp" } }, "realms_incompatable_content/realms_content_stack_panel/padding": { "file": "ui/pdp_screen.json", "type": "panel" }, "realms_incompatable_content/realms_content_stack_panel/realms_incompatable_button_label": { "file": "ui/pdp_screen.json", "type": "label" }, "apply_to_realm_button": { "file": "ui/pdp_screen.json", "type": "button", "extend": { "name": "dark_text_button", "namespace": "common_buttons" } }, "in_csb_button": { "file": "ui/pdp_screen.json", "type": "button", "extend": { "name": "csb_gold_text_button", "namespace": "common_csb" } }, "read_more_button": { "file": "ui/pdp_screen.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed" ] }, "read_more_button/default": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "read_more_button/hover": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "focus_border_white", "namespace": "common" } }, "read_more_button/pressed": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "focus_border_white", "namespace": "common" } }, "summary_content_right_side": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "pad_middle", "text", "entitlements_progress_panel", "pad_right" ] }, "summary_content_right_side/pad_middle": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "horizontal_padding_2px", "namespace": "pdp" } }, "summary_content_right_side/text": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "summary_text_panel", "namespace": "pdp" } }, "summary_content_right_side/entitlements_progress_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "progress_loading" ] }, "summary_content_right_side/entitlements_progress_panel/progress_loading": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "progress_loading_spinner", "namespace": "common_store" } }, "summary_content_right_side/pad_right": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "horizontal_padding_4px", "namespace": "pdp" } }, "summary_content_whole_stack_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "left_side", "divider_panel", "right_side" ] }, "summary_content_whole_stack_panel/left_side": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "summary_content_left_side", "namespace": "pdp" } }, "summary_content_whole_stack_panel/divider_panel": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "vertical_divider", "namespace": "common" } }, "summary_content_whole_stack_panel/right_side": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "summary_content_right_side", "namespace": "pdp" } }, "summary_content_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "pad_top", "summary_content_whole_stack", "pad_3", "divider_3" ] }, "summary_content_panel/pad_top": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "vertical_padding_4px", "namespace": "pdp" } }, "summary_content_panel/summary_content_whole_stack": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "summary_content_whole_stack_panel", "namespace": "pdp" } }, "summary_content_panel/pad_3": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "vertical_padding_2px", "namespace": "pdp" } }, "summary_content_panel/divider_3": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "horizontal_divider", "namespace": "common" } }, "appearance_status_image_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "limited_status_image", "no_restrictions_status_image" ] }, "appearance_status_image_panel/limited_status_image": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "info_bulb_image_small", "namespace": "pdp" } }, "appearance_status_image_panel/no_restrictions_status_image": { "file": "ui/pdp_screen.json", "type": "image" }, "appearance_status_content": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "appearance_status_image_panel", "last_update_panel" ] }, "appearance_status_content/appearance_status_image_panel": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "appearance_status_image_panel", "namespace": "pdp" } }, "appearance_status_content/last_update_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "last_update_label" ] }, "appearance_status_content/last_update_panel/last_update_label": { "file": "ui/pdp_screen.json", "type": "label" }, "dynamic_tooltip_notification_panel": { "file": "ui/pdp_screen.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed" ] }, "dynamic_tooltip_notification_panel/default": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "dynamic_tooltip_notification_panel/hover": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "dynamic_tooltip_popup_with_image_and_text", "namespace": "common" } }, "dynamic_tooltip_notification_panel/pressed": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "dynamic_tooltip_popup_with_image_and_text", "namespace": "common" } }, "update_notification_content": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "dynamic_tooltip_notification_panel", "status" ] }, "update_notification_content/dynamic_tooltip_notification_panel": { "file": "ui/pdp_screen.json", "type": "button", "extend": { "name": "dynamic_tooltip_notification_panel", "namespace": "pdp" } }, "update_notification_content/status": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "appearance_status_content", "namespace": "pdp" } }, "update_notification_stack_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "pad_0", "content", "pad_1" ] }, "update_notification_stack_panel/pad_0": { "file": "ui/pdp_screen.json", "type": "panel" }, "update_notification_stack_panel/content": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "update_notification_content", "namespace": "pdp" } }, "update_notification_stack_panel/pad_1": { "file": "ui/pdp_screen.json", "type": "panel" }, "tag_base": { "file": "ui/pdp_screen.json", "type": "image" }, "tag_button_panel": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "tag", "namespace": "pdp" }, "children": [ "button" ] }, "tag_button_panel/button": { "file": "ui/pdp_screen.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed", "label" ] }, "tag_button_panel/button/default": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "tag_base", "namespace": "pdp" } }, "tag_button_panel/button/hover": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "tag_base", "namespace": "pdp" } }, "tag_button_panel/button/pressed": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "tag_base", "namespace": "pdp" } }, "tag_button_panel/button/label": { "file": "ui/pdp_screen.json", "type": "label" }, "tag_row_factory": { "file": "ui/pdp_screen.json", "type": "stack_panel" }, "player_count_button_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "player_count_button", "comma" ] }, "player_count_button_panel/player_count_button": { "file": "ui/pdp_screen.json", "type": "button", "extend": { "name": "underline_button", "namespace": "common_buttons" } }, "player_count_button_panel/comma": { "file": "ui/pdp_screen.json", "type": "label" }, "player_count_factory": { "file": "ui/pdp_screen.json", "type": "stack_panel" }, "language_button_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "language_button", "comma" ] }, "language_button_panel/language_button": { "file": "ui/pdp_screen.json", "type": "button", "extend": { "name": "underline_button", "namespace": "common_buttons" } }, "language_button_panel/comma": { "file": "ui/pdp_screen.json", "type": "label" }, "language_row_factory": { "file": "ui/pdp_screen.json", "type": "stack_panel" }, "description_inner_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "description_stack_panel" ] }, "description_inner_panel/description_stack_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "pad_0", "title_stack_panel", "description_text_panel_full", "description_text_panel_collapsed", "pad_1", "divider_panel", "pad_2", "tags_panel", "genre_panel", "players_panel", "languages_panel", "pad_3", "show_less_button_panel" ] }, "description_inner_panel/description_stack_panel/pad_0": { "file": "ui/pdp_screen.json", "type": "panel" }, "description_inner_panel/description_stack_panel/title_stack_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "title_text_panel", "pad_0", "divider_panel", "pad_1" ] }, "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "title_label_icon", "pad_0", "title_panel" ] }, "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_label_icon": { "file": "ui/pdp_screen.json", "type": "image" }, "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/pad_0": { "file": "ui/pdp_screen.json", "type": "panel" }, "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "title_label" ] }, "description_inner_panel/description_stack_panel/title_stack_panel/title_text_panel/title_panel/title_label": { "file": "ui/pdp_screen.json", "type": "label" }, "description_inner_panel/description_stack_panel/title_stack_panel/pad_0": { "file": "ui/pdp_screen.json", "type": "panel" }, "description_inner_panel/description_stack_panel/title_stack_panel/divider_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "divider" ] }, "description_inner_panel/description_stack_panel/title_stack_panel/divider_panel/divider": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "horizontal_divider", "namespace": "common" } }, "description_inner_panel/description_stack_panel/title_stack_panel/pad_1": { "file": "ui/pdp_screen.json", "type": "panel" }, "description_inner_panel/description_stack_panel/description_text_panel_full": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "description_text_expanded", "button_panel" ] }, "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "description_label", "pad_0", "warning_panel" ] }, "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/description_label": { "file": "ui/pdp_screen.json", "type": "label", "extend": { "name": "description_label", "namespace": "pdp" } }, "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/pad_0": { "file": "ui/pdp_screen.json", "type": "panel" }, "description_inner_panel/description_stack_panel/description_text_panel_full/description_text_expanded/warning_panel": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "warning_panel", "namespace": "pdp" } }, "description_inner_panel/description_stack_panel/description_text_panel_full/button_panel": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "description_toggle_show_button_panel", "namespace": "pdp" } }, "description_inner_panel/description_stack_panel/description_text_panel_collapsed": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "description_text_collapsed", "collapsed_show_more_panel" ] }, "description_inner_panel/description_stack_panel/description_text_panel_collapsed/description_text_collapsed": { "file": "ui/pdp_screen.json", "type": "label", "extend": { "name": "description_label", "namespace": "pdp" } }, "description_inner_panel/description_stack_panel/description_text_panel_collapsed/collapsed_show_more_panel": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "description_toggle_show_button_panel", "namespace": "pdp" } }, "description_inner_panel/description_stack_panel/pad_1": { "file": "ui/pdp_screen.json", "type": "panel" }, "description_inner_panel/description_stack_panel/divider_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "divider" ] }, "description_inner_panel/description_stack_panel/divider_panel/divider": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "horizontal_divider", "namespace": "common" } }, "description_inner_panel/description_stack_panel/pad_2": { "file": "ui/pdp_screen.json", "type": "panel" }, "description_inner_panel/description_stack_panel/tags_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "label_text_panel", "pad", "tag_factory_panel" ] }, "description_inner_panel/description_stack_panel/tags_panel/label_text_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "label_text" ] }, "description_inner_panel/description_stack_panel/tags_panel/label_text_panel/label_text": { "file": "ui/pdp_screen.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "description_inner_panel/description_stack_panel/tags_panel/pad": { "file": "ui/pdp_screen.json", "type": "panel" }, "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "tags_factory_with_rows", "tags_factory" ] }, "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel/tags_factory_with_rows": { "file": "ui/pdp_screen.json", "type": "stack_panel" }, "description_inner_panel/description_stack_panel/tags_panel/tag_factory_panel/tags_factory": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "tag_row_factory", "namespace": "pdp" } }, "description_inner_panel/description_stack_panel/genre_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "label_text", "pad", "text_panel" ] }, "description_inner_panel/description_stack_panel/genre_panel/label_text": { "file": "ui/pdp_screen.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "description_inner_panel/description_stack_panel/genre_panel/pad": { "file": "ui/pdp_screen.json", "type": "panel" }, "description_inner_panel/description_stack_panel/genre_panel/text_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "text_stack_panel" ] }, "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "genre_button", "pad_0", "slash_divider", "subgenre_button" ] }, "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/genre_button": { "file": "ui/pdp_screen.json", "type": "button", "extend": { "name": "underline_button", "namespace": "common_buttons" } }, "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/pad_0": { "file": "ui/pdp_screen.json", "type": "panel" }, "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/slash_divider": { "file": "ui/pdp_screen.json", "type": "label" }, "description_inner_panel/description_stack_panel/genre_panel/text_panel/text_stack_panel/subgenre_button": { "file": "ui/pdp_screen.json", "type": "button", "extend": { "name": "underline_button", "namespace": "common_buttons" } }, "description_inner_panel/description_stack_panel/players_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "label_text", "pad", "text_panel" ] }, "description_inner_panel/description_stack_panel/players_panel/label_text": { "file": "ui/pdp_screen.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "description_inner_panel/description_stack_panel/players_panel/pad": { "file": "ui/pdp_screen.json", "type": "panel" }, "description_inner_panel/description_stack_panel/players_panel/text_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "text_stack_panel" ] }, "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "player_count_button_panel", "note_text" ] }, "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "player_count_button_factory", "pad", "player_count_range_panel" ] }, "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/player_count_button_factory": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "player_count_factory", "namespace": "pdp" } }, "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/pad": { "file": "ui/pdp_screen.json", "type": "panel" }, "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/player_count_range_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "player_count_range_text" ] }, "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/player_count_button_panel/player_count_range_panel/player_count_range_text": { "file": "ui/pdp_screen.json", "type": "label" }, "description_inner_panel/description_stack_panel/players_panel/text_panel/text_stack_panel/note_text": { "file": "ui/pdp_screen.json", "type": "label" }, "description_inner_panel/description_stack_panel/languages_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "label_text_panel", "pad", "languages_factory" ] }, "description_inner_panel/description_stack_panel/languages_panel/label_text_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "label_text" ] }, "description_inner_panel/description_stack_panel/languages_panel/label_text_panel/label_text": { "file": "ui/pdp_screen.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "description_inner_panel/description_stack_panel/languages_panel/pad": { "file": "ui/pdp_screen.json", "type": "panel" }, "description_inner_panel/description_stack_panel/languages_panel/languages_factory": { "file": "ui/pdp_screen.json", "type": "stack_panel" }, "description_inner_panel/description_stack_panel/pad_3": { "file": "ui/pdp_screen.json", "type": "panel" }, "description_inner_panel/description_stack_panel/show_less_button_panel": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "description_toggle_show_button_panel", "namespace": "pdp" } }, "description_section": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "content_section_boarder_bg", "namespace": "pdp" } }, "changelog_section": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "description_section", "namespace": "pdp" } }, "bundle_thumbnail": { "file": "ui/pdp_screen.json", "type": "image" }, "bundle_thumbnail_section_content": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "bundle_thumbnail_grid" ] }, "bundle_thumbnail_section_content/bundle_thumbnail_grid": { "file": "ui/pdp_screen.json", "type": "grid" }, "bundle_thumbnail_section": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "content_section_bg", "namespace": "pdp" } }, "price_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "coin_non_sale_price_label", "price_padding", "offer_prompt_panel", "padding_3", "coin_panel" ] }, "price_panel/coin_non_sale_price_label": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "offer_price_markdown_panel", "namespace": "common_store" } }, "price_panel/price_padding": { "file": "ui/pdp_screen.json", "type": "panel" }, "price_panel/offer_prompt_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "offer_status_text" ] }, "price_panel/offer_prompt_panel/offer_status_text": { "file": "ui/pdp_screen.json", "type": "label" }, "price_panel/padding_3": { "file": "ui/pdp_screen.json", "type": "panel" }, "price_panel/coin_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "offer_coin_icon" ] }, "price_panel/coin_panel/offer_coin_icon": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "coin_icon", "namespace": "common_store" } }, "rating_and_coins_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "rating_panel", "rating_padding_coin", "price_panel" ] }, "rating_and_coins_panel/rating_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "rating_text_panel", "namespace": "common_store" } }, "rating_and_coins_panel/rating_padding_coin": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "horizontal_padding_fill", "namespace": "pdp" } }, "rating_and_coins_panel/price_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "price_panel", "namespace": "pdp" } }, "bundle_offer_texture": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "texture" ] }, "bundle_offer_texture/texture": { "file": "ui/pdp_screen.json", "type": "image", "children": [ "border" ] }, "bundle_offer_texture/texture/border": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "focus_border", "namespace": "common_buttons" } }, "bundle_offer_info": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "top_padding", "offer_title_and_author_panel", "glyph_section", "glyph_description_padding", "description_panel", "description_padding", "description_padding_bottom", "rating_and_price_panel", "bottom_padding" ] }, "bundle_offer_info/top_padding": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "vertical_padding_4px", "namespace": "pdp" } }, "bundle_offer_info/offer_title_and_author_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "title_and_author_panel", "namespace": "pdp" } }, "bundle_offer_info/glyph_section": { "file": "ui/pdp_screen.json", "type": "unknown", "extend": { "name": "horizontal_glyph_section_panel", "namespace": "pdp" } }, "bundle_offer_info/glyph_description_padding": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "vertical_padding_2px", "namespace": "pdp" } }, "bundle_offer_info/description_panel": { "file": "ui/pdp_screen.json", "type": "unknown", "extend": { "name": "description_section_panel", "namespace": "pdp" } }, "bundle_offer_info/description_padding": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "vertical_padding_4px", "namespace": "pdp" } }, "bundle_offer_info/description_padding_bottom": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "vertical_padding_fill", "namespace": "pdp" } }, "bundle_offer_info/rating_and_price_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "rating_and_coins_panel", "namespace": "pdp" } }, "bundle_offer_info/bottom_padding": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "vertical_padding_4px", "namespace": "pdp" } }, "bundle_offer_summary_grid_item_content": { "file": "ui/pdp_screen.json", "type": "image", "children": [ "bundle_offer_pdp_panel" ] }, "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "focus_border", "bundle_offer_content_panel" ] }, "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/focus_border": { "file": "ui/pdp_screen.json", "type": "image", "extend": { "name": "focus_border", "namespace": "common_buttons" } }, "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "key_art", "mid_padding", "info", "right_padding" ] }, "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/key_art": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "bundle_offer_texture", "namespace": "pdp" } }, "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/mid_padding": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "horizontal_padding_4px", "namespace": "pdp" } }, "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/info": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "bundle_offer_info", "namespace": "pdp" } }, "bundle_offer_summary_grid_item_content/bundle_offer_pdp_panel/bundle_offer_content_panel/right_padding": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "horizontal_padding_4px", "namespace": "pdp" } }, "bundle_offer_summary_grid_item": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "bundle_offer_summary_button" ] }, "bundle_offer_summary_grid_item/bundle_offer_summary_button": { "file": "ui/pdp_screen.json", "type": "button", "extend": { "name": "dark_content_button", "namespace": "common_buttons" } }, "bundle_offer_content_section": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "bundle_grid" ] }, "bundle_offer_content_section/bundle_grid": { "file": "ui/pdp_screen.json", "type": "grid" }, "bundle_summary_section_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "bundle_summary_section", "divider_3" ] }, "bundle_summary_section_panel/bundle_summary_section": { "file": "ui/pdp_screen.json", "type": "stack_panel", "children": [ "bundle_header_and_thumnails_section", "mid_padding", "bundle_offers_info_section", "mid_padding_2", "interact_panel" ] }, "bundle_summary_section_panel/bundle_summary_section/bundle_header_and_thumnails_section": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "bundle_thumbnail_section", "namespace": "pdp" } }, "bundle_summary_section_panel/bundle_summary_section/mid_padding": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "vertical_padding_2px", "namespace": "pdp" } }, "bundle_summary_section_panel/bundle_summary_section/bundle_offers_info_section": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "bundle_offer_content_section", "namespace": "pdp" } }, "bundle_summary_section_panel/bundle_summary_section/mid_padding_2": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "vertical_padding_2px", "namespace": "pdp" } }, "bundle_summary_section_panel/bundle_summary_section/interact_panel": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "bundle_interact" ] }, "bundle_summary_section_panel/bundle_summary_section/interact_panel/bundle_interact": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "interaction_button_panel", "namespace": "pdp" } }, "bundle_summary_section_panel/divider_3": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "horizontal_divider", "namespace": "common" } }, "pdp_screen": { "file": "ui/pdp_screen.json", "type": "screen", "extend": { "name": "store_base_screen", "namespace": "common_store" } }, "mashup_screen_content": { "file": "ui/pdp_screen.json", "type": "panel", "children": [ "header", "popup_dialog_factory" ] }, "mashup_screen_content/header": { "file": "ui/pdp_screen.json", "type": "stack_panel", "extend": { "name": "store_header_with_coins", "namespace": "common_store" } }, "mashup_screen_content/popup_dialog_factory": { "file": "ui/pdp_screen.json", "type": "factory" }, "mashup_screen_main": { "file": "ui/pdp_screen.json", "type": "input_panel", "children": [ "pack_content", "progress_loading" ] }, "mashup_screen_main/pack_content": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "mashup_screen_main/progress_loading": { "file": "ui/pdp_screen.json", "type": "panel", "extend": { "name": "progress_loading", "namespace": "common_store" } } }, "pdp_screenshots": { "banner_empty": { "file": "ui/pdp_screenshots_section.json", "type": "image" }, "screenshot_carousel": { "file": "ui/pdp_screenshots_section.json", "type": "panel", "children": [ "screenshot_carousel_content" ] }, "screenshot_carousel/screenshot_carousel_content": { "file": "ui/pdp_screenshots_section.json", "type": "panel", "children": [ "cycle_pack_left_button", "screenshots_grid", "cycle_pack_right_button" ] }, "screenshot_carousel/screenshot_carousel_content/cycle_pack_left_button": { "file": "ui/pdp_screenshots_section.json", "type": "button", "extend": { "name": "cycle_pack_left_button", "namespace": "common_store" } }, "screenshot_carousel/screenshot_carousel_content/screenshots_grid": { "file": "ui/pdp_screenshots_section.json", "type": "stack_panel", "extend": { "name": "screenshots_grid", "namespace": "pdp_screenshots" } }, "screenshot_carousel/screenshot_carousel_content/cycle_pack_right_button": { "file": "ui/pdp_screenshots_section.json", "type": "button", "extend": { "name": "cycle_pack_right_button", "namespace": "common_store" } }, "screenshots_grid": { "file": "ui/pdp_screenshots_section.json", "type": "stack_panel", "children": [ "left_image_panel", "middle_image_panel", "right_image_panel" ] }, "screenshots_grid/left_image_panel": { "file": "ui/pdp_screenshots_section.json", "type": "panel", "extend": { "name": "screenshots_grid_item", "namespace": "pdp_screenshots" } }, "screenshots_grid/middle_image_panel": { "file": "ui/pdp_screenshots_section.json", "type": "panel", "extend": { "name": "screenshots_grid_item", "namespace": "pdp_screenshots" } }, "screenshots_grid/right_image_panel": { "file": "ui/pdp_screenshots_section.json", "type": "panel", "extend": { "name": "screenshots_grid_item", "namespace": "pdp_screenshots" } }, "screenshots_grid_item": { "file": "ui/pdp_screenshots_section.json", "type": "panel", "children": [ "frame", "screenshot_image", "progress_loading" ] }, "screenshots_grid_item/frame": { "file": "ui/pdp_screenshots_section.json", "type": "image", "extend": { "name": "banner_empty", "namespace": "pdp_screenshots" }, "children": [ "screenshot_button" ] }, "screenshots_grid_item/frame/screenshot_button": { "file": "ui/pdp_screenshots_section.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "hover", "pressed" ] }, "screenshots_grid_item/frame/screenshot_button/hover": { "file": "ui/pdp_screenshots_section.json", "type": "image", "extend": { "name": "square_image_border_white", "namespace": "common" } }, "screenshots_grid_item/frame/screenshot_button/pressed": { "file": "ui/pdp_screenshots_section.json", "type": "image", "extend": { "name": "square_image_border_white", "namespace": "common" } }, "screenshots_grid_item/screenshot_image": { "file": "ui/pdp_screenshots_section.json", "type": "image" }, "screenshots_grid_item/progress_loading": { "file": "ui/pdp_screenshots_section.json", "type": "panel", "extend": { "name": "progress_loading", "namespace": "common_store" } } }, "permissions": { "permissions_screen": { "file": "ui/permissions_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "permissions_screen_content": { "file": "ui/permissions_screen.json", "type": "stack_panel", "children": [ "top_bar_panel", "content_panel" ] }, "permissions_screen_content/top_bar_panel": { "file": "ui/permissions_screen.json", "type": "panel", "extend": { "name": "top_bar_panel", "namespace": "permissions" } }, "permissions_screen_content/content_panel": { "file": "ui/permissions_screen.json", "type": "panel", "extend": { "name": "content_panel", "namespace": "permissions" } }, "top_bar_panel": { "file": "ui/permissions_screen.json", "type": "panel", "children": [ "top_bar", "back_button", "gamepad_helper_b", "title_label" ] }, "top_bar_panel/top_bar": { "file": "ui/permissions_screen.json", "type": "image", "extend": { "name": "top_bar", "namespace": "permissions" } }, "top_bar_panel/back_button": { "file": "ui/permissions_screen.json", "type": "button", "extend": { "name": "back_button", "namespace": "permissions" } }, "top_bar_panel/gamepad_helper_b": { "file": "ui/permissions_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_b", "namespace": "common" } }, "top_bar_panel/title_label": { "file": "ui/permissions_screen.json", "type": "label", "extend": { "name": "title_label", "namespace": "permissions" } }, "content_panel": { "file": "ui/permissions_screen.json", "type": "panel", "children": [ "content_stack_panel" ] }, "content_panel/content_stack_panel": { "file": "ui/permissions_screen.json", "type": "stack_panel", "children": [ "content_padding_1", "ip_label", "world_label", "content_padding_2", "player_and_permissions_panel" ] }, "content_panel/content_stack_panel/content_padding_1": { "file": "ui/permissions_screen.json", "type": "panel" }, "content_panel/content_stack_panel/ip_label": { "file": "ui/permissions_screen.json", "type": "label", "extend": { "name": "ip_label", "namespace": "permissions" } }, "content_panel/content_stack_panel/world_label": { "file": "ui/permissions_screen.json", "type": "label", "extend": { "name": "world_label", "namespace": "permissions" } }, "content_panel/content_stack_panel/content_padding_2": { "file": "ui/permissions_screen.json", "type": "panel" }, "content_panel/content_stack_panel/player_and_permissions_panel": { "file": "ui/permissions_screen.json", "type": "stack_panel", "extend": { "name": "player_and_permissions_panel", "namespace": "permissions" } }, "player_and_permissions_panel": { "file": "ui/permissions_screen.json", "type": "stack_panel", "children": [ "selector_area", "content_area" ] }, "player_and_permissions_panel/selector_area": { "file": "ui/permissions_screen.json", "type": "input_panel", "extend": { "name": "selector_area", "namespace": "permissions" } }, "player_and_permissions_panel/content_area": { "file": "ui/permissions_screen.json", "type": "input_panel", "extend": { "name": "content_area", "namespace": "permissions" } }, "selector_area": { "file": "ui/permissions_screen.json", "type": "input_panel", "extend": { "name": "modal_area_panel_base", "namespace": "common" }, "children": [ "player_scrolling_panel" ] }, "selector_area/player_scrolling_panel": { "file": "ui/permissions_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "content_area": { "file": "ui/permissions_screen.json", "type": "input_panel", "extend": { "name": "modal_area_panel_base", "namespace": "common" }, "children": [ "permissions_options_background", "inactive_modal_pane_fade" ] }, "content_area/permissions_options_background": { "file": "ui/permissions_screen.json", "type": "panel", "children": [ "permissions_options_background_image" ] }, "content_area/permissions_options_background/permissions_options_background_image": { "file": "ui/permissions_screen.json", "type": "image", "extend": { "name": "banner_background", "namespace": "permissions" }, "children": [ "permissions_options_scrolling_panel" ] }, "content_area/permissions_options_background/permissions_options_background_image/permissions_options_scrolling_panel": { "file": "ui/permissions_screen.json", "type": "panel", "extend": { "name": "permissions_options_scrolling_panel", "namespace": "permissions" } }, "content_area/inactive_modal_pane_fade": { "file": "ui/permissions_screen.json", "type": "image", "extend": { "name": "inactive_modal_pane_fade", "namespace": "common" } }, "kick_button": { "file": "ui/permissions_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "ban_button": { "file": "ui/permissions_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "players_grid_panel": { "file": "ui/permissions_screen.json", "type": "panel", "children": [ "players_grid" ] }, "players_grid_panel/players_grid": { "file": "ui/permissions_screen.json", "type": "grid", "extend": { "name": "players_grid", "namespace": "permissions" } }, "players_grid": { "file": "ui/permissions_screen.json", "type": "grid" }, "player_grid_item": { "file": "ui/permissions_screen.json", "type": "panel", "children": [ "player_toggle", "inactive_modal_pane_fade" ] }, "player_grid_item/player_toggle": { "file": "ui/permissions_screen.json", "type": "panel", "extend": { "name": "player_toggle", "namespace": "permissions" } }, "player_grid_item/inactive_modal_pane_fade": { "file": "ui/permissions_screen.json", "type": "image", "extend": { "name": "inactive_modal_pane_fade", "namespace": "common" } }, "permissions_options_scrolling_panel": { "file": "ui/permissions_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "permissions_options_panel": { "file": "ui/permissions_screen.json", "type": "panel", "children": [ "inner_permissions_options_panel" ] }, "permissions_options_panel/inner_permissions_options_panel": { "file": "ui/permissions_screen.json", "type": "panel", "children": [ "permissions_options_stack_panel" ] }, "permissions_options_panel/inner_permissions_options_panel/permissions_options_stack_panel": { "file": "ui/permissions_screen.json", "type": "stack_panel", "extend": { "name": "permissions_options_stack_panel", "namespace": "permissions" } }, "permissions_options_stack_panel": { "file": "ui/permissions_screen.json", "type": "stack_panel", "children": [ "permissions_padding_0", "world_template_option_lock_panel", "permissions_padding_1", "permission_level_dropdown", "permissions_padding_2", "permissions_options_grid", "permissions_padding_3", "permissions_kick_button_panel", "permissions_padding_4", "permissions_ban_button_panel", "permissions_padding_5" ] }, "permissions_options_stack_panel/permissions_padding_0": { "file": "ui/permissions_screen.json", "type": "panel" }, "permissions_options_stack_panel/world_template_option_lock_panel": { "file": "ui/permissions_screen.json", "type": "panel", "children": [ "option_info_label" ] }, "permissions_options_stack_panel/world_template_option_lock_panel/option_info_label": { "file": "ui/permissions_screen.json", "type": "panel", "extend": { "name": "option_info_label", "namespace": "settings_common" } }, "permissions_options_stack_panel/permissions_padding_1": { "file": "ui/permissions_screen.json", "type": "panel" }, "permissions_options_stack_panel/permission_level_dropdown": { "file": "ui/permissions_screen.json", "type": "panel", "extend": { "name": "permission_level_dropdown", "namespace": "permissions" } }, "permissions_options_stack_panel/permissions_padding_2": { "file": "ui/permissions_screen.json", "type": "panel" }, "permissions_options_stack_panel/permissions_options_grid": { "file": "ui/permissions_screen.json", "type": "grid", "extend": { "name": "permissions_options_grid", "namespace": "permissions" } }, "permissions_options_stack_panel/permissions_padding_3": { "file": "ui/permissions_screen.json", "type": "panel" }, "permissions_options_stack_panel/permissions_kick_button_panel": { "file": "ui/permissions_screen.json", "type": "panel", "extend": { "name": "permissions_kick_button_panel", "namespace": "permissions" } }, "permissions_options_stack_panel/permissions_padding_4": { "file": "ui/permissions_screen.json", "type": "panel" }, "permissions_options_stack_panel/permissions_ban_button_panel": { "file": "ui/permissions_screen.json", "type": "panel", "extend": { "name": "permissions_ban_button_panel", "namespace": "permissions" } }, "permissions_options_stack_panel/permissions_padding_5": { "file": "ui/permissions_screen.json", "type": "panel" }, "permissions_options_grid": { "file": "ui/permissions_screen.json", "type": "grid" }, "permissions_options_grid_item": { "file": "ui/permissions_screen.json", "type": "stack_panel", "children": [ "option_label_panel", "option_state_label_panel", "option_toggle" ] }, "permissions_options_grid_item/option_label_panel": { "file": "ui/permissions_screen.json", "type": "panel", "children": [ "option_label" ] }, "permissions_options_grid_item/option_label_panel/option_label": { "file": "ui/permissions_screen.json", "type": "label", "extend": { "name": "option_label", "namespace": "permissions" } }, "permissions_options_grid_item/option_state_label_panel": { "file": "ui/permissions_screen.json", "type": "panel", "children": [ "option_state_label" ] }, "permissions_options_grid_item/option_state_label_panel/option_state_label": { "file": "ui/permissions_screen.json", "type": "label", "extend": { "name": "option_state_label", "namespace": "permissions" } }, "permissions_options_grid_item/option_toggle": { "file": "ui/permissions_screen.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "permissions" } }, "permissions_kick_button_panel": { "file": "ui/permissions_screen.json", "type": "panel", "children": [ "kick_button" ] }, "permissions_kick_button_panel/kick_button": { "file": "ui/permissions_screen.json", "type": "button", "extend": { "name": "kick_button", "namespace": "permissions" } }, "permissions_ban_button_panel": { "file": "ui/permissions_screen.json", "type": "panel", "children": [ "ban_button" ] }, "permissions_ban_button_panel/ban_button": { "file": "ui/permissions_screen.json", "type": "button", "extend": { "name": "ban_button", "namespace": "permissions" } }, "title_label": { "file": "ui/permissions_screen.json", "type": "label" }, "ip_label": { "file": "ui/permissions_screen.json", "type": "label" }, "world_label": { "file": "ui/permissions_screen.json", "type": "label" }, "gamertag_label": { "file": "ui/permissions_screen.json", "type": "label" }, "option_state_label": { "file": "ui/permissions_screen.json", "type": "label" }, "option_label": { "file": "ui/permissions_screen.json", "type": "label" }, "top_bar": { "file": "ui/permissions_screen.json", "type": "image" }, "banner_background": { "file": "ui/permissions_screen.json", "type": "image" }, "player_local_icon": { "file": "ui/permissions_screen.json", "type": "image" }, "player_gamer_pic": { "file": "ui/permissions_screen.json", "type": "image", "children": [ "player_panel_black_border" ] }, "player_gamer_pic/player_panel_black_border": { "file": "ui/permissions_screen.json", "type": "image", "extend": { "name": "square_image_border_white", "namespace": "common" } }, "back_button": { "file": "ui/permissions_screen.json", "type": "button", "extend": { "name": "no_background_content_button", "namespace": "common_buttons" } }, "back_button_content": { "file": "ui/permissions_screen.json", "type": "stack_panel", "children": [ "chevron_panel", "back_button_padding", "label_panel" ] }, "back_button_content/chevron_panel": { "file": "ui/permissions_screen.json", "type": "panel", "children": [ "left_chevron" ] }, "back_button_content/chevron_panel/left_chevron": { "file": "ui/permissions_screen.json", "type": "image", "extend": { "name": "chevron_image", "namespace": "common" } }, "back_button_content/back_button_padding": { "file": "ui/permissions_screen.json", "type": "panel" }, "back_button_content/label_panel": { "file": "ui/permissions_screen.json", "type": "panel", "children": [ "label" ] }, "back_button_content/label_panel/label": { "file": "ui/permissions_screen.json", "type": "label", "extend": { "name": "new_ui_binding_button_label", "namespace": "common_buttons" } }, "player_toggle": { "file": "ui/permissions_screen.json", "type": "panel", "extend": { "name": "dark_image_toggle_collection", "namespace": "common_toggles" } }, "player_button_content": { "file": "ui/permissions_screen.json", "type": "stack_panel", "children": [ "player_pic_panel", "player_button_padding_1", "gamertag_panel", "icon_panel", "player_button_padding_2" ] }, "player_button_content/player_pic_panel": { "file": "ui/permissions_screen.json", "type": "panel", "extend": { "name": "player_pic_panel", "namespace": "permissions" } }, "player_button_content/player_button_padding_1": { "file": "ui/permissions_screen.json", "type": "panel" }, "player_button_content/gamertag_panel": { "file": "ui/permissions_screen.json", "type": "panel", "children": [ "gamertag_label" ] }, "player_button_content/gamertag_panel/gamertag_label": { "file": "ui/permissions_screen.json", "type": "label", "extend": { "name": "gamertag_label", "namespace": "permissions" } }, "player_button_content/icon_panel": { "file": "ui/permissions_screen.json", "type": "panel", "children": [ "dropdown_icon_image" ] }, "player_button_content/icon_panel/dropdown_icon_image": { "file": "ui/permissions_screen.json", "type": "image" }, "player_button_content/player_button_padding_2": { "file": "ui/permissions_screen.json", "type": "panel" }, "player_pic_panel": { "file": "ui/permissions_screen.json", "type": "panel", "children": [ "player_gamer_pic", "player_local_icon" ] }, "player_pic_panel/player_gamer_pic": { "file": "ui/permissions_screen.json", "type": "image", "extend": { "name": "player_gamer_pic", "namespace": "permissions" } }, "player_pic_panel/player_local_icon": { "file": "ui/permissions_screen.json", "type": "image", "extend": { "name": "player_local_icon", "namespace": "permissions" } }, "option_toggle": { "file": "ui/permissions_screen.json", "type": "panel", "extend": { "name": "switch_toggle_collection", "namespace": "common_toggles" } }, "permission_level_dropdown": { "file": "ui/permissions_screen.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "radio_title_and_icon": { "file": "ui/permissions_screen.json", "type": "panel", "children": [ "radio_icon", "radio_title" ] }, "radio_title_and_icon/radio_icon": { "file": "ui/permissions_screen.json", "type": "image" }, "radio_title_and_icon/radio_title": { "file": "ui/permissions_screen.json", "type": "label" }, "radio_content_with_title_bar": { "file": "ui/permissions_screen.json", "type": "stack_panel", "children": [ "title_and_icon", "helper_text", "bottom_padding" ] }, "radio_content_with_title_bar/title_and_icon": { "file": "ui/permissions_screen.json", "type": "panel", "extend": { "name": "radio_title_and_icon", "namespace": "permissions" } }, "radio_content_with_title_bar/helper_text": { "file": "ui/permissions_screen.json", "type": "label" }, "radio_content_with_title_bar/bottom_padding": { "file": "ui/permissions_screen.json", "type": "panel" }, "radio_visuals_with_title": { "file": "ui/permissions_screen.json", "type": "panel", "children": [ "radio_content" ] }, "radio_visuals_with_title/radio_content": { "file": "ui/permissions_screen.json", "type": "stack_panel", "extend": { "name": "radio_content_with_title_bar", "namespace": "permissions" } }, "radio_visuals_with_title_hover": { "file": "ui/permissions_screen.json", "type": "image", "children": [ "radio_content" ] }, "radio_visuals_with_title_hover/radio_content": { "file": "ui/permissions_screen.json", "type": "stack_panel", "extend": { "name": "radio_content_with_title_bar", "namespace": "permissions" } }, "permissions_visitor_visuals_with_title_normal": { "file": "ui/permissions_screen.json", "type": "panel", "extend": { "name": "radio_visuals_with_title", "namespace": "permissions" } }, "permissions_visitor_visuals_with_title_hover": { "file": "ui/permissions_screen.json", "type": "image", "extend": { "name": "radio_visuals_with_title_hover", "namespace": "permissions" } }, "permissions_member_visuals_with_title_normal": { "file": "ui/permissions_screen.json", "type": "panel", "extend": { "name": "radio_visuals_with_title", "namespace": "permissions" } }, "permissions_member_visuals_with_title_hover": { "file": "ui/permissions_screen.json", "type": "image", "extend": { "name": "radio_visuals_with_title_hover", "namespace": "permissions" } }, "permissions_op_visuals_with_title_normal": { "file": "ui/permissions_screen.json", "type": "panel", "extend": { "name": "radio_visuals_with_title", "namespace": "permissions" } }, "permissions_op_visuals_with_title_hover": { "file": "ui/permissions_screen.json", "type": "image", "extend": { "name": "radio_visuals_with_title_hover", "namespace": "permissions" } }, "permissions_visitor_radio_visuals_normal": { "file": "ui/permissions_screen.json", "type": "panel", "extend": { "name": "radio_visuals", "namespace": "settings_common" } }, "permissions_visitor_radio_visuals_hover": { "file": "ui/permissions_screen.json", "type": "panel", "extend": { "name": "radio_visuals", "namespace": "settings_common" } }, "permissions_member_radio_visuals_normal": { "file": "ui/permissions_screen.json", "type": "panel", "extend": { "name": "radio_visuals", "namespace": "settings_common" } }, "permissions_member_radio_visuals_hover": { "file": "ui/permissions_screen.json", "type": "panel", "extend": { "name": "radio_visuals", "namespace": "settings_common" } }, "permissions_op_radio_visuals_normal": { "file": "ui/permissions_screen.json", "type": "panel", "extend": { "name": "radio_visuals", "namespace": "settings_common" } }, "permissions_op_radio_visuals_hover": { "file": "ui/permissions_screen.json", "type": "panel", "extend": { "name": "radio_visuals", "namespace": "settings_common" } }, "permissions_custom_radio_visuals_normal": { "file": "ui/permissions_screen.json", "type": "panel", "extend": { "name": "radio_visuals", "namespace": "settings_common" } }, "permissions_custom_radio_visuals_hover": { "file": "ui/permissions_screen.json", "type": "panel", "extend": { "name": "radio_visuals", "namespace": "settings_common" } }, "permission_level_radio": { "file": "ui/permissions_screen.json", "type": "panel", "extend": { "name": "radio_with_label", "namespace": "settings_common" }, "children": [ "radio_with_label_core" ] }, "permission_level_radio/radio_with_label_core": { "file": "ui/permissions_screen.json", "type": "toggle", "extend": { "name": "radio_with_label_core", "namespace": "settings_common" } }, "permission_level_dropdown_content": { "file": "ui/permissions_screen.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "permission_level_dropdown_state_content": { "file": "ui/permissions_screen.json", "type": "stack_panel", "children": [ "icon_panel", "dropdown_label_padding", "label_panel", "arrow_panel" ] }, "permission_level_dropdown_state_content/icon_panel": { "file": "ui/permissions_screen.json", "type": "panel", "children": [ "dropdown_icon_image" ] }, "permission_level_dropdown_state_content/icon_panel/dropdown_icon_image": { "file": "ui/permissions_screen.json", "type": "image" }, "permission_level_dropdown_state_content/dropdown_label_padding": { "file": "ui/permissions_screen.json", "type": "panel" }, "permission_level_dropdown_state_content/label_panel": { "file": "ui/permissions_screen.json", "type": "panel", "children": [ "label" ] }, "permission_level_dropdown_state_content/label_panel/label": { "file": "ui/permissions_screen.json", "type": "label", "extend": { "name": "new_button_label", "namespace": "common" } }, "permission_level_dropdown_state_content/arrow_panel": { "file": "ui/permissions_screen.json", "type": "panel", "children": [ "arrow_image" ] }, "permission_level_dropdown_state_content/arrow_panel/arrow_image": { "file": "ui/permissions_screen.json", "type": "image", "extend": { "name": "arrow_image", "namespace": "settings_common" } } }, "persona_cast_character_screen": { "cast_modal_bottom_bar": { "file": "ui/persona_cast_character_screen.json", "type": "stack_panel", "children": [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ] }, "cast_modal_bottom_bar/0": { "file": "ui/persona_cast_character_screen.json", "type": "unknown" }, "cast_common_dialog_background": { "file": "ui/persona_cast_character_screen.json", "type": "image", "extend": { "name": "dialog_background_hollow_2", "namespace": "common_dialogs" }, "children": [ "top_bar", "popup_inner_contents", "cast_modal_bottom_bar" ] }, "cast_common_dialog_background/top_bar": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "extend": { "name": "common_cast_modal_top_bar", "namespace": "persona_cast_character_screen" } }, "cast_common_dialog_background/popup_inner_contents": { "file": "ui/persona_cast_character_screen.json", "type": "unknown" }, "cast_common_dialog_background/cast_modal_bottom_bar": { "file": "ui/persona_cast_character_screen.json", "type": "stack_panel", "extend": { "name": "cast_modal_bottom_bar", "namespace": "persona_cast_character_screen" } }, "cast_modal_panel": { "file": "ui/persona_cast_character_screen.json", "type": "input_panel", "children": [ "cast_preview_modal_content" ] }, "cast_modal_panel/cast_preview_modal_content": { "file": "ui/persona_cast_character_screen.json", "type": "image", "extend": { "name": "cast_common_dialog_background", "namespace": "persona_cast_character_screen" } }, "popup_dialog__cast_character_select": { "file": "ui/persona_cast_character_screen.json", "type": "input_panel", "extend": { "name": "common_dcast_popup_framework", "namespace": "persona_cast_character_screen" }, "children": [ "background", "popup_background" ] }, "popup_dialog__cast_character_select/background": { "file": "ui/persona_cast_character_screen.json", "type": "image", "extend": { "name": "common_background_blocker", "namespace": "persona_cast_character_screen" } }, "popup_dialog__cast_character_select/popup_background": { "file": "ui/persona_cast_character_screen.json", "type": "input_panel", "extend": { "name": "cast_modal_panel", "namespace": "persona_cast_character_screen" } }, "common_dcast_popup_framework": { "file": "ui/persona_cast_character_screen.json", "type": "input_panel", "extend": { "name": "popup_dialog", "namespace": "popup_dialog" } }, "common_cast_modal_top_bar": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "children": [ "title_panel", "close_button_holder" ] }, "common_cast_modal_top_bar/title_panel": { "file": "ui/persona_cast_character_screen.json", "type": "label" }, "common_cast_modal_top_bar/close_button_holder": { "file": "ui/persona_cast_character_screen.json", "type": "stack_panel", "extend": { "name": "common_close_button_holder", "namespace": "common_dialogs" } }, "cast_character_select_main": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "children": [ "modal_inner_background", "main_content_horizontal_stack" ] }, "cast_character_select_main/modal_inner_background": { "file": "ui/persona_cast_character_screen.json", "type": "image" }, "cast_character_select_main/main_content_horizontal_stack": { "file": "ui/persona_cast_character_screen.json", "type": "stack_panel", "children": [ "cast_grid", "vertical_centerer" ] }, "cast_character_select_main/main_content_horizontal_stack/cast_grid": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "extend": { "name": "cast_scroll_view_panel", "namespace": "persona_cast_character_screen" } }, "cast_character_select_main/main_content_horizontal_stack/vertical_centerer": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "top_fill", "skin_viewer_panel", "bottom_fill", "bottom_padding" ] }, "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/top_fill": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/skin_viewer_panel": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "extend": { "name": "persona_cast_paper_doll_panel", "namespace": "persona_cast_character_screen" } }, "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/bottom_fill": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "cast_character_select_main/main_content_horizontal_stack/vertical_centerer/bottom_padding": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "cast_scroll_view_panel": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "cast_grid_with_buttons": { "file": "ui/persona_cast_character_screen.json", "type": "stack_panel", "children": [ "top_spacing", "cast_grid", "bottom_spacing" ] }, "cast_grid_with_buttons/top_spacing": { "file": "ui/persona_cast_character_screen.json", "type": "panel" }, "cast_grid_with_buttons/cast_grid": { "file": "ui/persona_cast_character_screen.json", "type": "grid" }, "cast_grid_with_buttons/bottom_spacing": { "file": "ui/persona_cast_character_screen.json", "type": "panel" }, "cast_grid_panel": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "children": [ "cast_grid" ] }, "cast_grid_panel/cast_grid": { "file": "ui/persona_cast_character_screen.json", "type": "stack_panel", "extend": { "name": "cast_grid_with_buttons", "namespace": "persona_cast_character_screen" } }, "cast_single_character_button_panel": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "children": [ "cast_character_button" ] }, "cast_single_character_button_panel/cast_character_button": { "file": "ui/persona_cast_character_screen.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "background_image", "selected", "default", "hover", "pressed", "button_outline" ] }, "cast_single_character_button_panel/cast_character_button/background_image": { "file": "ui/persona_cast_character_screen.json", "type": "image" }, "cast_single_character_button_panel/cast_character_button/selected": { "file": "ui/persona_cast_character_screen.json", "type": "image", "extend": { "name": "selected_border", "namespace": "persona_common" } }, "cast_single_character_button_panel/cast_character_button/default": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "cast_single_character_button_panel/cast_character_button/hover": { "file": "ui/persona_cast_character_screen.json", "type": "image", "extend": { "name": "focus_border", "namespace": "persona_common" } }, "cast_single_character_button_panel/cast_character_button/pressed": { "file": "ui/persona_cast_character_screen.json", "type": "image", "extend": { "name": "focus_border", "namespace": "persona_common" } }, "cast_single_character_button_panel/cast_character_button/button_outline": { "file": "ui/persona_cast_character_screen.json", "type": "image", "children": [ "cast_character_content" ] }, "cast_single_character_button_panel/cast_character_button/button_outline/cast_character_content": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "extend": { "name": "cast_character_button_content_panel", "namespace": "persona_cast_character_screen" } }, "cast_character_button_content_panel": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "children": [ "cast_single_character_content_visible_panel" ] }, "cast_character_button_content_panel/cast_single_character_content_visible_panel": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "children": [ "cast_single_character_button_content" ] }, "cast_character_button_content_panel/cast_single_character_content_visible_panel/cast_single_character_button_content": { "file": "ui/persona_cast_character_screen.json", "type": "image", "extend": { "name": "in_use_grid_item", "namespace": "persona_cast_character_screen" } }, "in_use_grid_item": { "file": "ui/persona_cast_character_screen.json", "type": "image" }, "persona_cast_paper_doll_panel": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "children": [ "preset_input_panel" ] }, "persona_cast_paper_doll_panel/preset_input_panel": { "file": "ui/persona_cast_character_screen.json", "type": "input_panel", "extend": { "name": "cast_character_screen_right_side_model", "namespace": "persona_cast_character_screen" } }, "character_loading_anim": { "file": "ui/persona_cast_character_screen.json", "type": "image", "extend": { "name": "loading_icon", "namespace": "persona_common" } }, "character_loading_anim_panel": { "file": "ui/persona_cast_character_screen.json", "type": "image", "children": [ "character_loading_anim" ] }, "character_loading_anim_panel/character_loading_anim": { "file": "ui/persona_cast_character_screen.json", "type": "image", "extend": { "name": "character_loading_anim", "namespace": "persona_cast_character_screen" } }, "skin_viewer_panel_skin_model": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "children": [ "skin_model" ] }, "skin_viewer_panel_skin_model/skin_model": { "file": "ui/persona_cast_character_screen.json", "type": "custom" }, "cast_character_screen_right_side_model": { "file": "ui/persona_cast_character_screen.json", "type": "input_panel", "children": [ "skin_model_panel", "skin_model_loading_anim", "skin_model_label" ] }, "cast_character_screen_right_side_model/skin_model_panel": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "extend": { "name": "skin_viewer_panel_skin_model", "namespace": "persona_cast_character_screen" } }, "cast_character_screen_right_side_model/skin_model_loading_anim": { "file": "ui/persona_cast_character_screen.json", "type": "image", "extend": { "name": "character_loading_anim_panel", "namespace": "persona_cast_character_screen" } }, "cast_character_screen_right_side_model/skin_model_label": { "file": "ui/persona_cast_character_screen.json", "type": "label" }, "common_background_blocker": { "file": "ui/persona_cast_character_screen.json", "type": "image", "extend": { "name": "modal_window_input_blocker", "namespace": "persona_popups" }, "children": [ "modal_background_button" ] }, "common_background_blocker/modal_background_button": { "file": "ui/persona_cast_character_screen.json", "type": "button" }, "common_preview_page_framework": { "file": "ui/persona_cast_character_screen.json", "type": "input_panel", "extend": { "name": "common_dcast_popup_framework", "namespace": "persona_cast_character_screen" }, "children": [ "background", "cast_preview_modal" ] }, "common_preview_page_framework/background": { "file": "ui/persona_cast_character_screen.json", "type": "image", "extend": { "name": "common_background_blocker", "namespace": "persona_cast_character_screen" } }, "common_preview_page_framework/cast_preview_modal": { "file": "ui/persona_cast_character_screen.json", "type": "input_panel", "extend": { "name": "cast_modal_panel", "namespace": "persona_cast_character_screen" } }, "cast_preview_page_one": { "file": "ui/persona_cast_character_screen.json", "type": "input_panel", "extend": { "name": "common_preview_page_framework", "namespace": "persona_cast_character_screen" } }, "cast_preview_page_two": { "file": "ui/persona_cast_character_screen.json", "type": "input_panel", "extend": { "name": "common_preview_page_framework", "namespace": "persona_cast_character_screen" } }, "cast_preview_page_one_inner_section": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "children": [ "modal_inner_background", "cast_content" ] }, "cast_preview_page_one_inner_section/modal_inner_background": { "file": "ui/persona_cast_character_screen.json", "type": "image" }, "cast_preview_page_one_inner_section/cast_content": { "file": "ui/persona_cast_character_screen.json", "type": "input_panel", "children": [ "cast_image_cycler", "cast_vertical_panel" ] }, "cast_preview_page_one_inner_section/cast_content/cast_image_cycler": { "file": "ui/persona_cast_character_screen.json", "type": "image_cycler", "extend": { "name": "image_cycler", "namespace": "common" } }, "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel": { "file": "ui/persona_cast_character_screen.json", "type": "stack_panel", "children": [ "controls_label_panel", "buffer_panel", "controls_shoulder_button_display_panel" ] }, "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_label_panel": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "children": [ "text_cycler" ] }, "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_label_panel/text_cycler": { "file": "ui/persona_cast_character_screen.json", "type": "label_cycler", "extend": { "name": "text_cycler", "namespace": "common" } }, "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/buffer_panel": { "file": "ui/persona_cast_character_screen.json", "type": "panel" }, "cast_preview_page_one_inner_section/cast_content/cast_vertical_panel/controls_shoulder_button_display_panel": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "extend": { "name": "ftue_subpage_indicator_panel", "namespace": "persona_cast_character_screen" } }, "chevron_image_panel": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "children": [ "chevron_image" ] }, "chevron_image_panel/chevron_image": { "file": "ui/persona_cast_character_screen.json", "type": "image", "extend": { "name": "chevron_image", "namespace": "common" } }, "chevron_button": { "file": "ui/persona_cast_character_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "shift_page_panel": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "children": [ "centering_panel" ] }, "shift_page_panel/centering_panel": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "children": [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ] }, "shift_page_panel/centering_panel/0": { "file": "ui/persona_cast_character_screen.json", "type": "unknown" }, "shift_page_left_panel": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "extend": { "name": "shift_page_panel", "namespace": "persona_cast_character_screen" } }, "shift_page_right_panel": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "extend": { "name": "shift_page_panel", "namespace": "persona_cast_character_screen" } }, "horizontal_8px_padding": { "file": "ui/persona_cast_character_screen.json", "type": "panel" }, "horizontal_20px_padding": { "file": "ui/persona_cast_character_screen.json", "type": "panel" }, "ftue_subpage_indicator_panel": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "children": [ "controls_shoulder_button_display" ] }, "ftue_subpage_indicator_panel/controls_shoulder_button_display": { "file": "ui/persona_cast_character_screen.json", "type": "stack_panel", "children": [ "left_padding", "left_shoulder_button_panel", "left_shoulder_button_padding", "page_indicator_grid", "right_shoulder_button_padding", "right_shoulder_button_panel", "right_padding" ] }, "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_padding": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "extend": { "name": "horizontal_20px_padding", "namespace": "persona_cast_character_screen" } }, "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_shoulder_button_panel": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "extend": { "name": "shift_page_left_panel", "namespace": "persona_cast_character_screen" } }, "ftue_subpage_indicator_panel/controls_shoulder_button_display/left_shoulder_button_padding": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "extend": { "name": "horizontal_8px_padding", "namespace": "persona_cast_character_screen" } }, "ftue_subpage_indicator_panel/controls_shoulder_button_display/page_indicator_grid": { "file": "ui/persona_cast_character_screen.json", "type": "grid_page_indicator" }, "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_shoulder_button_padding": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "extend": { "name": "horizontal_8px_padding", "namespace": "persona_cast_character_screen" } }, "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_shoulder_button_panel": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "extend": { "name": "shift_page_right_panel", "namespace": "persona_cast_character_screen" } }, "ftue_subpage_indicator_panel/controls_shoulder_button_display/right_padding": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "extend": { "name": "horizontal_20px_padding", "namespace": "persona_cast_character_screen" } }, "individaul_cast_page_indicator": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "children": [ "panel_when_current_page", "panel_when_not_current_page" ] }, "individaul_cast_page_indicator/panel_when_current_page": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "children": [ "panel_with_padding" ] }, "individaul_cast_page_indicator/panel_when_current_page/panel_with_padding": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "children": [ "cast_dot" ] }, "individaul_cast_page_indicator/panel_when_current_page/panel_with_padding/cast_dot": { "file": "ui/persona_cast_character_screen.json", "type": "image" }, "individaul_cast_page_indicator/panel_when_not_current_page": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "children": [ "panel_with_padding" ] }, "individaul_cast_page_indicator/panel_when_not_current_page/panel_with_padding": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "children": [ "cast_dot" ] }, "individaul_cast_page_indicator/panel_when_not_current_page/panel_with_padding/cast_dot": { "file": "ui/persona_cast_character_screen.json", "type": "image" }, "how_to_section": { "file": "ui/persona_cast_character_screen.json", "type": "stack_panel", "children": [ "how_to_image", "how_to_label_section" ] }, "how_to_section/how_to_image": { "file": "ui/persona_cast_character_screen.json", "type": "image" }, "how_to_section/how_to_label_section": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "children": [ "how_to_label" ] }, "how_to_section/how_to_label_section/how_to_label": { "file": "ui/persona_cast_character_screen.json", "type": "label" }, "cast_preview_page_two_inner_section": { "file": "ui/persona_cast_character_screen.json", "type": "image", "children": [ "how_to_section_stack" ] }, "cast_preview_page_two_inner_section/how_to_section_stack": { "file": "ui/persona_cast_character_screen.json", "type": "stack_panel", "children": [ "how_to_section_left", "divider_panel", "how_to_section_right" ] }, "cast_preview_page_two_inner_section/how_to_section_stack/how_to_section_left": { "file": "ui/persona_cast_character_screen.json", "type": "stack_panel", "extend": { "name": "how_to_section", "namespace": "persona_cast_character_screen" } }, "cast_preview_page_two_inner_section/how_to_section_stack/divider_panel": { "file": "ui/persona_cast_character_screen.json", "type": "panel", "children": [ "divider" ] }, "cast_preview_page_two_inner_section/how_to_section_stack/divider_panel/divider": { "file": "ui/persona_cast_character_screen.json", "type": "image" }, "cast_preview_page_two_inner_section/how_to_section_stack/how_to_section_right": { "file": "ui/persona_cast_character_screen.json", "type": "stack_panel", "extend": { "name": "how_to_section", "namespace": "persona_cast_character_screen" } } }, "persona_common": { "icon_image": { "file": "ui/persona_common.json", "type": "image" }, "mashup_world": { "file": "ui/persona_common.json", "type": "image", "extend": { "name": "icon_image", "namespace": "persona_common" } }, "mashup_hangar": { "file": "ui/persona_common.json", "type": "image", "extend": { "name": "icon_image", "namespace": "persona_common" } }, "mashup_paintbrush": { "file": "ui/persona_common.json", "type": "image", "extend": { "name": "icon_image", "namespace": "persona_common" } }, "info_bulb_icon": { "file": "ui/persona_common.json", "type": "image", "extend": { "name": "icon_image", "namespace": "persona_common" } }, "green_checkmark_icon": { "file": "ui/persona_common.json", "type": "image", "extend": { "name": "icon_image", "namespace": "persona_common" } }, "persona_screen_background_content": { "file": "ui/persona_common.json", "type": "image" }, "loading_icon": { "file": "ui/persona_common.json", "type": "image" }, "focus_border": { "file": "ui/persona_common.json", "type": "image" }, "selected_border": { "file": "ui/persona_common.json", "type": "image", "extend": { "name": "focus_border", "namespace": "persona_common" } }, "equipped_border": { "file": "ui/persona_common.json", "type": "image" }, "progress_loading": { "file": "ui/persona_common.json", "type": "image", "children": [ "progress_loading" ] }, "progress_loading/progress_loading": { "file": "ui/persona_common.json", "type": "panel", "extend": { "name": "progress_loading", "namespace": "common_store" } }, "title_rarity_positionable_title": { "file": "ui/persona_common.json", "type": "label" }, "generic_title_panel": { "file": "ui/persona_common.json", "type": "image", "children": [ "title_label" ] }, "generic_title_panel/title_label": { "file": "ui/persona_common.json", "type": "label", "extend": { "name": "title_rarity_positionable_title", "namespace": "persona_common" } }, "rarity_bar": { "file": "ui/persona_common.json", "type": "image" }, "item_rarity_color_background": { "file": "ui/persona_common.json", "type": "image" }, "piece_item_display": { "file": "ui/persona_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "item_renderer", "loading_progress_spinner" ] }, "piece_item_display/item_renderer": { "file": "ui/persona_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "background", "item_image", "rarity_bar_panel", "extra_control" ] }, "piece_item_display/item_renderer/background": { "file": "ui/persona_common.json", "type": "image", "extend": { "name": "item_rarity_color_background", "namespace": "persona_common" } }, "piece_item_display/item_renderer/item_image": { "file": "ui/persona_common.json", "type": "image" }, "piece_item_display/item_renderer/rarity_bar_panel": { "file": "ui/persona_common.json", "type": "image", "extend": { "name": "rarity_bar", "namespace": "persona_common" } }, "piece_item_display/item_renderer/extra_control": { "file": "ui/persona_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "control_instance" ] }, "piece_item_display/item_renderer/extra_control/control_instance": { "file": "ui/persona_common.json", "type": "unknown" }, "piece_item_display/loading_progress_spinner": { "file": "ui/persona_common.json", "type": "image" }, "wheel_state": { "file": "ui/persona_common.json", "type": "image" }, "emote_label": { "file": "ui/persona_common.json", "type": "label" }, "touch_name_label": { "file": "ui/persona_common.json", "type": "label" }, "emote_image": { "file": "ui/persona_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "empty", "emote_preview" ] }, "emote_image/empty": { "file": "ui/persona_common.json", "type": "image" }, "emote_image/emote_preview": { "file": "ui/persona_common.json", "type": "panel", "children": [ "valid", "valid_no_image" ] }, "emote_image/emote_preview/valid": { "file": "ui/persona_common.json", "type": "image" }, "emote_image/emote_preview/valid_no_image": { "file": "ui/persona_common.json", "type": "panel", "children": [ "valid_text" ] }, "emote_image/emote_preview/valid_no_image/valid_text": { "file": "ui/persona_common.json", "type": "label" }, "keyboard_hotkey_helpers": { "file": "ui/persona_common.json", "type": "panel", "children": [ "keyboard_1", "keyboard_2", "keyboard_3", "keyboard_4" ] }, "keyboard_hotkey_helpers/keyboard_1": { "file": "ui/persona_common.json", "type": "stack_panel", "extend": { "name": "keyboard_helper_keys", "namespace": "common" } }, "keyboard_hotkey_helpers/keyboard_2": { "file": "ui/persona_common.json", "type": "stack_panel", "extend": { "name": "keyboard_helper_keys", "namespace": "common" } }, "keyboard_hotkey_helpers/keyboard_3": { "file": "ui/persona_common.json", "type": "stack_panel", "extend": { "name": "keyboard_helper_keys", "namespace": "common" } }, "keyboard_hotkey_helpers/keyboard_4": { "file": "ui/persona_common.json", "type": "stack_panel", "extend": { "name": "keyboard_helper_keys", "namespace": "common" } }, "gamepad_hotkey_helpers": { "file": "ui/persona_common.json", "type": "panel", "children": [ "quick_select_gamepad_helpers", "analog_select_gamepad_helper_panel" ] }, "gamepad_hotkey_helpers/quick_select_gamepad_helpers": { "file": "ui/persona_common.json", "type": "panel", "children": [ "gamepad_y", "gamepad_b", "gamepad_a", "gamepad_x" ] }, "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_y": { "file": "ui/persona_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_y", "namespace": "common" } }, "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_b": { "file": "ui/persona_common.json", "type": "unknown", "extend": { "name": "$gamepad_face_right_helper", "namespace": "common" } }, "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_a": { "file": "ui/persona_common.json", "type": "unknown", "extend": { "name": "$gamepad_face_down_helper", "namespace": "common" } }, "gamepad_hotkey_helpers/quick_select_gamepad_helpers/gamepad_x": { "file": "ui/persona_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_x", "namespace": "common" } }, "gamepad_hotkey_helpers/analog_select_gamepad_helper_panel": { "file": "ui/persona_common.json", "type": "panel", "children": [ "analog_select_gamepad_helper" ] }, "gamepad_hotkey_helpers/analog_select_gamepad_helper_panel/analog_select_gamepad_helper": { "file": "ui/persona_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_a", "namespace": "common" } }, "emote_wheel_slot_content": { "file": "ui/persona_common.json", "type": "panel", "children": [ "image_0", "touch_label_0" ] }, "emote_wheel_slot_content/image_0": { "file": "ui/persona_common.json", "type": "panel", "extend": { "name": "emote_image", "namespace": "persona_common" } }, "emote_wheel_slot_content/touch_label_0": { "file": "ui/persona_common.json", "type": "label", "extend": { "name": "touch_name_label", "namespace": "persona_common" } }, "selection_wheel": { "file": "ui/persona_common.json", "type": "selection_wheel" }, "emote_selection_wheel": { "file": "ui/persona_common.json", "type": "selection_wheel", "extend": { "name": "selection_wheel", "namespace": "persona_common" }, "children": [ "default_state", "emote_slot_0_content", "emote_slot_1_content", "emote_slot_2_content", "emote_slot_3_content" ] }, "emote_selection_wheel/default_state": { "file": "ui/persona_common.json", "type": "image", "extend": { "name": "wheel_state", "namespace": "persona_common" } }, "emote_selection_wheel/emote_slot_0_content": { "file": "ui/persona_common.json", "type": "panel", "extend": { "name": "emote_wheel_slot_content", "namespace": "persona_common" } }, "emote_selection_wheel/emote_slot_1_content": { "file": "ui/persona_common.json", "type": "panel", "extend": { "name": "emote_wheel_slot_content", "namespace": "persona_common" } }, "emote_selection_wheel/emote_slot_2_content": { "file": "ui/persona_common.json", "type": "panel", "extend": { "name": "emote_wheel_slot_content", "namespace": "persona_common" } }, "emote_selection_wheel/emote_slot_3_content": { "file": "ui/persona_common.json", "type": "panel", "extend": { "name": "emote_wheel_slot_content", "namespace": "persona_common" } }, "emote_wheel_panel": { "file": "ui/persona_common.json", "type": "panel", "extend": { "name": "main_panel", "namespace": "common_dialogs" }, "children": [ "emote_name", "emote_wheel_content_panel" ] }, "emote_wheel_panel/emote_name": { "file": "ui/persona_common.json", "type": "label", "extend": { "name": "emote_label", "namespace": "persona_common" } }, "emote_wheel_panel/emote_wheel_content_panel": { "file": "ui/persona_common.json", "type": "panel", "children": [ "gamepad_helpers", "keyboard_helpers", "emote_wheel" ] }, "emote_wheel_panel/emote_wheel_content_panel/gamepad_helpers": { "file": "ui/persona_common.json", "type": "panel", "extend": { "name": "gamepad_hotkey_helpers", "namespace": "persona_common" } }, "emote_wheel_panel/emote_wheel_content_panel/keyboard_helpers": { "file": "ui/persona_common.json", "type": "panel", "extend": { "name": "keyboard_hotkey_helpers", "namespace": "persona_common" } }, "emote_wheel_panel/emote_wheel_content_panel/emote_wheel": { "file": "ui/persona_common.json", "type": "selection_wheel", "extend": { "name": "emote_selection_wheel", "namespace": "persona_common" } } }, "persona_popups": { "no_content_panel": { "file": "ui/persona_popups.json", "type": "panel" }, "common_image": { "file": "ui/persona_popups.json", "type": "image" }, "common_icon": { "file": "ui/persona_popups.json", "type": "image", "extend": { "name": "common_image", "namespace": "persona_popups" } }, "create_persona_choice_checked_image": { "file": "ui/persona_popups.json", "type": "image", "extend": { "name": "common_image", "namespace": "persona_popups" } }, "create_persona_choice_unchecked_image": { "file": "ui/persona_popups.json", "type": "image", "extend": { "name": "common_image", "namespace": "persona_popups" } }, "modal_window_input_blocker": { "file": "ui/persona_popups.json", "type": "image", "extend": { "name": "common_image", "namespace": "persona_popups" } }, "modal_popup_background": { "file": "ui/persona_popups.json", "type": "image", "extend": { "name": "common_image", "namespace": "persona_popups" } }, "general_text_field": { "file": "ui/persona_popups.json", "type": "label" }, "title_text": { "file": "ui/persona_popups.json", "type": "label", "extend": { "name": "general_text_field", "namespace": "persona_popups" } }, "popup_title": { "file": "ui/persona_popups.json", "type": "label", "extend": { "name": "toast_label", "namespace": "toast_screen" } }, "popup_content": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "popup_ok_button": { "file": "ui/persona_popups.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "popup_frame": { "file": "ui/persona_popups.json", "type": "image", "extend": { "name": "dialog_background_hollow_2", "namespace": "common" }, "children": [ "title_label", "close_button", "content", "ok_button" ] }, "popup_frame/title_label": { "file": "ui/persona_popups.json", "type": "label", "extend": { "name": "popup_title", "namespace": "persona_popups" } }, "popup_frame/close_button": { "file": "ui/persona_popups.json", "type": "button", "extend": { "name": "close_button", "namespace": "common" } }, "popup_frame/content": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "popup_content", "namespace": "persona_popups" } }, "popup_frame/ok_button": { "file": "ui/persona_popups.json", "type": "button", "extend": { "name": "popup_ok_button", "namespace": "persona_popups" } }, "popup_info_panel": { "file": "ui/persona_popups.json", "type": "panel", "children": [ "background", "frame" ] }, "popup_info_panel/background": { "file": "ui/persona_popups.json", "type": "image", "extend": { "name": "modal_popup_background", "namespace": "persona_popups" } }, "popup_info_panel/frame": { "file": "ui/persona_popups.json", "type": "image", "extend": { "name": "popup_frame", "namespace": "persona_popups" } }, "common_dialog": { "file": "ui/persona_popups.json", "type": "input_panel", "extend": { "name": "popup_dialog", "namespace": "popup_dialog" }, "children": [ "background", "panel" ] }, "common_dialog/background": { "file": "ui/persona_popups.json", "type": "image", "extend": { "name": "modal_window_input_blocker", "namespace": "persona_popups" } }, "common_dialog/panel": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "popup_info_panel", "namespace": "persona_popups" } }, "popup_dialog_bg": { "file": "ui/persona_popups.json", "type": "image", "extend": { "name": "dialog_background_hollow_3", "namespace": "common_dialogs" }, "children": [ "background_image", "title_panel", "popup_content" ] }, "popup_dialog_bg/background_image": { "file": "ui/persona_popups.json", "type": "image" }, "popup_dialog_bg/title_panel": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "title" ] }, "popup_dialog_bg/title_panel/title": { "file": "ui/persona_popups.json", "type": "label" }, "popup_dialog_bg/popup_content": { "file": "ui/persona_popups.json", "type": "unknown" }, "icon_title_bar": { "file": "ui/persona_popups.json", "type": "stack_panel", "extend": { "name": "horizontal_stack_panel", "namespace": "common" }, "children": [ "icon", "padding", "text_title_panel" ] }, "icon_title_bar/icon": { "file": "ui/persona_popups.json", "type": "image", "extend": { "name": "common_icon", "namespace": "persona_popups" } }, "icon_title_bar/padding": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "icon_title_bar/text_title_panel": { "file": "ui/persona_popups.json", "type": "label", "extend": { "name": "title_text", "namespace": "persona_popups" } }, "popup_common": { "file": "ui/persona_popups.json", "type": "input_panel", "extend": { "name": "input_panel", "namespace": "common" }, "children": [ "background" ] }, "popup_common/background": { "file": "ui/persona_popups.json", "type": "image", "children": [ "text_stack_panel" ] }, "popup_common/background/text_stack_panel": { "file": "ui/persona_popups.json", "type": "label", "extend": { "name": "popup_title", "namespace": "persona_popups" } }, "popup_dialog__difference_information": { "file": "ui/persona_popups.json", "type": "input_panel", "extend": { "name": "common_dialog", "namespace": "persona_popups" } }, "differences_left_details": { "file": "ui/persona_popups.json", "type": "label", "extend": { "name": "general_text_field", "namespace": "persona_popups" } }, "differences_left_section": { "file": "ui/persona_popups.json", "type": "stack_panel", "extend": { "name": "vertical_stack_panel", "namespace": "common" }, "children": [ "title_bar", "padding_1", "details" ] }, "differences_left_section/title_bar": { "file": "ui/persona_popups.json", "type": "stack_panel", "extend": { "name": "icon_title_bar", "namespace": "persona_popups" } }, "differences_left_section/padding_1": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "differences_left_section/details": { "file": "ui/persona_popups.json", "type": "label", "extend": { "name": "differences_left_details", "namespace": "persona_popups" } }, "differences_detail_image": { "file": "ui/persona_popups.json", "type": "image", "extend": { "name": "common_image", "namespace": "persona_popups" } }, "differences_title_card_display": { "file": "ui/persona_popups.json", "type": "stack_panel", "extend": { "name": "horizontal_stack_panel", "namespace": "common" }, "children": [ "left", "padding_1", "right" ] }, "differences_title_card_display/left": { "file": "ui/persona_popups.json", "type": "stack_panel", "extend": { "name": "differences_left_section", "namespace": "persona_popups" } }, "differences_title_card_display/padding_1": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "differences_title_card_display/right": { "file": "ui/persona_popups.json", "type": "image", "extend": { "name": "differences_detail_image", "namespace": "persona_popups" } }, "differences_persona_detail_section": { "file": "ui/persona_popups.json", "type": "stack_panel", "extend": { "name": "differences_title_card_display", "namespace": "persona_popups" } }, "differences_classic_skin_detail_section": { "file": "ui/persona_popups.json", "type": "stack_panel", "extend": { "name": "differences_title_card_display", "namespace": "persona_popups" } }, "different_info_panel_contents": { "file": "ui/persona_popups.json", "type": "stack_panel", "extend": { "name": "vertical_stack_panel", "namespace": "common" }, "children": [ "character_display", "item_1_padding", "divider", "item_2_padding", "classic_skin_display" ] }, "different_info_panel_contents/character_display": { "file": "ui/persona_popups.json", "type": "stack_panel", "extend": { "name": "differences_persona_detail_section", "namespace": "persona_popups" } }, "different_info_panel_contents/item_1_padding": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "different_info_panel_contents/divider": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "horizontal_divider", "namespace": "common" } }, "different_info_panel_contents/item_2_padding": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "different_info_panel_contents/classic_skin_display": { "file": "ui/persona_popups.json", "type": "stack_panel", "extend": { "name": "differences_classic_skin_detail_section", "namespace": "persona_popups" } }, "popup_dialog__preview_difference_information": { "file": "ui/persona_popups.json", "type": "input_panel", "extend": { "name": "popup_dialog__difference_information", "namespace": "persona_popups" } }, "popup_dialog__delete_persona": { "file": "ui/persona_popups.json", "type": "input_panel", "extend": { "name": "popup_dialog", "namespace": "popup_dialog" }, "children": [ "popup_dialog_bg" ] }, "popup_dialog__delete_persona/popup_dialog_bg": { "file": "ui/persona_popups.json", "type": "image", "extend": { "name": "popup_dialog_bg", "namespace": "persona_popups" } }, "popup_dialog_delete_persona_content": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "image", "message", "buttons" ] }, "popup_dialog_delete_persona_content/image": { "file": "ui/persona_popups.json", "type": "image", "extend": { "name": "alex_warning", "namespace": "persona_popups" } }, "popup_dialog_delete_persona_content/message": { "file": "ui/persona_popups.json", "type": "label", "extend": { "name": "delete_popup_dialog_message", "namespace": "persona_popups" } }, "popup_dialog_delete_persona_content/buttons": { "file": "ui/persona_popups.json", "type": "stack_panel", "extend": { "name": "delete_persona_button_stack", "namespace": "persona_popups" } }, "alex_warning": { "file": "ui/persona_popups.json", "type": "image" }, "delete_popup_dialog_message": { "file": "ui/persona_popups.json", "type": "label", "extend": { "name": "popup_dialog_message", "namespace": "popup_dialog" } }, "delete_persona_button_stack": { "file": "ui/persona_popups.json", "type": "stack_panel", "extend": { "name": "horizontal_stack_panel", "namespace": "common" }, "children": [ "left_button", "padding", "right_button" ] }, "delete_persona_button_stack/left_button": { "file": "ui/persona_popups.json", "type": "button", "extend": { "name": "delete_persona_left_button", "namespace": "persona_popups" } }, "delete_persona_button_stack/padding": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "delete_persona_button_stack/right_button": { "file": "ui/persona_popups.json", "type": "button", "extend": { "name": "delete_persona_right_button", "namespace": "persona_popups" } }, "delete_persona_left_button": { "file": "ui/persona_popups.json", "type": "button", "extend": { "name": "popup_dialog_left_button", "namespace": "popup_dialog" } }, "delete_persona_right_button": { "file": "ui/persona_popups.json", "type": "button", "extend": { "name": "popup_dialog_right_button", "namespace": "popup_dialog" } }, "popup_dialog__create_persona": { "file": "ui/persona_popups.json", "type": "input_panel", "extend": { "name": "common_dialog", "namespace": "persona_popups" } }, "create_persona_display": { "file": "ui/persona_popups.json", "type": "stack_panel", "extend": { "name": "vertical_stack_panel", "namespace": "common" }, "children": [ "vertical_padding_2px", "stack_content" ] }, "create_persona_display/vertical_padding_2px": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "create_persona_display/stack_content": { "file": "ui/persona_popups.json", "type": "stack_panel", "extend": { "name": "create_persona_choice_stack", "namespace": "persona_popups" } }, "create_persona_choice_stack": { "file": "ui/persona_popups.json", "type": "stack_panel", "extend": { "name": "vertical_stack_panel", "namespace": "common" }, "children": [ "background1", "background2" ] }, "create_persona_choice_stack/background1": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "create_persona_choice_character", "namespace": "persona_popups" } }, "create_persona_choice_stack/background2": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "create_persona_choice_classic_skin", "namespace": "persona_popups" } }, "create_persona_choice_character": { "file": "ui/persona_popups.json", "type": "panel", "children": [ "create_persona_choice_character" ] }, "create_persona_choice_character/create_persona_choice_character": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "create_persona_choice_button", "namespace": "persona_popups" } }, "select_default_character_button_vertical_panel": { "file": "ui/persona_popups.json", "type": "stack_panel", "children": [ "padding", "select_default_character_button_panel" ] }, "select_default_character_button_vertical_panel/padding": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "select_default_character_button_vertical_panel/select_default_character_button_panel": { "file": "ui/persona_popups.json", "type": "panel", "children": [ "select_default_character_button" ] }, "select_default_character_button_vertical_panel/select_default_character_button_panel/select_default_character_button": { "file": "ui/persona_popups.json", "type": "button", "extend": { "name": "select_default_character_button", "namespace": "persona_popups" } }, "select_default_character_button": { "file": "ui/persona_popups.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "create_persona_choice_classic_skin": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "create_persona_choice_button", "namespace": "persona_popups" } }, "create_persona_choice_button": { "file": "ui/persona_popups.json", "type": "panel", "children": [ "choice_toggle" ] }, "create_persona_choice_button/choice_toggle": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "dark_vertical_form_fitting_content_toggle", "namespace": "common_toggles" } }, "create_persona_choice_background": { "file": "ui/persona_popups.json", "type": "stack_panel", "extend": { "name": "vertical_stack_panel", "namespace": "common" }, "children": [ "choice_title_bar", "choice_details_body", "choice_bottom_content" ] }, "create_persona_choice_background/choice_title_bar": { "file": "ui/persona_popups.json", "type": "stack_panel", "extend": { "name": "create_persona_choice_title_bar", "namespace": "persona_popups" } }, "create_persona_choice_background/choice_details_body": { "file": "ui/persona_popups.json", "type": "stack_panel", "extend": { "name": "create_persona_choice_detail_panel", "namespace": "persona_popups" } }, "create_persona_choice_background/choice_bottom_content": { "file": "ui/persona_popups.json", "type": "unknown" }, "create_persona_choice_title_bar": { "file": "ui/persona_popups.json", "type": "stack_panel", "extend": { "name": "horizontal_stack_panel", "namespace": "common" }, "children": [ "checkbox", "spacing", "icon_title" ] }, "create_persona_choice_title_bar/checkbox": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "create_persona_choice_check_positioning", "namespace": "persona_popups" } }, "create_persona_choice_title_bar/spacing": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "create_persona_choice_title_bar/icon_title": { "file": "ui/persona_popups.json", "type": "stack_panel", "extend": { "name": "create_persona_choice_icon_title", "namespace": "persona_popups" } }, "create_persona_choice_check_positioning": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "toggle_image" ] }, "create_persona_choice_check_positioning/toggle_image": { "file": "ui/persona_popups.json", "type": "unknown" }, "create_persona_choice_icon_title": { "file": "ui/persona_popups.json", "type": "stack_panel", "extend": { "name": "icon_title_bar", "namespace": "persona_popups" } }, "create_persona_choice_detail_panel": { "file": "ui/persona_popups.json", "type": "stack_panel", "extend": { "name": "horizontal_stack_panel", "namespace": "common" }, "children": [ "spacing", "choice_details_body" ] }, "create_persona_choice_detail_panel/spacing": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "create_persona_choice_detail_panel/choice_details_body": { "file": "ui/persona_popups.json", "type": "label", "extend": { "name": "create_persona_choice_detail", "namespace": "persona_popups" } }, "create_persona_choice_detail": { "file": "ui/persona_popups.json", "type": "label", "extend": { "name": "general_text_field", "namespace": "persona_popups" } }, "popup_dialog__invalid_custom_skin": { "file": "ui/persona_popups.json", "type": "input_panel", "extend": { "name": "popup_dialog", "namespace": "popup_dialog" }, "children": [ "popup_dialog_bg" ] }, "popup_dialog__invalid_custom_skin/popup_dialog_bg": { "file": "ui/persona_popups.json", "type": "image", "extend": { "name": "popup_dialog_bg", "namespace": "persona_popups" } }, "popup_dialog_invalid_custom_skin_content": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "popup_dialog_message", "popup_dialog_middle_button" ] }, "popup_dialog_invalid_custom_skin_content/popup_dialog_message": { "file": "ui/persona_popups.json", "type": "label", "extend": { "name": "popup_dialog_message", "namespace": "popup_dialog" } }, "popup_dialog_invalid_custom_skin_content/popup_dialog_middle_button": { "file": "ui/persona_popups.json", "type": "button", "extend": { "name": "popup_dialog_middle_button", "namespace": "popup_dialog" } }, "popup_dialog__upsell_without_store": { "file": "ui/persona_popups.json", "type": "input_panel", "extend": { "name": "popup_dialog__invalid_custom_skin", "namespace": "persona_popups" } }, "popup_dialog__choose_skin_type": { "file": "ui/persona_popups.json", "type": "input_panel", "extend": { "name": "popup_dialog", "namespace": "popup_dialog" }, "children": [ "popup_dialog_bg" ] }, "popup_dialog__choose_skin_type/popup_dialog_bg": { "file": "ui/persona_popups.json", "type": "image", "extend": { "name": "popup_dialog_bg", "namespace": "persona_popups" } }, "popup_dialog_choose_skin_type_content": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "popup_dialog_message", "left", "right" ] }, "popup_dialog_choose_skin_type_content/popup_dialog_message": { "file": "ui/persona_popups.json", "type": "label", "extend": { "name": "popup_dialog_message", "namespace": "popup_dialog" } }, "popup_dialog_choose_skin_type_content/left": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "popup_dialog_choose_skin_type_panel", "namespace": "persona_popups" } }, "popup_dialog_choose_skin_type_content/right": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "popup_dialog_choose_skin_type_panel", "namespace": "persona_popups" } }, "popup_dialog_choose_skin_type_panel": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "choose_skin_type_button" ] }, "popup_dialog_choose_skin_type_panel/choose_skin_type_button": { "file": "ui/persona_popups.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "popup_dialog_skin_model": { "file": "ui/persona_popups.json", "type": "panel", "children": [ "paper_doll" ] }, "popup_dialog_skin_model/paper_doll": { "file": "ui/persona_popups.json", "type": "custom" }, "popup_dialog__custom_skin_info": { "file": "ui/persona_popups.json", "type": "input_panel", "extend": { "name": "popup_dialog", "namespace": "popup_dialog" }, "children": [ "background_image", "popup_dialog_bg" ] }, "popup_dialog__custom_skin_info/background_image": { "file": "ui/persona_popups.json", "type": "image" }, "popup_dialog__custom_skin_info/popup_dialog_bg": { "file": "ui/persona_popups.json", "type": "image", "extend": { "name": "custom_skin_popup_dialog_bg", "namespace": "persona_popups" } }, "custom_skin_info_panel_text": { "file": "ui/persona_popups.json", "type": "label" }, "custom_skin_info_panel": { "file": "ui/persona_popups.json", "type": "panel", "children": [ "message", "button_group" ] }, "custom_skin_info_panel/message": { "file": "ui/persona_popups.json", "type": "label", "extend": { "name": "custom_skin_info_panel_text", "namespace": "persona_popups" } }, "custom_skin_info_panel/button_group": { "file": "ui/persona_popups.json", "type": "stack_panel", "extend": { "name": "custom_skin_info_button_collection", "namespace": "persona_popups" } }, "custom_skin_info_button_collection": { "file": "ui/persona_popups.json", "type": "stack_panel", "extend": { "name": "vertical_stack_panel", "namespace": "common" }, "children": [ "settings", "vertical_4_padding", "close" ] }, "custom_skin_info_button_collection/settings": { "file": "ui/persona_popups.json", "type": "button", "extend": { "name": "usage_limited_settings_profile_button", "namespace": "persona_popups" } }, "custom_skin_info_button_collection/vertical_4_padding": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "custom_skin_info_button_collection/close": { "file": "ui/persona_popups.json", "type": "button", "extend": { "name": "popup_dialog_close_button", "namespace": "persona_popups" } }, "popup_dialog_close_button": { "file": "ui/persona_popups.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "usage_limited_settings_profile_button": { "file": "ui/persona_popups.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "custom_skin_popup_dialog_bg": { "file": "ui/persona_popups.json", "type": "image", "extend": { "name": "dialog_background_hollow_1", "namespace": "common_dialogs" }, "children": [ "background_image", "vertical_align_title", "popup_content" ] }, "custom_skin_popup_dialog_bg/background_image": { "file": "ui/persona_popups.json", "type": "image" }, "custom_skin_popup_dialog_bg/vertical_align_title": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "title" ] }, "custom_skin_popup_dialog_bg/vertical_align_title/title": { "file": "ui/persona_popups.json", "type": "label" }, "custom_skin_popup_dialog_bg/popup_content": { "file": "ui/persona_popups.json", "type": "unknown" }, "popup_dialog__emote_equip_slot_editor": { "file": "ui/persona_popups.json", "type": "input_panel", "extend": { "name": "popup_dialog", "namespace": "popup_dialog" }, "children": [ "background_image", "popup_emote_wheel_dialog" ] }, "popup_dialog__emote_equip_slot_editor/background_image": { "file": "ui/persona_popups.json", "type": "image" }, "popup_dialog__emote_equip_slot_editor/popup_emote_wheel_dialog": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "popup_emote_wheel_dialog", "namespace": "persona_popups" } }, "popup_emote_wheel_dialog": { "file": "ui/persona_popups.json", "type": "panel", "children": [ "popup_background" ] }, "popup_emote_wheel_dialog/popup_background": { "file": "ui/persona_popups.json", "type": "image", "extend": { "name": "popup_dialog_bg", "namespace": "persona_popups" } }, "emote_equip_slot_content": { "file": "ui/persona_popups.json", "type": "panel", "children": [ "close", "emote_wheel_content_panel" ] }, "emote_equip_slot_content/close": { "file": "ui/persona_popups.json", "type": "button", "extend": { "name": "close_button", "namespace": "common" } }, "emote_equip_slot_content/emote_wheel_content_panel": { "file": "ui/persona_popups.json", "type": "panel", "children": [ "cancel", "emote_wheel_prompt_content" ] }, "emote_equip_slot_content/emote_wheel_content_panel/cancel": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "close_emote_popup_controller", "namespace": "persona_popups" } }, "emote_equip_slot_content/emote_wheel_content_panel/emote_wheel_prompt_content": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "squaring_panel", "namespace": "common" } }, "close_emote_popup_controller": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "close_ui" ] }, "close_emote_popup_controller/close_ui": { "file": "ui/persona_popups.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_dpad_left", "namespace": "common" } }, "emote_wheel_content": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "emote_wheel_panel", "namespace": "persona_common" } }, "popup_dialog__realms_plus_extra_info": { "file": "ui/persona_popups.json", "type": "input_panel", "extend": { "name": "popup_dialog", "namespace": "popup_dialog" }, "children": [ "background_image", "dialog_bg" ] }, "popup_dialog__realms_plus_extra_info/background_image": { "file": "ui/persona_popups.json", "type": "image" }, "popup_dialog__realms_plus_extra_info/dialog_bg": { "file": "ui/persona_popups.json", "type": "image", "extend": { "name": "realms_plus_extra_info_popup_dialog_bg", "namespace": "persona_popups" } }, "realms_plus_extra_info_popup_dialog_bg": { "file": "ui/persona_popups.json", "type": "image", "extend": { "name": "dialog_background_hollow_2", "namespace": "common_dialogs" }, "children": [ "background_image", "title", "popup_content" ] }, "realms_plus_extra_info_popup_dialog_bg/background_image": { "file": "ui/persona_popups.json", "type": "image" }, "realms_plus_extra_info_popup_dialog_bg/title": { "file": "ui/persona_popups.json", "type": "label", "extend": { "name": "realms_extra_info_panel_text", "namespace": "persona_popups" } }, "realms_plus_extra_info_popup_dialog_bg/popup_content": { "file": "ui/persona_popups.json", "type": "unknown" }, "realms_extra_info_panel_text": { "file": "ui/persona_popups.json", "type": "label" }, "realms_extra_info_panel": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "realms_extra", "button_group" ] }, "realms_extra_info_panel/realms_extra": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "realms_extra_info_content", "namespace": "persona_popups" } }, "realms_extra_info_panel/button_group": { "file": "ui/persona_popups.json", "type": "stack_panel", "extend": { "name": "realms_extra_info_button_collection", "namespace": "persona_popups" } }, "realms_extra_info_button_collection": { "file": "ui/persona_popups.json", "type": "stack_panel", "extend": { "name": "vertical_stack_panel", "namespace": "common" }, "children": [ "close" ] }, "realms_extra_info_button_collection/close": { "file": "ui/persona_popups.json", "type": "button", "extend": { "name": "popup_dialog_close_button", "namespace": "persona_popups" } }, "realms_extra_info_content": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "the_spread" ] }, "realms_extra_info_content/the_spread": { "file": "ui/persona_popups.json", "type": "stack_panel", "extend": { "name": "horizontal_stack_panel", "namespace": "common" }, "children": [ "pack_image", "horizontal_6_padding", "the_info_stack" ] }, "realms_extra_info_content/the_spread/pack_image": { "file": "ui/persona_popups.json", "type": "image", "extend": { "name": "realms_extra_info_pack_info", "namespace": "persona_popups" } }, "realms_extra_info_content/the_spread/horizontal_6_padding": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "realms_extra_info_content/the_spread/the_info_stack": { "file": "ui/persona_popups.json", "type": "stack_panel", "extend": { "name": "vertical_stack_panel", "namespace": "common" }, "children": [ "skins_and_world", "padding", "textures_and_usage" ] }, "realms_extra_info_content/the_spread/the_info_stack/skins_and_world": { "file": "ui/persona_popups.json", "type": "stack_panel", "extend": { "name": "pack_information_skins_and_world", "namespace": "persona_popups" } }, "realms_extra_info_content/the_spread/the_info_stack/padding": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "realms_extra_info_content/the_spread/the_info_stack/textures_and_usage": { "file": "ui/persona_popups.json", "type": "stack_panel", "extend": { "name": "pack_information_textures_and_usage_tooltip", "namespace": "persona_popups" } }, "pack_information_textures_and_usage_tooltip": { "file": "ui/persona_popups.json", "type": "stack_panel", "extend": { "name": "vertical_stack_panel", "namespace": "common" }, "children": [ "textures", "mid_padding", "appearance_status" ] }, "pack_information_textures_and_usage_tooltip/textures": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "skin_info_label_and_image", "namespace": "persona_popups" } }, "pack_information_textures_and_usage_tooltip/mid_padding": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "pack_information_textures_and_usage_tooltip/appearance_status": { "file": "ui/persona_popups.json", "type": "input_panel", "extend": { "name": "roamable_status_notification_panel", "namespace": "persona_popups" } }, "roamable_status_notification_panel": { "file": "ui/persona_popups.json", "type": "input_panel", "children": [ "appearance_status_notification", "roamable_status" ] }, "roamable_status_notification_panel/appearance_status_notification": { "file": "ui/persona_popups.json", "type": "button", "extend": { "name": "static_tooltip_notification_panel", "namespace": "common_buttons" } }, "roamable_status_notification_panel/roamable_status": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "skin_info_label_and_image", "namespace": "persona_popups" } }, "appearance_status_image_panel": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "usage_limited", "usage_not_limited" ] }, "appearance_status_image_panel/usage_limited": { "file": "ui/persona_popups.json", "type": "image", "extend": { "name": "info_bulb_icon", "namespace": "persona_common" } }, "appearance_status_image_panel/usage_not_limited": { "file": "ui/persona_popups.json", "type": "image", "extend": { "name": "green_checkmark_icon", "namespace": "persona_common" } }, "pack_information_skins_and_world": { "file": "ui/persona_popups.json", "type": "stack_panel", "extend": { "name": "vertical_stack_panel", "namespace": "common" }, "children": [ "skins", "mid_padding", "worlds" ] }, "pack_information_skins_and_world/skins": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "skin_info_label_and_image", "namespace": "persona_popups" } }, "pack_information_skins_and_world/mid_padding": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "pack_information_skins_and_world/worlds": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "skin_info_label_and_image", "namespace": "persona_popups" } }, "skin_info_label_and_image": { "file": "ui/persona_popups.json", "type": "panel", "children": [ "content_stack" ] }, "skin_info_label_and_image/content_stack": { "file": "ui/persona_popups.json", "type": "stack_panel", "extend": { "name": "skin_info_content_stack", "namespace": "persona_popups" } }, "skin_info_image_panel": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "image" ] }, "skin_info_image_panel/image": { "file": "ui/persona_popups.json", "type": "unknown" }, "skin_info_label_panel_label": { "file": "ui/persona_popups.json", "type": "label" }, "skin_info_label_panel": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "label" ] }, "skin_info_label_panel/label": { "file": "ui/persona_popups.json", "type": "label", "extend": { "name": "skin_info_label_panel_label", "namespace": "persona_popups" } }, "skin_info_content_stack": { "file": "ui/persona_popups.json", "type": "stack_panel", "extend": { "name": "horizontal_stack_panel", "namespace": "common" }, "children": [ "image_panel", "horizontal_2_padding", "label_panel" ] }, "skin_info_content_stack/image_panel": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "skin_info_image_panel", "namespace": "persona_popups" } }, "skin_info_content_stack/horizontal_2_padding": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "skin_info_content_stack/label_panel": { "file": "ui/persona_popups.json", "type": "panel", "extend": { "name": "skin_info_label_panel", "namespace": "persona_popups" } }, "realms_extra_info_pack_info": { "file": "ui/persona_popups.json", "type": "image" }, "popup_toast": { "file": "ui/persona_popups.json", "type": "input_panel", "extend": { "name": "popup_common", "namespace": "persona_popups" } } }, "undefined": {}, "play": { "label_background": { "file": "ui/play_screen.json", "type": "image" }, "dark_label_background": { "file": "ui/play_screen.json", "type": "image" }, "world_screenshot_base": { "file": "ui/play_screen.json", "type": "image" }, "collection_world_screenshot": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "world_screenshot_base", "namespace": "play" }, "children": [ "screenshot_picture" ] }, "collection_world_screenshot/screenshot_picture": { "file": "ui/play_screen.json", "type": "image", "children": [ "gradient_container_stacked_panel" ] }, "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "gradient_image_realmsplus_expired", "solid_image_realmsplus_expired" ] }, "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/gradient_image_realmsplus_expired": { "file": "ui/play_screen.json", "type": "image" }, "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/solid_image_realmsplus_expired": { "file": "ui/play_screen.json", "type": "image", "children": [ "exclamationmark" ] }, "collection_world_screenshot/screenshot_picture/gradient_container_stacked_panel/solid_image_realmsplus_expired/exclamationmark": { "file": "ui/play_screen.json", "type": "label" }, "world_item_grid_base": { "file": "ui/play_screen.json", "type": "grid" }, "edit_icon": { "file": "ui/play_screen.json", "type": "image" }, "realms_stories_icon": { "file": "ui/play_screen.json", "type": "image" }, "realms_stories_icon_animated": { "file": "ui/play_screen.json", "type": "image" }, "realms_slots_edit_icon": { "file": "ui/play_screen.json", "type": "image" }, "worlds_icon": { "file": "ui/play_screen.json", "type": "image" }, "realms_icon": { "file": "ui/play_screen.json", "type": "image" }, "realms_chevron": { "file": "ui/play_screen.json", "type": "image" }, "friends_icon_1": { "file": "ui/play_screen.json", "type": "image" }, "friends_icon_2": { "file": "ui/play_screen.json", "type": "image" }, "bell_icon": { "file": "ui/play_screen.json", "type": "image" }, "invite_icon": { "file": "ui/play_screen.json", "type": "image" }, "delete_icon": { "file": "ui/play_screen.json", "type": "image" }, "world_download_icon": { "file": "ui/play_screen.json", "type": "image" }, "third_party_servers_icon": { "file": "ui/play_screen.json", "type": "image" }, "lan_icon": { "file": "ui/play_screen.json", "type": "image" }, "friends_server_icon": { "file": "ui/play_screen.json", "type": "image" }, "cross_platform_friends_server_icon": { "file": "ui/play_screen.json", "type": "image" }, "realms_remove_icon": { "file": "ui/play_screen.json", "type": "image" }, "game_online_icon": { "file": "ui/play_screen.json", "type": "image" }, "game_offline_icon": { "file": "ui/play_screen.json", "type": "image" }, "game_unavailable_icon": { "file": "ui/play_screen.json", "type": "image" }, "import_icon": { "file": "ui/play_screen.json", "type": "image" }, "add_server_icon": { "file": "ui/play_screen.json", "type": "image" }, "server_tab_icon": { "file": "ui/play_screen.json", "type": "image" }, "realms_art_icon": { "file": "ui/play_screen.json", "type": "image" }, "realms_text_background": { "file": "ui/play_screen.json", "type": "image" }, "connected_storage": { "file": "ui/play_screen.json", "type": "image" }, "feedback_icon": { "file": "ui/play_screen.json", "type": "image" }, "local_only_storage": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "connected_storage", "namespace": "play" } }, "local_and_cloud_storage": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "connected_storage", "namespace": "play" } }, "cloud_only_storage": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "connected_storage", "namespace": "play" } }, "left_arrow_icon": { "file": "ui/play_screen.json", "type": "image" }, "right_arrow_icon": { "file": "ui/play_screen.json", "type": "image" }, "small_progress_panel": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "progress_loading_bars", "namespace": "progress" } }, "sign_in_realms_image": { "file": "ui/play_screen.json", "type": "panel", "children": [ "chevron", "portal" ] }, "sign_in_realms_image/chevron": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "realms_chevron", "namespace": "play" } }, "sign_in_realms_image/portal": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "realms_icon", "namespace": "play" } }, "realms_sign_in_prompt_label": { "file": "ui/play_screen.json", "type": "label" }, "realms_sign_in_prompt": { "file": "ui/play_screen.json", "type": "panel", "children": [ "realms_sign_in_prompt_label" ] }, "realms_sign_in_prompt/realms_sign_in_prompt_label": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "realms_sign_in_prompt_label", "namespace": "play" } }, "realms_sign_in_prompt_friends": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "realms_sign_in_prompt", "namespace": "play" }, "children": [ "realms_sign_in_prompt_label_friends" ] }, "realms_sign_in_prompt_friends/realms_sign_in_prompt_label_friends": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "realms_sign_in_prompt_label", "namespace": "play" } }, "sign_in_to_view_realms_content_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "sign_in_realms_image", "realms_sign_in_prompt" ] }, "sign_in_to_view_realms_content_panel/sign_in_realms_image": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "sign_in_realms_image", "namespace": "play" } }, "sign_in_to_view_realms_content_panel/realms_sign_in_prompt": { "file": "ui/play_screen.json", "type": "unknown" }, "sign_in_to_view_realms_content_panel_friends": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "sign_in_to_view_realms_content_panel", "namespace": "play" } }, "sign_in_to_view_realms_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "dark_content_button", "namespace": "common_buttons" } }, "sign_in_to_view_realms_button_friends": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "sign_in_to_view_realms_button", "namespace": "play" } }, "realms_list_text": { "file": "ui/play_screen.json", "type": "label" }, "realms_world_header": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "realms_list_text", "namespace": "play" } }, "realms_world_details": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "realms_list_text", "namespace": "play" } }, "realms_world_type": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "realms_list_text", "namespace": "play" } }, "realms_world_player_count": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "world_list_text", "namespace": "play" } }, "realms_world_game_status_icon": { "file": "ui/play_screen.json", "type": "panel", "children": [ "game_online_icon", "game_unavailable_icon", "game_offline_icon" ] }, "realms_world_game_status_icon/game_online_icon": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "game_online_icon", "namespace": "play" } }, "realms_world_game_status_icon/game_unavailable_icon": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "game_unavailable_icon", "namespace": "play" } }, "realms_world_game_status_icon/game_offline_icon": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "game_offline_icon", "namespace": "play" } }, "realms_world_text_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "realms_world_header", "realms_world_details" ] }, "realms_world_text_panel/realms_world_header": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "realms_world_header", "namespace": "play" } }, "realms_world_text_panel/realms_world_details": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "realms_world_details", "namespace": "play" } }, "realms_world_trial_text_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "realms_world_header_text", "realms_world_details" ] }, "realms_world_trial_text_panel/realms_world_header_text": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "realms_list_text", "namespace": "play" } }, "realms_world_trial_text_panel/realms_world_details": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "realms_list_text", "namespace": "play" } }, "realms_world_content_text_area_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "realms_world_text_panel" ] }, "realms_world_content_text_area_panel/realms_world_text_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "realms_world_text_panel", "namespace": "play" } }, "realms_trial_content_text_area_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "realms_world_trial_text_panel" ] }, "realms_trial_content_text_area_panel/realms_world_trial_text_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "realms_world_trial_text_panel", "namespace": "play" } }, "realms_world_content_status_area_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "world_player_count_text_panel", "padding", "realms_world_game_status_icon" ] }, "realms_world_content_status_area_panel/world_player_count_text_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "realms_world_player_count" ] }, "realms_world_content_status_area_panel/world_player_count_text_panel/realms_world_player_count": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "realms_world_player_count", "namespace": "play" } }, "realms_world_content_status_area_panel/padding": { "file": "ui/play_screen.json", "type": "panel" }, "realms_world_content_status_area_panel/realms_world_game_status_icon": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "realms_world_game_status_icon", "namespace": "play" } }, "realms_world_content_status_area_panel_container": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "realms_world_status_panel", "realms_world_type" ] }, "realms_world_content_status_area_panel_container/realms_world_status_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "realms_world_content_status_area_panel" ] }, "realms_world_content_status_area_panel_container/realms_world_status_panel/realms_world_content_status_area_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "realms_world_content_status_area_panel", "namespace": "play" } }, "realms_world_content_status_area_panel_container/realms_world_type": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "realms_world_type", "namespace": "play" } }, "realms_world_content_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "realm_screenshot", "padding", "realms_world_content_text_area_panel", "realms_world_content_status_area_panel" ] }, "realms_world_content_panel/realm_screenshot": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "realm_screenshot", "namespace": "play" } }, "realms_world_content_panel/padding": { "file": "ui/play_screen.json", "type": "panel" }, "realms_world_content_panel/realms_world_content_text_area_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "realms_world_content_text_area_panel", "namespace": "play" } }, "realms_world_content_panel/realms_world_content_status_area_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "realms_world_content_status_area_panel_container" ] }, "realms_world_content_panel/realms_world_content_status_area_panel/realms_world_content_status_area_panel_container": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "realms_world_content_status_area_panel_container", "namespace": "play" } }, "realms_trial_content_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "realm_screenshot", "padding", "realms_trial_content_text_area_panel" ] }, "realms_trial_content_panel/realm_screenshot": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "realm_screenshot", "namespace": "play" } }, "realms_trial_content_panel/padding": { "file": "ui/play_screen.json", "type": "panel" }, "realms_trial_content_panel/realms_trial_content_text_area_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "realms_trial_content_text_area_panel", "namespace": "play" } }, "realms_world_item_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "dark_content_button", "namespace": "common_buttons" } }, "realms_world_edit_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "dark_glyph_button", "namespace": "common_buttons" } }, "realms_feed_button_content": { "file": "ui/play_screen.json", "type": "image", "children": [ "default_icon", "unread_icon_active" ] }, "realms_feed_button_content/default_icon": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "realms_stories_icon", "namespace": "play" } }, "realms_feed_button_content/unread_icon_active": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "realms_stories_icon_animated", "namespace": "play" } }, "persistent_realms_feed_button_control": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "new_ui_button_panel", "namespace": "common_buttons" } }, "realms_feed_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "dark_glyph_button_with_custom_control", "namespace": "common_buttons" } }, "leave_friends_realm_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "dark_glyph_button", "namespace": "common_buttons" } }, "unread_story_count_text": { "file": "ui/play_screen.json", "type": "label" }, "unread_story_count_text_background": { "file": "ui/play_screen.json", "type": "image" }, "unread_story_count_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "text" ] }, "unread_story_count_panel/text": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "unread_story_count_text", "namespace": "play" }, "children": [ "background" ] }, "unread_story_count_panel/text/background": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "unread_story_count_text_background", "namespace": "play" } }, "realms_world_item": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "realms_button_panel", "edit_panel", "feed_panel_with_unread_count", "leave_realm_panel" ] }, "realms_world_item/realms_button_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "realms_world_item_button", "tts_border" ] }, "realms_world_item/realms_button_panel/realms_world_item_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "realms_world_item_button", "namespace": "play" } }, "realms_world_item/realms_button_panel/tts_border": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "tts_activate_sibling", "namespace": "common" } }, "realms_world_item/edit_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "realms_world_edit_button", "realms_world_expiry_notification_image" ] }, "realms_world_item/edit_panel/realms_world_edit_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "realms_world_edit_button", "namespace": "play" } }, "realms_world_item/edit_panel/realms_world_expiry_notification_image": { "file": "ui/play_screen.json", "type": "image" }, "realms_world_item/feed_panel_with_unread_count": { "file": "ui/play_screen.json", "type": "panel", "children": [ "feed_panel", "unread_story_count" ] }, "realms_world_item/feed_panel_with_unread_count/feed_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "realms_feed_button" ] }, "realms_world_item/feed_panel_with_unread_count/feed_panel/realms_feed_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "realms_feed_button", "namespace": "play" } }, "realms_world_item/feed_panel_with_unread_count/unread_story_count": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "unread_story_count_panel", "namespace": "play" } }, "realms_world_item/leave_realm_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "leave_friends_realm_button" ] }, "realms_world_item/leave_realm_panel/leave_friends_realm_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "leave_friends_realm_button", "namespace": "play" } }, "realms_world_item_grid": { "file": "ui/play_screen.json", "type": "grid", "extend": { "name": "world_item_grid_base", "namespace": "play" } }, "network_world_header": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "network_world_header_icon", "spacer", "header_panel" ] }, "network_world_header/network_world_header_icon": { "file": "ui/play_screen.json", "type": "image" }, "network_world_header/spacer": { "file": "ui/play_screen.json", "type": "panel" }, "network_world_header/header_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "network_world_header_text" ] }, "network_world_header/header_panel/network_world_header_text": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "world_list_text", "namespace": "play" } }, "network_world_details": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "world_list_text", "namespace": "play" } }, "network_world_player_count": { "file": "ui/play_screen.json", "type": "panel", "children": [ "count" ] }, "network_world_player_count/count": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "world_list_text", "namespace": "play" } }, "network_world_game_status_icon": { "file": "ui/play_screen.json", "type": "panel", "children": [ "game_online_icon", "game_unavailable_icon", "game_offline_icon" ] }, "network_world_game_status_icon/game_online_icon": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "game_online_icon", "namespace": "play" } }, "network_world_game_status_icon/game_unavailable_icon": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "game_unavailable_icon", "namespace": "play" } }, "network_world_game_status_icon/game_offline_icon": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "game_offline_icon", "namespace": "play" } }, "network_world_text_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "network_world_header", "network_world_details" ] }, "network_world_text_panel/network_world_header": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "network_world_header", "namespace": "play" } }, "network_world_text_panel/network_world_details": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "network_world_details", "namespace": "play" } }, "network_world_content_text_area_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "network_world_text_panel" ] }, "network_world_content_text_area_panel/network_world_text_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "network_world_text_panel", "namespace": "play" } }, "network_world_content_status_area_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "network_player_count_text_panel", "padding", "network_world_game_status_icon" ] }, "network_world_content_status_area_panel/network_player_count_text_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "network_world_player_count" ] }, "network_world_content_status_area_panel/network_player_count_text_panel/network_world_player_count": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "network_world_player_count", "namespace": "play" } }, "network_world_content_status_area_panel/padding": { "file": "ui/play_screen.json", "type": "panel" }, "network_world_content_status_area_panel/network_world_game_status_icon": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "network_world_game_status_icon", "namespace": "play" } }, "network_world_content_status_area_panel_container": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "network_world_status_panel", "network_world_type" ] }, "network_world_content_status_area_panel_container/network_world_status_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "network_world_content_status_area_panel" ] }, "network_world_content_status_area_panel_container/network_world_status_panel/network_world_content_status_area_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "network_world_content_status_area_panel", "namespace": "play" } }, "network_world_content_status_area_panel_container/network_world_type": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "network_world_type", "namespace": "play" } }, "network_world_type": { "file": "ui/play_screen.json", "type": "panel", "children": [ "type" ] }, "network_world_type/type": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "world_list_text", "namespace": "play" } }, "network_world_item_button_content": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "network_world_content_text_area_panel", "network_status_area_panel", "network_world_type_icon" ] }, "network_world_item_button_content/network_world_content_text_area_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "network_world_content_text_area_panel", "namespace": "play" } }, "network_world_item_button_content/network_status_area_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "network_world_content_status_area_panel_container" ] }, "network_world_item_button_content/network_status_area_panel/network_world_content_status_area_panel_container": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "network_world_content_status_area_panel_container", "namespace": "play" } }, "network_world_item_button_content/network_world_type_icon": { "file": "ui/play_screen.json", "type": "label", "children": [ "padding" ] }, "network_world_item_button_content/network_world_type_icon/padding": { "file": "ui/play_screen.json", "type": "panel" }, "network_world_item_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "dark_content_button", "namespace": "common_buttons" } }, "network_server_world_edit_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "dark_glyph_button", "namespace": "common_buttons" } }, "network_world_item": { "file": "ui/play_screen.json", "type": "panel", "children": [ "network_world_item_button", "tts_border" ] }, "network_world_item/network_world_item_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "network_world_item_button", "namespace": "play" } }, "network_world_item/tts_border": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "tts_activate_sibling", "namespace": "common" } }, "network_world_item_grid": { "file": "ui/play_screen.json", "type": "grid", "extend": { "name": "world_item_grid_base", "namespace": "play" } }, "network_world_item_ignore_crossplay": { "file": "ui/play_screen.json", "type": "panel", "children": [ "network_world_item_button" ] }, "network_world_item_ignore_crossplay/network_world_item_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "network_world_item_button", "namespace": "play" } }, "label_content_template": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "label_panel", "content" ] }, "label_content_template/label_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "label_panel_layout" ] }, "label_content_template/label_panel/label_panel_layout": { "file": "ui/play_screen.json", "type": "panel", "children": [ "label" ] }, "label_content_template/label_panel/label_panel_layout/label": { "file": "ui/play_screen.json", "type": "label" }, "label_content_template/content": { "file": "ui/play_screen.json", "type": "unknown" }, "information_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "background", "focus_button" ] }, "information_panel/background": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "dark_label_background", "namespace": "play" }, "children": [ "label_panel_layout" ] }, "information_panel/background/label_panel_layout": { "file": "ui/play_screen.json", "type": "panel", "children": [ "label" ] }, "information_panel/background/label_panel_layout/label": { "file": "ui/play_screen.json", "type": "label" }, "information_panel/focus_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "non_interact_focus_border_button", "namespace": "common" } }, "blocked_multiplayer_privileges_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "background" ] }, "blocked_multiplayer_privileges_panel/background": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "dark_label_background", "namespace": "play" }, "children": [ "label_panel_layout" ] }, "blocked_multiplayer_privileges_panel/background/label_panel_layout": { "file": "ui/play_screen.json", "type": "panel", "children": [ "label" ] }, "blocked_multiplayer_privileges_panel/background/label_panel_layout/label": { "file": "ui/play_screen.json", "type": "label" }, "more_servers_grid": { "file": "ui/play_screen.json", "type": "grid" }, "additional_server_toggle_content": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "network_world_content_text_area_panel" ] }, "additional_server_toggle_content/network_world_content_text_area_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "network_world_content_text_area_panel", "namespace": "play" } }, "more_servers_label_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "list_label" ] }, "more_servers_label_panel/list_label": { "file": "ui/play_screen.json", "type": "label" }, "more_servers_world_item": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "additional_server_toggle_base", "network_server_world_edit_button" ] }, "more_servers_world_item/additional_server_toggle_base": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "server_toggle_base", "namespace": "play" } }, "more_servers_world_item/network_server_world_edit_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "network_server_world_edit_button", "namespace": "play" } }, "additional_server_info_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "common_scroll_pane", "namespace": "play" }, "children": [ "server_info_stack_panel" ] }, "additional_server_info_panel/server_info_stack_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "padding_1", "server_name", "padding_2", "player_count", "padding_3", "ping", "padding_4", "join_server_button" ] }, "additional_server_info_panel/server_info_stack_panel/padding_1": { "file": "ui/play_screen.json", "type": "panel" }, "additional_server_info_panel/server_info_stack_panel/server_name": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "world_list_text", "namespace": "play" } }, "additional_server_info_panel/server_info_stack_panel/padding_2": { "file": "ui/play_screen.json", "type": "panel" }, "additional_server_info_panel/server_info_stack_panel/player_count": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "text_icon_number_panel", "namespace": "play" } }, "additional_server_info_panel/server_info_stack_panel/padding_3": { "file": "ui/play_screen.json", "type": "panel" }, "additional_server_info_panel/server_info_stack_panel/ping": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "text_icon_number_panel", "namespace": "play" } }, "additional_server_info_panel/server_info_stack_panel/padding_4": { "file": "ui/play_screen.json", "type": "panel" }, "additional_server_info_panel/server_info_stack_panel/join_server_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "ping_rate_icon": { "file": "ui/play_screen.json", "type": "image" }, "ping_rate_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "concurrency_stack" ] }, "ping_rate_panel/concurrency_stack": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "player_count", "padding_0", "ping_rate_icon" ] }, "ping_rate_panel/concurrency_stack/player_count": { "file": "ui/play_screen.json", "type": "label" }, "ping_rate_panel/concurrency_stack/padding_0": { "file": "ui/play_screen.json", "type": "panel" }, "ping_rate_panel/concurrency_stack/ping_rate_icon": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "ping_rate_icon", "namespace": "play" } }, "add_server_info_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "common_scroll_pane", "namespace": "play" }, "children": [ "server_info_stack_panel" ] }, "add_server_info_panel/server_info_stack_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "padding_0", "add_server_title", "padding_1", "add_server_description" ] }, "add_server_info_panel/server_info_stack_panel/padding_0": { "file": "ui/play_screen.json", "type": "panel" }, "add_server_info_panel/server_info_stack_panel/add_server_title": { "file": "ui/play_screen.json", "type": "label" }, "add_server_info_panel/server_info_stack_panel/padding_1": { "file": "ui/play_screen.json", "type": "panel" }, "add_server_info_panel/server_info_stack_panel/add_server_description": { "file": "ui/play_screen.json", "type": "label" }, "third_party_featured_server_grid": { "file": "ui/play_screen.json", "type": "grid" }, "featured_server_world_item": { "file": "ui/play_screen.json", "type": "panel", "children": [ "server_button" ] }, "featured_server_world_item/server_button": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "server_toggle_base", "namespace": "play" } }, "server_button_content_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "top_panel", "padding", "bottom_panel" ] }, "server_button_content_panel/top_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "third_party_server_screenshot", "padding_0", "title_panel" ] }, "server_button_content_panel/top_panel/third_party_server_screenshot": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "third_party_server_screenshot", "namespace": "play" } }, "server_button_content_panel/top_panel/padding_0": { "file": "ui/play_screen.json", "type": "panel" }, "server_button_content_panel/top_panel/title_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "third_party_server_name", "progress" ] }, "server_button_content_panel/top_panel/title_panel/third_party_server_name": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "world_list_text", "namespace": "play" } }, "server_button_content_panel/top_panel/title_panel/progress": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "progress_loading_bars", "namespace": "progress" } }, "server_button_content_panel/padding": { "file": "ui/play_screen.json", "type": "panel" }, "server_button_content_panel/bottom_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "third_party_server_message" ] }, "server_button_content_panel/bottom_panel/third_party_server_message": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "world_list_text", "namespace": "play" } }, "third_party_server_content_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "ping_rate_panel" ] }, "third_party_server_content_panel/ping_rate_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "ping_rate_panel", "namespace": "play" } }, "loading_featured_servers_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "load_bars" ] }, "loading_featured_servers_panel/load_bars": { "file": "ui/play_screen.json", "type": "panel", "children": [ "progress_loading_bars" ] }, "loading_featured_servers_panel/load_bars/progress_loading_bars": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "progress_loading_bars", "namespace": "common_store" } }, "third_party_server_screenshot": { "file": "ui/play_screen.json", "type": "image", "children": [ "picture" ] }, "third_party_server_screenshot/picture": { "file": "ui/play_screen.json", "type": "image" }, "third_party_server_info_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "common_scroll_pane", "namespace": "play" }, "children": [ "server_info_stack_panel", "progress" ] }, "third_party_server_info_panel/server_info_stack_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "padding_0", "server_screenshot", "padding_1", "server_name", "padding_2", "player_count", "padding_3", "ping", "padding_4", "join_server_button", "view_offers_button", "padding_5", "screenshots_section", "description_section", "games_section", "news_section" ] }, "third_party_server_info_panel/server_info_stack_panel/padding_0": { "file": "ui/play_screen.json", "type": "panel" }, "third_party_server_info_panel/server_info_stack_panel/server_screenshot": { "file": "ui/play_screen.json", "type": "image" }, "third_party_server_info_panel/server_info_stack_panel/padding_1": { "file": "ui/play_screen.json", "type": "panel" }, "third_party_server_info_panel/server_info_stack_panel/server_name": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "world_list_text", "namespace": "play" } }, "third_party_server_info_panel/server_info_stack_panel/padding_2": { "file": "ui/play_screen.json", "type": "panel" }, "third_party_server_info_panel/server_info_stack_panel/player_count": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "text_icon_number_panel", "namespace": "play" } }, "third_party_server_info_panel/server_info_stack_panel/padding_3": { "file": "ui/play_screen.json", "type": "panel" }, "third_party_server_info_panel/server_info_stack_panel/ping": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "text_icon_number_panel", "namespace": "play" } }, "third_party_server_info_panel/server_info_stack_panel/padding_4": { "file": "ui/play_screen.json", "type": "panel" }, "third_party_server_info_panel/server_info_stack_panel/join_server_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "third_party_server_info_panel/server_info_stack_panel/view_offers_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "third_party_server_info_panel/server_info_stack_panel/padding_5": { "file": "ui/play_screen.json", "type": "panel" }, "third_party_server_info_panel/server_info_stack_panel/screenshots_section": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "screenshots_section_panel", "namespace": "play" } }, "third_party_server_info_panel/server_info_stack_panel/description_section": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "description_section_panel", "namespace": "play" } }, "third_party_server_info_panel/server_info_stack_panel/games_section": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "games_section_panel", "namespace": "play" } }, "third_party_server_info_panel/server_info_stack_panel/news_section": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "news_section_panel", "namespace": "play" } }, "third_party_server_info_panel/progress": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "progress_loading_bars", "namespace": "progress" } }, "text_icon_number_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "text", "padding_0", "stack_panel" ] }, "text_icon_number_panel/text": { "file": "ui/play_screen.json", "type": "label" }, "text_icon_number_panel/padding_0": { "file": "ui/play_screen.json", "type": "panel" }, "text_icon_number_panel/stack_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "icon_panel", "padding_1", "number" ] }, "text_icon_number_panel/stack_panel/icon_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "icon" ] }, "text_icon_number_panel/stack_panel/icon_panel/icon": { "file": "ui/play_screen.json", "type": "image" }, "text_icon_number_panel/stack_panel/padding_1": { "file": "ui/play_screen.json", "type": "panel" }, "text_icon_number_panel/stack_panel/number": { "file": "ui/play_screen.json", "type": "label" }, "grey_bar_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "grey_bar", "green_bar", "padding" ] }, "grey_bar_panel/grey_bar": { "file": "ui/play_screen.json", "type": "image" }, "grey_bar_panel/green_bar": { "file": "ui/play_screen.json", "type": "image" }, "grey_bar_panel/padding": { "file": "ui/play_screen.json", "type": "panel" }, "screenshots_section_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "divider_0", "padding_0", "screenshots_label", "padding_1", "screenshots", "padding_2", "navigation_panel", "padding_3" ] }, "screenshots_section_panel/divider_0": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "horizontal_divider", "namespace": "common" } }, "screenshots_section_panel/padding_0": { "file": "ui/play_screen.json", "type": "panel" }, "screenshots_section_panel/screenshots_label": { "file": "ui/play_screen.json", "type": "label" }, "screenshots_section_panel/padding_1": { "file": "ui/play_screen.json", "type": "panel" }, "screenshots_section_panel/screenshots": { "file": "ui/play_screen.json", "type": "image" }, "screenshots_section_panel/padding_2": { "file": "ui/play_screen.json", "type": "panel" }, "screenshots_section_panel/navigation_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "left_arrow_button", "padding_0", "navigation_bar", "padding_1", "right_arrow_button" ] }, "screenshots_section_panel/navigation_panel/left_arrow_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "screenshots_section_panel/navigation_panel/padding_0": { "file": "ui/play_screen.json", "type": "panel" }, "screenshots_section_panel/navigation_panel/navigation_bar": { "file": "ui/play_screen.json", "type": "panel", "children": [ "grey_bar" ] }, "screenshots_section_panel/navigation_panel/navigation_bar/grey_bar": { "file": "ui/play_screen.json", "type": "image", "children": [ "grey_bar_factory_panel" ] }, "screenshots_section_panel/navigation_panel/navigation_bar/grey_bar/grey_bar_factory_panel": { "file": "ui/play_screen.json", "type": "stack_panel" }, "screenshots_section_panel/navigation_panel/padding_1": { "file": "ui/play_screen.json", "type": "panel" }, "screenshots_section_panel/navigation_panel/right_arrow_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "screenshots_section_panel/padding_3": { "file": "ui/play_screen.json", "type": "panel" }, "description_text_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "contents_description" ] }, "description_text_panel/contents_description": { "file": "ui/play_screen.json", "type": "label" }, "description_section_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "divider_0", "padding_0", "description_label", "padding_1", "read_more_panel", "padding_3" ] }, "description_section_panel/divider_0": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "horizontal_divider", "namespace": "common" } }, "description_section_panel/padding_0": { "file": "ui/play_screen.json", "type": "panel" }, "description_section_panel/description_label": { "file": "ui/play_screen.json", "type": "label" }, "description_section_panel/padding_1": { "file": "ui/play_screen.json", "type": "panel" }, "description_section_panel/read_more_panel": { "file": "ui/play_screen.json", "type": "image", "children": [ "description_text_small", "description_text_full", "description_read_more_button_panel", "description_read_less_button_panel" ] }, "description_section_panel/read_more_panel/description_text_small": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "description_text_panel", "namespace": "play" } }, "description_section_panel/read_more_panel/description_text_full": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "description_text_panel", "namespace": "play" } }, "description_section_panel/read_more_panel/description_read_more_button_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "read_button", "namespace": "common_buttons" } }, "description_section_panel/read_more_panel/description_read_less_button_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "read_button", "namespace": "common_buttons" } }, "description_section_panel/padding_3": { "file": "ui/play_screen.json", "type": "panel" }, "games_factory_object": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "games_factory_panel", "padding" ] }, "games_factory_object/games_factory_panel": { "file": "ui/play_screen.json", "type": "image", "children": [ "top_panel", "bottom_panel" ] }, "games_factory_object/games_factory_panel/top_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "game_image_panel", "padding", "game_title_panel" ] }, "games_factory_object/games_factory_panel/top_panel/game_image_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "game_image" ] }, "games_factory_object/games_factory_panel/top_panel/game_image_panel/game_image": { "file": "ui/play_screen.json", "type": "image" }, "games_factory_object/games_factory_panel/top_panel/padding": { "file": "ui/play_screen.json", "type": "panel" }, "games_factory_object/games_factory_panel/top_panel/game_title_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "game_title", "game_subtitle" ] }, "games_factory_object/games_factory_panel/top_panel/game_title_panel/game_title": { "file": "ui/play_screen.json", "type": "label" }, "games_factory_object/games_factory_panel/top_panel/game_title_panel/game_subtitle": { "file": "ui/play_screen.json", "type": "label" }, "games_factory_object/games_factory_panel/bottom_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "bottom_panel" ] }, "games_factory_object/games_factory_panel/bottom_panel/bottom_panel": { "file": "ui/play_screen.json", "type": "label" }, "games_factory_object/padding": { "file": "ui/play_screen.json", "type": "panel" }, "games_section_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "divider_0", "padding_0", "description_label", "padding_1", "games_factory_panel", "padding_3" ] }, "games_section_panel/divider_0": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "horizontal_divider", "namespace": "common" } }, "games_section_panel/padding_0": { "file": "ui/play_screen.json", "type": "panel" }, "games_section_panel/description_label": { "file": "ui/play_screen.json", "type": "label" }, "games_section_panel/padding_1": { "file": "ui/play_screen.json", "type": "panel" }, "games_section_panel/games_factory_panel": { "file": "ui/play_screen.json", "type": "stack_panel" }, "games_section_panel/padding_3": { "file": "ui/play_screen.json", "type": "panel" }, "news_text_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "contents_news" ] }, "news_text_panel/contents_news": { "file": "ui/play_screen.json", "type": "label" }, "news_section_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "divider_0", "padding_0", "news_label", "padding_1", "read_more_panel", "padding_3" ] }, "news_section_panel/divider_0": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "horizontal_divider", "namespace": "common" } }, "news_section_panel/padding_0": { "file": "ui/play_screen.json", "type": "panel" }, "news_section_panel/news_label": { "file": "ui/play_screen.json", "type": "label" }, "news_section_panel/padding_1": { "file": "ui/play_screen.json", "type": "panel" }, "news_section_panel/read_more_panel": { "file": "ui/play_screen.json", "type": "image", "children": [ "text_stack_panel", "news_read_more_button_panel", "news_read_less_button_panel" ] }, "news_section_panel/read_more_panel/text_stack_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "news_title_text", "divider_panel", "news_text_small", "news_text_full" ] }, "news_section_panel/read_more_panel/text_stack_panel/news_title_text": { "file": "ui/play_screen.json", "type": "label" }, "news_section_panel/read_more_panel/text_stack_panel/divider_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "divider_0" ] }, "news_section_panel/read_more_panel/text_stack_panel/divider_panel/divider_0": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "horizontal_divider", "namespace": "common" } }, "news_section_panel/read_more_panel/text_stack_panel/news_text_small": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "news_text_panel", "namespace": "play" } }, "news_section_panel/read_more_panel/text_stack_panel/news_text_full": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "news_text_panel", "namespace": "play" } }, "news_section_panel/read_more_panel/news_read_more_button_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "read_button", "namespace": "common_buttons" } }, "news_section_panel/read_more_panel/news_read_less_button_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "read_button", "namespace": "common_buttons" } }, "news_section_panel/padding_3": { "file": "ui/play_screen.json", "type": "panel" }, "divider": { "file": "ui/play_screen.json", "type": "image" }, "blue_diskspace_bar": { "file": "ui/play_screen.json", "type": "image" }, "green_diskspace_bar": { "file": "ui/play_screen.json", "type": "image" }, "empty_diskspace_bar": { "file": "ui/play_screen.json", "type": "image" }, "legacy_world_content_status_area_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "world_storage_content_panel" ] }, "legacy_world_content_status_area_panel/world_storage_content_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "world_storage_separator", "world_storage_information" ] }, "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_separator": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "divider", "namespace": "play" } }, "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "legacy_world_label", "padding", "legacy_world_bar" ] }, "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_label": { "file": "ui/play_screen.json", "type": "label" }, "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/padding": { "file": "ui/play_screen.json", "type": "panel" }, "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar": { "file": "ui/play_screen.json", "type": "panel", "children": [ "local_diskspace_bar", "legacy_diskspace_bar", "empty_diskspace_bar" ] }, "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/local_diskspace_bar": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "green_diskspace_bar", "namespace": "play" } }, "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/legacy_diskspace_bar": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "blue_diskspace_bar", "namespace": "play" } }, "legacy_world_content_status_area_panel/world_storage_content_panel/world_storage_information/legacy_world_bar/empty_diskspace_bar": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "empty_diskspace_bar", "namespace": "play" } }, "world_list_text": { "file": "ui/play_screen.json", "type": "label" }, "realm_screenshot": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "world_screenshot_base", "namespace": "play" }, "children": [ "picture" ] }, "realm_screenshot/picture": { "file": "ui/play_screen.json", "type": "image" }, "local_world_name": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "world_list_text", "namespace": "play" } }, "legacy_world_name": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "world_list_text", "namespace": "play" } }, "world_lock": { "file": "ui/play_screen.json", "type": "image" }, "local_world_game_mode": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "world_list_text", "namespace": "play" } }, "legacy_world_game_mode": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "world_list_text", "namespace": "play" } }, "local_world_date": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "world_list_text", "namespace": "play" } }, "legacy_world_date": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "world_list_text", "namespace": "play" } }, "local_world_filesize": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "world_list_text", "namespace": "play" } }, "legacy_world_filesize": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "world_list_text", "namespace": "play" } }, "local_world_connected_storage": { "file": "ui/play_screen.json", "type": "panel", "children": [ "local_and_cloud", "local_only", "cloud_only" ] }, "local_world_connected_storage/local_and_cloud": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "local_and_cloud_storage", "namespace": "play" } }, "local_world_connected_storage/local_only": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "local_only_storage", "namespace": "play" } }, "local_world_connected_storage/cloud_only": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "cloud_only_storage", "namespace": "play" } }, "local_world_lock_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "lock" ] }, "local_world_lock_panel/lock": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "world_lock", "namespace": "play" } }, "realms_plus_banner": { "file": "ui/play_screen.json", "type": "panel", "children": [ "realms_banner" ] }, "realms_plus_banner/realms_banner": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "markdown_background", "namespace": "realmsPlus" } }, "local_world_text_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "text_indent" ] }, "local_world_text_panel/text_indent": { "file": "ui/play_screen.json", "type": "panel", "children": [ "top_side", "bottom_side" ] }, "local_world_text_panel/text_indent/top_side": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "local_world_name", "lock_1", "local_world_date" ] }, "local_world_text_panel/text_indent/top_side/local_world_name": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "local_world_name", "namespace": "play" } }, "local_world_text_panel/text_indent/top_side/lock_1": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "local_world_lock_panel", "namespace": "play" } }, "local_world_text_panel/text_indent/top_side/local_world_date": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "local_world_date", "namespace": "play" } }, "local_world_text_panel/text_indent/bottom_side": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "realms_plus_icon", "pad", "local_world_game_mode", "local_world_connected_storage", "local_world_filesize" ] }, "local_world_text_panel/text_indent/bottom_side/realms_plus_icon": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "realms_plus_banner", "namespace": "play" } }, "local_world_text_panel/text_indent/bottom_side/pad": { "file": "ui/play_screen.json", "type": "panel" }, "local_world_text_panel/text_indent/bottom_side/local_world_game_mode": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "local_world_game_mode", "namespace": "play" } }, "local_world_text_panel/text_indent/bottom_side/local_world_connected_storage": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "local_world_connected_storage", "namespace": "play" } }, "local_world_text_panel/text_indent/bottom_side/local_world_filesize": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "local_world_filesize", "namespace": "play" } }, "legacy_world_text_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "text_indent" ] }, "legacy_world_text_panel/text_indent": { "file": "ui/play_screen.json", "type": "panel", "children": [ "top_side", "bottom_side" ] }, "legacy_world_text_panel/text_indent/top_side": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "legacy_world_name", "legacy_world_date" ] }, "legacy_world_text_panel/text_indent/top_side/legacy_world_name": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "legacy_world_name", "namespace": "play" } }, "legacy_world_text_panel/text_indent/top_side/legacy_world_date": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "legacy_world_date", "namespace": "play" } }, "legacy_world_text_panel/text_indent/bottom_side": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "legacy_world_game_mode", "legacy_world_filesize" ] }, "legacy_world_text_panel/text_indent/bottom_side/legacy_world_game_mode": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "legacy_world_game_mode", "namespace": "play" } }, "legacy_world_text_panel/text_indent/bottom_side/legacy_world_filesize": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "legacy_world_filesize", "namespace": "play" } }, "beta_retail_world_text_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "text_indent" ] }, "beta_retail_world_text_panel/text_indent": { "file": "ui/play_screen.json", "type": "panel", "children": [ "top_side", "bottom_side" ] }, "beta_retail_world_text_panel/text_indent/top_side": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "beta_retail_world_name", "beta_retail_world_date" ] }, "beta_retail_world_text_panel/text_indent/top_side/beta_retail_world_name": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "world_list_text", "namespace": "play" } }, "beta_retail_world_text_panel/text_indent/top_side/beta_retail_world_date": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "world_list_text", "namespace": "play" } }, "beta_retail_world_text_panel/text_indent/bottom_side": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "beta_retail_world_game_mode", "beta_retail_world_filesize" ] }, "beta_retail_world_text_panel/text_indent/bottom_side/beta_retail_world_game_mode": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "world_list_text", "namespace": "play" } }, "beta_retail_world_text_panel/text_indent/bottom_side/beta_retail_world_filesize": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "world_list_text", "namespace": "play" } }, "world_content_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "world_screenshot", "world_text_panel" ] }, "world_content_panel/world_screenshot": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "collection_world_screenshot", "namespace": "play" } }, "world_content_panel/world_text_panel": { "file": "ui/play_screen.json", "type": "unknown" }, "ownership_verification_in_progress_content": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "top_padding", "loading_bar_panel", "mid_padding", "loading_label", "bottom_padding" ] }, "ownership_verification_in_progress_content/top_padding": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "ownership_verification_in_progress_content/loading_bar_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "loading_bar_animation" ] }, "ownership_verification_in_progress_content/loading_bar_panel/loading_bar_animation": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "progress_loading_bars", "namespace": "progress" } }, "ownership_verification_in_progress_content/mid_padding": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "ownership_verification_in_progress_content/loading_label": { "file": "ui/play_screen.json", "type": "label" }, "ownership_verification_in_progress_content/bottom_padding": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "ownership_verification_in_progress_panel": { "file": "ui/play_screen.json", "type": "image", "children": [ "ownership_verification_in_progress_content" ] }, "ownership_verification_in_progress_panel/ownership_verification_in_progress_content": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "ownership_verification_in_progress_content", "namespace": "play" } }, "local_world_item_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "dark_content_button", "namespace": "common_buttons" } }, "legacy_world_item_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "dark_content_button", "namespace": "common_buttons" } }, "beta_retail_world_item_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "dark_content_button", "namespace": "common_buttons" } }, "local_world_edit_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "dark_glyph_button", "namespace": "common_buttons" } }, "legacy_world_delete_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "dark_glyph_button", "namespace": "common_buttons" } }, "legacy_world_migrate_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "dark_glyph_button", "namespace": "common_buttons" } }, "local_world_item": { "file": "ui/play_screen.json", "type": "panel", "children": [ "header_button_panel", "signin_in_progress_panel" ] }, "local_world_item/header_button_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "header_button_panel", "namespace": "play" } }, "local_world_item/signin_in_progress_panel": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "ownership_verification_in_progress_panel", "namespace": "play" } }, "legacy_world_item": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "header_button_panel_with_delete", "header_button_panel_with_migrate", "header_button_panel_no_delete" ] }, "legacy_world_item/header_button_panel_with_delete": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "header_button_panel", "namespace": "play" } }, "legacy_world_item/header_button_panel_with_migrate": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "header_button_panel", "namespace": "play" } }, "legacy_world_item/header_button_panel_no_delete": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "header_single_button_panel", "namespace": "play" } }, "beta_retail_world_item": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "header_single_button_panel", "namespace": "play" } }, "local_world_item_grid": { "file": "ui/play_screen.json", "type": "grid", "extend": { "name": "world_item_grid_base", "namespace": "play" } }, "legacy_world_item_grid": { "file": "ui/play_screen.json", "type": "grid", "extend": { "name": "world_item_grid_base", "namespace": "play" } }, "beta_retail_local_world_item_grid": { "file": "ui/play_screen.json", "type": "grid", "extend": { "name": "world_item_grid_base", "namespace": "play" } }, "beta_retail_legacy_world_item_grid": { "file": "ui/play_screen.json", "type": "grid", "extend": { "name": "world_item_grid_base", "namespace": "play" } }, "common_button_template": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "light_glyph_button", "namespace": "common_buttons" } }, "common_button_text": { "file": "ui/play_screen.json", "type": "label" }, "add_friend_and_invite_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "add_friend_button", "padding_1", "join_by_code_button", "padding_2", "notification_button_panel" ] }, "add_friend_and_invite_panel/add_friend_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "add_friend_button", "namespace": "play" } }, "add_friend_and_invite_panel/padding_1": { "file": "ui/play_screen.json", "type": "panel" }, "add_friend_and_invite_panel/join_by_code_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "join_by_code_button", "namespace": "play" } }, "add_friend_and_invite_panel/padding_2": { "file": "ui/play_screen.json", "type": "panel" }, "add_friend_and_invite_panel/notification_button_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "notification_button" ] }, "add_friend_and_invite_panel/notification_button_panel/notification_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "notification_button", "namespace": "play" } }, "add_friend_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "join_by_code_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "add_server_toggle_button": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "light_text_toggle", "namespace": "common_toggles" } }, "server_toggle_base": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "dark_image_toggle_collection", "namespace": "common_toggles" } }, "quick_play_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "create_new_world_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "create_on_realms_button_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "create_on_realms_button" ] }, "create_on_realms_button_panel/create_on_realms_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "action_button_dark_text", "namespace": "settings_common" } }, "import_world_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "common_button_template", "namespace": "play" } }, "sync_legacy_worlds_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "notification_button_text_layout": { "file": "ui/play_screen.json", "type": "panel", "children": [ "image1", "image2", "count" ] }, "notification_button_text_layout/image1": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "invite_icon", "namespace": "play" } }, "notification_button_text_layout/image2": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "bell_icon", "namespace": "play" } }, "notification_button_text_layout/count": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "notification_button_text_panel", "namespace": "start" } }, "notification_button_label_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "notification_button_label" ] }, "notification_button_label_panel/notification_button_label": { "file": "ui/play_screen.json", "type": "label" }, "notification_content": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "notification_button_text_layout", "namespace": "play" } }, "notification_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "header_button_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "buttons" ] }, "header_button_panel/buttons": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "primary_panel", "secondary" ] }, "header_button_panel/buttons/primary_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "primary" ] }, "header_button_panel/buttons/primary_panel/primary": { "file": "ui/play_screen.json", "type": "unknown" }, "header_button_panel/buttons/secondary": { "file": "ui/play_screen.json", "type": "unknown" }, "header_button_panel_opt_in": { "file": "ui/play_screen.json", "type": "panel", "children": [ "buttons" ] }, "header_button_panel_opt_in/buttons": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "primary_panel", "secondary", "ternary" ] }, "header_button_panel_opt_in/buttons/primary_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "primary" ] }, "header_button_panel_opt_in/buttons/primary_panel/primary": { "file": "ui/play_screen.json", "type": "unknown" }, "header_button_panel_opt_in/buttons/secondary": { "file": "ui/play_screen.json", "type": "unknown" }, "header_button_panel_opt_in/buttons/ternary": { "file": "ui/play_screen.json", "type": "unknown" }, "header_single_button_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "buttons" ] }, "header_single_button_panel/buttons": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "primary" ] }, "header_single_button_panel/buttons/primary": { "file": "ui/play_screen.json", "type": "unknown" }, "open_account_setting_button_gamecore": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "common_scroll_pane": { "file": "ui/play_screen.json", "type": "panel" }, "worlds_scroll_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "common_scroll_pane", "namespace": "play" }, "children": [ "worlds_list_stack_panel" ] }, "worlds_scroll_panel/worlds_list_stack_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "worlds_stack_panel", "namespace": "play" } }, "game_tip_item_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "info_bulb", "padding_1", "label_panel", "more_info_button" ] }, "game_tip_item_panel/info_bulb": { "file": "ui/play_screen.json", "type": "image" }, "game_tip_item_panel/padding_1": { "file": "ui/play_screen.json", "type": "panel" }, "game_tip_item_panel/label_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "padding_vertical", "realms_warning_text", "padding_vertical_1" ] }, "game_tip_item_panel/label_panel/padding_vertical": { "file": "ui/play_screen.json", "type": "panel" }, "game_tip_item_panel/label_panel/realms_warning_text": { "file": "ui/play_screen.json", "type": "label" }, "game_tip_item_panel/label_panel/padding_vertical_1": { "file": "ui/play_screen.json", "type": "panel" }, "game_tip_item_panel/more_info_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "light_text_form_fitting_button", "namespace": "common_buttons" } }, "realm_warning_tip": { "file": "ui/play_screen.json", "type": "image", "children": [ "padding_vertical", "info_panel" ] }, "realm_warning_tip/padding_vertical": { "file": "ui/play_screen.json", "type": "panel" }, "realm_warning_tip/info_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "game_tip_item_panel", "namespace": "play" } }, "new_ui_switch_button_options_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "unlock_template_options_button" ] }, "new_ui_switch_button_options_panel/unlock_template_options_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "new_ui_servers_switch_button_options_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "unlock_template_options_button", "padding_0" ] }, "new_ui_servers_switch_button_options_panel/unlock_template_options_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "new_ui_servers_switch_button_options_panel/padding_0": { "file": "ui/play_screen.json", "type": "panel" }, "worlds_stack_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "padding_0", "play_screen_warning", "header_button", "worlds_crossplatform_disabled_panel", "worlds_crossplatform_disable_spacer", "realms_panel", "realms_multiplayer_blocked_panel", "worlds_label", "grid", "no_local_worlds_label", "no_local_worlds_switch_setting", "beta_retail_local_padding", "beta_retail_local_worlds_label", "beta_retail_local_grid", "loading_legacy_worlds_panel_padding", "legacy_worlds_button", "loading_legacy_worlds_panel", "padding_2", "upgrade_legacy_worlds_label", "legacy_world_item_grid", "beta_retail_legacy_padding", "beta_retail_legacy_worlds_label", "beta_retail_legacy_grid", "pad_hack_panel" ] }, "worlds_stack_panel/padding_0": { "file": "ui/play_screen.json", "type": "panel" }, "worlds_stack_panel/play_screen_warning": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "realm_warning_tip", "namespace": "play" } }, "worlds_stack_panel/header_button": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "quick_play", "buttons" ] }, "worlds_stack_panel/header_button/quick_play": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "quick_play_button", "namespace": "play" } }, "worlds_stack_panel/header_button/buttons": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "header_button_panel_opt_in", "namespace": "play" } }, "worlds_stack_panel/worlds_crossplatform_disabled_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "crossplatform_disabled_panel", "namespace": "play" } }, "worlds_stack_panel/worlds_crossplatform_disable_spacer": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "crossplatform_disable_spacer", "namespace": "play" } }, "worlds_stack_panel/realms_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "realms_label", "sign_in_to_view_realms_button", "realms_previews_panel", "create_on_realms_button_panel", "personal_realms", "placeholder_personal_realms_panel", "realms_trial_panel", "realms_nintendo_first_realm_purchase_panel", "padding_1" ] }, "worlds_stack_panel/realms_panel/realms_label": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "world_list_label_panel", "namespace": "play" } }, "worlds_stack_panel/realms_panel/sign_in_to_view_realms_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "sign_in_to_view_realms_button", "namespace": "play" } }, "worlds_stack_panel/realms_panel/realms_previews_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "new_offers_icon", "realms_world_item_button" ] }, "worlds_stack_panel/realms_panel/realms_previews_panel/new_offers_icon": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "new_offer_icon", "namespace": "common_store" } }, "worlds_stack_panel/realms_panel/realms_previews_panel/realms_world_item_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "dark_content_button", "namespace": "common_buttons" } }, "worlds_stack_panel/realms_panel/create_on_realms_button_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "create_on_realms_button_panel", "namespace": "play" } }, "worlds_stack_panel/realms_panel/personal_realms": { "file": "ui/play_screen.json", "type": "grid", "extend": { "name": "realms_world_item_grid", "namespace": "play" } }, "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "label_background", "namespace": "play" }, "children": [ "placeholder_loading_personal_realms", "loading_friends_realms_label", "padding", "progress_loading_bars" ] }, "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/placeholder_loading_personal_realms": { "file": "ui/play_screen.json", "type": "grid" }, "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/loading_friends_realms_label": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "loading_label", "namespace": "play" } }, "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/padding": { "file": "ui/play_screen.json", "type": "panel" }, "worlds_stack_panel/realms_panel/placeholder_personal_realms_panel/progress_loading_bars": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "progress_loading_bars", "namespace": "play" } }, "worlds_stack_panel/realms_panel/realms_trial_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "realms_world_item_button" ] }, "worlds_stack_panel/realms_panel/realms_trial_panel/realms_world_item_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "dark_content_button", "namespace": "common_buttons" } }, "worlds_stack_panel/realms_panel/realms_nintendo_first_realm_purchase_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "realms_world_item_button" ] }, "worlds_stack_panel/realms_panel/realms_nintendo_first_realm_purchase_panel/realms_world_item_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "dark_content_button", "namespace": "common_buttons" } }, "worlds_stack_panel/realms_panel/padding_1": { "file": "ui/play_screen.json", "type": "panel" }, "worlds_stack_panel/realms_multiplayer_blocked_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "text_panel", "open_uri_button", "open_account_setting_button_gamecore" ] }, "worlds_stack_panel/realms_multiplayer_blocked_panel/text_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "label_content_template", "namespace": "play" } }, "worlds_stack_panel/realms_multiplayer_blocked_panel/open_uri_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "open_account_setting_button", "namespace": "play" } }, "worlds_stack_panel/realms_multiplayer_blocked_panel/open_account_setting_button_gamecore": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "open_account_setting_button_gamecore", "namespace": "play" } }, "worlds_stack_panel/worlds_label": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "world_list_label_with_color_panel", "namespace": "play" } }, "worlds_stack_panel/grid": { "file": "ui/play_screen.json", "type": "grid", "extend": { "name": "local_world_item_grid", "namespace": "play" } }, "worlds_stack_panel/no_local_worlds_label": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "label_content_template", "namespace": "play" } }, "worlds_stack_panel/no_local_worlds_switch_setting": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "no_local_worlds_switch_setting", "namespace": "play" } }, "worlds_stack_panel/beta_retail_local_padding": { "file": "ui/play_screen.json", "type": "panel" }, "worlds_stack_panel/beta_retail_local_worlds_label": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "world_list_label_panel", "namespace": "play" } }, "worlds_stack_panel/beta_retail_local_grid": { "file": "ui/play_screen.json", "type": "grid", "extend": { "name": "beta_retail_local_world_item_grid", "namespace": "play" } }, "worlds_stack_panel/loading_legacy_worlds_panel_padding": { "file": "ui/play_screen.json", "type": "panel" }, "worlds_stack_panel/legacy_worlds_button": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "legacy_worlds_label", "sync_legacy_worlds_button_panel" ] }, "worlds_stack_panel/legacy_worlds_button/legacy_worlds_label": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "world_list_label_panel", "namespace": "play" } }, "worlds_stack_panel/legacy_worlds_button/sync_legacy_worlds_button_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "button" ] }, "worlds_stack_panel/legacy_worlds_button/sync_legacy_worlds_button_panel/button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "sync_legacy_worlds_button", "namespace": "play" } }, "worlds_stack_panel/loading_legacy_worlds_panel": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "label_background", "namespace": "play" }, "children": [ "loading_legacy_worlds_label", "padding", "progress_loading_bars" ] }, "worlds_stack_panel/loading_legacy_worlds_panel/loading_legacy_worlds_label": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "loading_label", "namespace": "play" } }, "worlds_stack_panel/loading_legacy_worlds_panel/padding": { "file": "ui/play_screen.json", "type": "panel" }, "worlds_stack_panel/loading_legacy_worlds_panel/progress_loading_bars": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "progress_loading_bars", "namespace": "play" } }, "worlds_stack_panel/padding_2": { "file": "ui/play_screen.json", "type": "panel" }, "worlds_stack_panel/upgrade_legacy_worlds_label": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "world_list_label_with_color_panel", "namespace": "play" } }, "worlds_stack_panel/legacy_world_item_grid": { "file": "ui/play_screen.json", "type": "grid", "extend": { "name": "legacy_world_item_grid", "namespace": "play" } }, "worlds_stack_panel/beta_retail_legacy_padding": { "file": "ui/play_screen.json", "type": "panel" }, "worlds_stack_panel/beta_retail_legacy_worlds_label": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "world_list_label_panel", "namespace": "play" } }, "worlds_stack_panel/beta_retail_legacy_grid": { "file": "ui/play_screen.json", "type": "grid", "extend": { "name": "beta_retail_legacy_world_item_grid", "namespace": "play" } }, "worlds_stack_panel/pad_hack_panel": { "file": "ui/play_screen.json", "type": "panel" }, "no_local_worlds_switch_setting": { "file": "ui/play_screen.json", "type": "panel", "children": [ "bg" ] }, "no_local_worlds_switch_setting/bg": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "label_background", "namespace": "play" }, "children": [ "no_local_worlds_switch_setting", "no_local_worlds_get_help" ] }, "no_local_worlds_switch_setting/bg/no_local_worlds_switch_setting": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "label_content_template", "namespace": "play" } }, "no_local_worlds_switch_setting/bg/no_local_worlds_get_help": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "label_content_template", "namespace": "play" } }, "no_local_worlds_launch_help": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "storage_location_dropdown_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "padding1", "storage_location_dropdown" ] }, "storage_location_dropdown_panel/padding1": { "file": "ui/play_screen.json", "type": "panel" }, "storage_location_dropdown_panel/storage_location_dropdown": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "storage_location_dropdown", "namespace": "play" } }, "storage_location_dropdown": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "switch_storage_type_content": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "light_centered_loading_label": { "file": "ui/play_screen.json", "type": "label" }, "light_loading_label": { "file": "ui/play_screen.json", "type": "label" }, "loading_label": { "file": "ui/play_screen.json", "type": "label" }, "progress_loading_bars": { "file": "ui/play_screen.json", "type": "image" }, "world_list_label_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "list_label" ] }, "world_list_label_panel/list_label": { "file": "ui/play_screen.json", "type": "label" }, "world_list_label_with_color_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "colored_square_sizer", "padding", "list_label" ] }, "world_list_label_with_color_panel/colored_square_sizer": { "file": "ui/play_screen.json", "type": "panel", "children": [ "colored_square" ] }, "world_list_label_with_color_panel/colored_square_sizer/colored_square": { "file": "ui/play_screen.json", "type": "image" }, "world_list_label_with_color_panel/padding": { "file": "ui/play_screen.json", "type": "panel" }, "world_list_label_with_color_panel/list_label": { "file": "ui/play_screen.json", "type": "label" }, "empty_panel": { "file": "ui/play_screen.json", "type": "panel" }, "empty_grid": { "file": "ui/play_screen.json", "type": "panel" }, "lan_servers_scroll_content": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "label_content_template", "namespace": "play" } }, "friends_scroll_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "common_scroll_pane", "namespace": "play" }, "children": [ "stack_panel" ] }, "friends_scroll_panel/stack_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "padding_0", "friends_screen_warning", "header_button", "friends_crossplatform_disabled_panel", "friends_crossplatform_disable_spacer", "joinable_realms_panel", "friends_grid", "pad_hack_panel", "no_friends_grid_message", "switch_find_cross_platform_friend_button", "add_friend_button_padding", "cross_platform_friends_grid", "no_cross_platform_friends_grid_message", "general_no_multiplayer_grid_message", "lan_grid", "open_account_setting_button_gamecore" ] }, "friends_scroll_panel/stack_panel/padding_0": { "file": "ui/play_screen.json", "type": "panel" }, "friends_scroll_panel/stack_panel/friends_screen_warning": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "realm_warning_tip", "namespace": "play" } }, "friends_scroll_panel/stack_panel/header_button": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "add_friend_and_invite_panel" ] }, "friends_scroll_panel/stack_panel/header_button/add_friend_and_invite_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "add_friend_and_invite_panel", "namespace": "play" } }, "friends_scroll_panel/stack_panel/friends_crossplatform_disabled_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "crossplatform_disabled_panel", "namespace": "play" } }, "friends_scroll_panel/stack_panel/friends_crossplatform_disable_spacer": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "crossplatform_disable_spacer", "namespace": "play" } }, "friends_scroll_panel/stack_panel/joinable_realms_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "friends_realms_label", "sign_in_to_view_realms_button_friends", "friends_realms", "placeholder_loading_friends_panel", "get_offline_authcode_message_panel", "no_realms_grid", "padding_1" ] }, "friends_scroll_panel/stack_panel/joinable_realms_panel/friends_realms_label": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "world_list_label_panel", "namespace": "play" } }, "friends_scroll_panel/stack_panel/joinable_realms_panel/sign_in_to_view_realms_button_friends": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "sign_in_to_view_realms_button_friends", "namespace": "play" } }, "friends_scroll_panel/stack_panel/joinable_realms_panel/friends_realms": { "file": "ui/play_screen.json", "type": "grid", "extend": { "name": "realms_world_item_grid", "namespace": "play" } }, "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "label_background", "namespace": "play" }, "children": [ "placeholder_loading_friends_realms", "loading_friends_realms_label", "padding", "progress_loading_bars" ] }, "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/placeholder_loading_friends_realms": { "file": "ui/play_screen.json", "type": "grid" }, "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/loading_friends_realms_label": { "file": "ui/play_screen.json", "type": "label" }, "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/padding": { "file": "ui/play_screen.json", "type": "panel" }, "friends_scroll_panel/stack_panel/joinable_realms_panel/placeholder_loading_friends_panel/progress_loading_bars": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "progress_loading_bars", "namespace": "play" } }, "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "label_background", "namespace": "play" }, "children": [ "content_stack", "focus_border" ] }, "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "message_panel", "image_panel" ] }, "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/message_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "message_label" ] }, "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/message_panel/message_label": { "file": "ui/play_screen.json", "type": "label" }, "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/image_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "link_image" ] }, "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/content_stack/image_panel/link_image": { "file": "ui/play_screen.json", "type": "image" }, "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "hover", "pressed" ] }, "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border/hover": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "focus_border_white", "namespace": "common" } }, "friends_scroll_panel/stack_panel/joinable_realms_panel/get_offline_authcode_message_panel/focus_border/pressed": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "focus_border_white", "namespace": "common" } }, "friends_scroll_panel/stack_panel/joinable_realms_panel/no_realms_grid": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "label_content_template", "namespace": "play" } }, "friends_scroll_panel/stack_panel/joinable_realms_panel/padding_1": { "file": "ui/play_screen.json", "type": "panel" }, "friends_scroll_panel/stack_panel/friends_grid": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "label_content_template", "namespace": "play" } }, "friends_scroll_panel/stack_panel/pad_hack_panel": { "file": "ui/play_screen.json", "type": "panel" }, "friends_scroll_panel/stack_panel/no_friends_grid_message": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "label_content_template", "namespace": "play" } }, "friends_scroll_panel/stack_panel/switch_find_cross_platform_friend_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "add_friend_button", "namespace": "play" } }, "friends_scroll_panel/stack_panel/add_friend_button_padding": { "file": "ui/play_screen.json", "type": "panel" }, "friends_scroll_panel/stack_panel/cross_platform_friends_grid": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "label_content_template", "namespace": "play" } }, "friends_scroll_panel/stack_panel/no_cross_platform_friends_grid_message": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "label_content_template", "namespace": "play" } }, "friends_scroll_panel/stack_panel/general_no_multiplayer_grid_message": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "label_content_template", "namespace": "play" } }, "friends_scroll_panel/stack_panel/lan_grid": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "lan_servers_scroll_content", "namespace": "play" } }, "friends_scroll_panel/stack_panel/open_account_setting_button_gamecore": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "open_account_setting_button_gamecore", "namespace": "play" } }, "manually_added_servers_scrolling_content": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "padding_0", "more_servers_label", "padding_1", "more_servers_grid", "padding_3" ] }, "manually_added_servers_scrolling_content/padding_0": { "file": "ui/play_screen.json", "type": "panel" }, "manually_added_servers_scrolling_content/more_servers_label": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "manually_added_servers_scrolling_content/padding_1": { "file": "ui/play_screen.json", "type": "panel" }, "manually_added_servers_scrolling_content/more_servers_grid": { "file": "ui/play_screen.json", "type": "grid", "extend": { "name": "more_servers_grid", "namespace": "play" } }, "manually_added_servers_scrolling_content/padding_3": { "file": "ui/play_screen.json", "type": "panel" }, "servers_content_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "new_ui_servers_switch_button_options_panel", "featured_servers_panel", "more_servers_divider", "more_servers_panel" ] }, "servers_content_panel/new_ui_servers_switch_button_options_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "new_ui_servers_switch_button_options_panel", "namespace": "play" } }, "servers_content_panel/featured_servers_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "loading_featured_panel", "padding_1", "featured_servers_label", "padding_2", "third_party_featured_grid", "padding_3" ] }, "servers_content_panel/featured_servers_panel/loading_featured_panel": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "label_background", "namespace": "play" }, "children": [ "loading_friends_realms_label", "loading_featured_servers_panel" ] }, "servers_content_panel/featured_servers_panel/loading_featured_panel/loading_friends_realms_label": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "light_loading_label", "namespace": "play" } }, "servers_content_panel/featured_servers_panel/loading_featured_panel/loading_featured_servers_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "loading_featured_servers_panel", "namespace": "play" } }, "servers_content_panel/featured_servers_panel/padding_1": { "file": "ui/play_screen.json", "type": "panel" }, "servers_content_panel/featured_servers_panel/featured_servers_label": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "servers_content_panel/featured_servers_panel/padding_2": { "file": "ui/play_screen.json", "type": "panel" }, "servers_content_panel/featured_servers_panel/third_party_featured_grid": { "file": "ui/play_screen.json", "type": "grid", "extend": { "name": "third_party_featured_server_grid", "namespace": "play" } }, "servers_content_panel/featured_servers_panel/padding_3": { "file": "ui/play_screen.json", "type": "panel" }, "servers_content_panel/more_servers_divider": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "horizontal_divider", "namespace": "common" } }, "servers_content_panel/more_servers_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "manually_added_servers_scrolling_content", "namespace": "play" } }, "server_scroll_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "common_scroll_pane", "namespace": "play" }, "children": [ "stack_panel" ] }, "server_scroll_panel/stack_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "padding_0", "servers_crossplatform_disabled_panel", "no_featured_server_connection", "more_servers_blocked_panel", "padding_1", "server_content", "add_server_button" ] }, "server_scroll_panel/stack_panel/padding_0": { "file": "ui/play_screen.json", "type": "panel" }, "server_scroll_panel/stack_panel/servers_crossplatform_disabled_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "crossplatform_disabled_panel", "namespace": "play" } }, "server_scroll_panel/stack_panel/no_featured_server_connection": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "information_panel", "namespace": "play" } }, "server_scroll_panel/stack_panel/more_servers_blocked_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "server_multiplayer_privileges_blocked", "open_uri_button" ] }, "server_scroll_panel/stack_panel/more_servers_blocked_panel/server_multiplayer_privileges_blocked": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "information_panel", "namespace": "play" } }, "server_scroll_panel/stack_panel/more_servers_blocked_panel/open_uri_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "open_account_setting_button", "namespace": "play" } }, "server_scroll_panel/stack_panel/padding_1": { "file": "ui/play_screen.json", "type": "panel" }, "server_scroll_panel/stack_panel/server_content": { "file": "ui/play_screen.json", "type": "unknown" }, "server_scroll_panel/stack_panel/add_server_button": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "add_server_toggle_button", "namespace": "play" } }, "crossplatform_disabled_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "information_panel", "namespace": "play" } }, "crossplatform_disable_spacer": { "file": "ui/play_screen.json", "type": "panel" }, "common_scrolling_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "common_content": { "file": "ui/play_screen.json", "type": "input_panel" }, "scrolling_offsets": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "common_scrolling_panel", "namespace": "play" } }, "worlds_scroll_content": { "file": "ui/play_screen.json", "type": "input_panel", "extend": { "name": "common_content", "namespace": "play" }, "children": [ "worlds_stack_panel" ] }, "worlds_scroll_content/worlds_stack_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "scrolling_panel_sizer", "scrolling_panel_legacy_storage_sizer" ] }, "worlds_scroll_content/worlds_stack_panel/scrolling_panel_sizer": { "file": "ui/play_screen.json", "type": "panel", "children": [ "scrolling_panel" ] }, "worlds_scroll_content/worlds_stack_panel/scrolling_panel_sizer/scrolling_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "scrolling_offsets", "namespace": "play" } }, "worlds_scroll_content/worlds_stack_panel/scrolling_panel_legacy_storage_sizer": { "file": "ui/play_screen.json", "type": "panel", "children": [ "scrolling_panel" ] }, "worlds_scroll_content/worlds_stack_panel/scrolling_panel_legacy_storage_sizer/scrolling_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "scrolling_offsets", "namespace": "play" } }, "friends_scroll_content": { "file": "ui/play_screen.json", "type": "input_panel", "extend": { "name": "common_content", "namespace": "play" }, "children": [ "scrolling_panel" ] }, "friends_scroll_content/scrolling_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "scrolling_offsets", "namespace": "play" } }, "show_servers_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "left_panel", "divider_panel", "right_panel" ] }, "show_servers_panel/left_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "scrolling_panel" ] }, "show_servers_panel/left_panel/scrolling_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "scrolling_offsets", "namespace": "play" } }, "show_servers_panel/divider_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "main_divider" ] }, "show_servers_panel/divider_panel/main_divider": { "file": "ui/play_screen.json", "type": "image" }, "show_servers_panel/right_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "server_content_area", "namespace": "play" } }, "server_scroll_content": { "file": "ui/play_screen.json", "type": "input_panel", "extend": { "name": "common_content", "namespace": "play" }, "children": [ "severs_panel", "feature_server_message_panel" ] }, "server_scroll_content/severs_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "offset_panel", "show_servers_panel" ] }, "server_scroll_content/severs_panel/offset_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "servers_sunsetting_warning" ] }, "server_scroll_content/severs_panel/offset_panel/servers_sunsetting_warning": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "realm_warning_tip", "namespace": "play" } }, "server_scroll_content/severs_panel/show_servers_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "show_servers_panel", "namespace": "play" } }, "server_scroll_content/feature_server_message_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "featured_servers_label", "pad", "feature_server_message_panel", "open_account_setting_button_gamecore" ] }, "server_scroll_content/feature_server_message_panel/featured_servers_label": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "server_scroll_content/feature_server_message_panel/pad": { "file": "ui/play_screen.json", "type": "panel" }, "server_scroll_content/feature_server_message_panel/feature_server_message_panel": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "dark_label_background", "namespace": "play" }, "children": [ "label_panel_layout" ] }, "server_scroll_content/feature_server_message_panel/feature_server_message_panel/label_panel_layout": { "file": "ui/play_screen.json", "type": "panel", "children": [ "label" ] }, "server_scroll_content/feature_server_message_panel/feature_server_message_panel/label_panel_layout/label": { "file": "ui/play_screen.json", "type": "label" }, "server_scroll_content/feature_server_message_panel/open_account_setting_button_gamecore": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "open_account_setting_button_gamecore", "namespace": "play" } }, "server_content_area": { "file": "ui/play_screen.json", "type": "panel", "children": [ "third_party_scrolling_panel", "additional_server_scrolling_panel", "add_server_pane" ] }, "server_content_area/third_party_scrolling_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "scrolling_offsets", "namespace": "play" } }, "server_content_area/additional_server_scrolling_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "scrolling_offsets", "namespace": "play" } }, "server_content_area/add_server_pane": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "add_server_info_panel", "namespace": "play" } }, "tab_front": { "file": "ui/play_screen.json", "type": "image" }, "tab_front_middle": { "file": "ui/play_screen.json", "type": "image" }, "tab_back": { "file": "ui/play_screen.json", "type": "image" }, "X_tab_back": { "file": "ui/play_screen.json", "type": "image" }, "tab_text_stack_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "padding", "text_section", "count_section" ] }, "tab_text_stack_panel/padding": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "tab_text_stack_panel/text_section": { "file": "ui/play_screen.json", "type": "panel", "children": [ "text" ] }, "tab_text_stack_panel/text_section/text": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "common_button_text", "namespace": "play" } }, "tab_text_stack_panel/count_section": { "file": "ui/play_screen.json", "type": "panel", "children": [ "count_background_image" ] }, "tab_text_stack_panel/count_section/count_background_image": { "file": "ui/play_screen.json", "type": "image", "children": [ "count" ] }, "tab_text_stack_panel/count_section/count_background_image/count": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "common_button_text", "namespace": "play" } }, "common_navigation_tab_content": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "padding_0", "icon_section", "padding_1", "count_text" ] }, "common_navigation_tab_content/padding_0": { "file": "ui/play_screen.json", "type": "panel" }, "common_navigation_tab_content/icon_section": { "file": "ui/play_screen.json", "type": "panel", "children": [ "icon" ] }, "common_navigation_tab_content/icon_section/icon": { "file": "ui/play_screen.json", "type": "unknown" }, "common_navigation_tab_content/padding_1": { "file": "ui/play_screen.json", "type": "panel" }, "common_navigation_tab_content/count_text": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "tab_text_stack_panel", "namespace": "play" } }, "friends_navigation_tab_content": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "padding", "icon_section", "icon_section_2", "icon_section_nobounce", "icon_section_nobounce_2", "icon_section_notification", "count_text" ] }, "friends_navigation_tab_content/padding": { "file": "ui/play_screen.json", "type": "panel" }, "friends_navigation_tab_content/icon_section": { "file": "ui/play_screen.json", "type": "panel", "children": [ "icon" ] }, "friends_navigation_tab_content/icon_section/icon": { "file": "ui/play_screen.json", "type": "unknown" }, "friends_navigation_tab_content/icon_section_2": { "file": "ui/play_screen.json", "type": "panel", "children": [ "icon" ] }, "friends_navigation_tab_content/icon_section_2/icon": { "file": "ui/play_screen.json", "type": "unknown" }, "friends_navigation_tab_content/icon_section_nobounce": { "file": "ui/play_screen.json", "type": "panel", "children": [ "icon" ] }, "friends_navigation_tab_content/icon_section_nobounce/icon": { "file": "ui/play_screen.json", "type": "unknown" }, "friends_navigation_tab_content/icon_section_nobounce_2": { "file": "ui/play_screen.json", "type": "panel", "children": [ "icon" ] }, "friends_navigation_tab_content/icon_section_nobounce_2/icon": { "file": "ui/play_screen.json", "type": "unknown" }, "friends_navigation_tab_content/icon_section_notification": { "file": "ui/play_screen.json", "type": "panel", "children": [ "icon1", "icon2" ] }, "friends_navigation_tab_content/icon_section_notification/icon1": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "invite_icon", "namespace": "play" } }, "friends_navigation_tab_content/icon_section_notification/icon2": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "bell_icon", "namespace": "play" } }, "friends_navigation_tab_content/count_text": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "tab_text_stack_panel", "namespace": "play" } }, "top_tab": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "tab_top", "namespace": "common_tabs" } }, "world_navigation_tab": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "top_tab", "namespace": "play" } }, "friends_navigation_tab": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "top_tab", "namespace": "play" } }, "server_navigation_tab": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "top_tab", "namespace": "play" } }, "close_navigation_tab": { "file": "ui/play_screen.json", "type": "panel", "children": [ "background", "x_image" ] }, "close_navigation_tab/background": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "X_tab_back", "namespace": "play" } }, "close_navigation_tab/x_image": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "light_close_button", "namespace": "common" } }, "common_tab_content_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "background", "content" ] }, "common_tab_content_panel/background": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "common_tab_content_panel/content": { "file": "ui/play_screen.json", "type": "unknown" }, "worlds_tab_content_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "common_tab_content_panel", "namespace": "play" } }, "friends_tab_content_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "common_tab_content_panel", "namespace": "play" } }, "server_tab_content_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "common_tab_content_panel", "namespace": "play" } }, "common_tab_content_panel_type": { "file": "ui/play_screen.json", "type": "input_panel" }, "edu_tab_content_panel_layout": { "file": "ui/play_screen.json", "type": "input_panel", "extend": { "name": "common_tab_content_panel_type", "namespace": "play" }, "children": [ "worlds_tab_content", "friends_tab_content", "server_tab_content_panel" ] }, "edu_tab_content_panel_layout/worlds_tab_content": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "worlds_tab_content_panel", "namespace": "play" } }, "edu_tab_content_panel_layout/friends_tab_content": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "friends_tab_content_panel", "namespace": "play" } }, "edu_tab_content_panel_layout/server_tab_content_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "server_tab_content_panel", "namespace": "play" } }, "trial_tab_content_panel_layout": { "file": "ui/play_screen.json", "type": "input_panel", "extend": { "name": "common_tab_content_panel_type", "namespace": "play" }, "children": [ "worlds_tab_content" ] }, "trial_tab_content_panel_layout/worlds_tab_content": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "worlds_tab_content_panel", "namespace": "play" } }, "default_tab_content_panel_layout": { "file": "ui/play_screen.json", "type": "input_panel", "extend": { "name": "common_tab_content_panel_type", "namespace": "play" }, "children": [ "worlds_tab_content", "friends_tab_content", "server_tab_content_panel" ] }, "default_tab_content_panel_layout/worlds_tab_content": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "worlds_tab_content_panel", "namespace": "play" } }, "default_tab_content_panel_layout/friends_tab_content": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "friends_tab_content_panel", "namespace": "play" } }, "default_tab_content_panel_layout/server_tab_content_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "server_tab_content_panel", "namespace": "play" } }, "tab_navigation_panel_layout": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "navigation_tabs", "close_navigation_tab" ] }, "tab_navigation_panel_layout/navigation_tabs": { "file": "ui/play_screen.json", "type": "panel", "children": [ "content" ] }, "tab_navigation_panel_layout/navigation_tabs/content": { "file": "ui/play_screen.json", "type": "unknown" }, "tab_navigation_panel_layout/close_navigation_tab": { "file": "ui/play_screen.json", "type": "panel", "children": [ "close_button" ] }, "tab_navigation_panel_layout/close_navigation_tab/close_button": { "file": "ui/play_screen.json", "type": "unknown" }, "common_tab_navigation_panel_layout": { "file": "ui/play_screen.json", "type": "stack_panel" }, "edu_tab_navigation_panel_layout": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "common_tab_navigation_panel_layout", "namespace": "play" }, "children": [ "world_navigation_tab", "friends_navigation_tab", "server_navigation_tab" ] }, "edu_tab_navigation_panel_layout/world_navigation_tab": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "world_navigation_tab", "namespace": "play" } }, "edu_tab_navigation_panel_layout/friends_navigation_tab": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "friends_navigation_tab", "namespace": "play" } }, "edu_tab_navigation_panel_layout/server_navigation_tab": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "server_navigation_tab", "namespace": "play" } }, "trial_tab_navigation_panel_layout": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "common_tab_navigation_panel_layout", "namespace": "play" }, "children": [ "world_navigation_tab" ] }, "trial_tab_navigation_panel_layout/world_navigation_tab": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "world_navigation_tab", "namespace": "play" } }, "default_tab_navigation_panel_layout": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "common_tab_navigation_panel_layout", "namespace": "play" }, "children": [ "world_navigation_tab", "friends_navigation_tab", "server_navigation_tab" ] }, "default_tab_navigation_panel_layout/world_navigation_tab": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "world_navigation_tab", "namespace": "play" } }, "default_tab_navigation_panel_layout/friends_navigation_tab": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "friends_navigation_tab", "namespace": "play" } }, "default_tab_navigation_panel_layout/server_navigation_tab": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "server_navigation_tab", "namespace": "play" } }, "common_play_screen_panel": { "file": "ui/play_screen.json", "type": "panel" }, "play_screen_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "common_play_screen_panel", "namespace": "play" }, "children": [ "tab_navigation_panel", "tab_content_panel", "gamepad_helper_left_bumper", "gamepad_helper_right_bumper", "keyboard_helper_left_bracket", "keyboard_helper_right_bracket" ] }, "play_screen_panel/tab_navigation_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "tab_navigation_panel_layout", "namespace": "play" } }, "play_screen_panel/tab_content_panel": { "file": "ui/play_screen.json", "type": "unknown" }, "play_screen_panel/gamepad_helper_left_bumper": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_left_bumper", "namespace": "common" } }, "play_screen_panel/gamepad_helper_right_bumper": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_right_bumper", "namespace": "common" } }, "play_screen_panel/keyboard_helper_left_bracket": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "keyboard_left_trigger", "namespace": "common" } }, "play_screen_panel/keyboard_helper_right_bracket": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "keyboard_right_trigger", "namespace": "common" } }, "default_play_screen_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "play_screen_panel", "namespace": "play" } }, "trial_play_screen_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "play_screen_panel", "namespace": "play" } }, "edu_play_screen_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "play_screen_panel", "namespace": "play" } }, "play_screen": { "file": "ui/play_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "play_screen_content": { "file": "ui/play_screen.json", "type": "panel", "children": [ "main_control", "editor_text_panel", "popup_dialog_factory" ] }, "play_screen_content/main_control": { "file": "ui/play_screen.json", "type": "unknown" }, "play_screen_content/editor_text_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "editor_text_panel", "namespace": "play" } }, "play_screen_content/popup_dialog_factory": { "file": "ui/play_screen.json", "type": "factory" }, "popup_dialog_join_by_code": { "file": "ui/play_screen.json", "type": "input_panel", "extend": { "name": "modal_input_panel", "namespace": "popup_dialog" }, "children": [ "join_by_code_popup_background", "join_by_code_popup_content", "gamepad_helpers" ] }, "popup_dialog_join_by_code/join_by_code_popup_background": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "join_by_code_popup_background", "namespace": "play" } }, "popup_dialog_join_by_code/join_by_code_popup_content": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "join_by_code_popup_content", "namespace": "play" } }, "popup_dialog_join_by_code/gamepad_helpers": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helpers_a_and_b", "namespace": "common" } }, "join_by_code_popup_background": { "file": "ui/play_screen.json", "type": "image" }, "join_by_code_popup_content": { "file": "ui/play_screen.json", "type": "panel", "children": [ "popup_dialog_bg", "popup_stack_panel" ] }, "join_by_code_popup_content/popup_dialog_bg": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "popup_dialog_bg", "namespace": "realms_common" } }, "join_by_code_popup_content/popup_stack_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "join_by_code_popup_dialog_header", "spacing_1", "join_by_code_popup_dialog_upper_body", "spacing_2", "join_by_code_popup_dialog_lower_body" ] }, "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_header": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "join_by_code_popup_dialog_header", "namespace": "play" } }, "join_by_code_popup_content/popup_stack_panel/spacing_1": { "file": "ui/play_screen.json", "type": "panel" }, "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_upper_body": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "join_by_code_popup_dialog_upper_body", "namespace": "play" } }, "join_by_code_popup_content/popup_stack_panel/spacing_2": { "file": "ui/play_screen.json", "type": "panel" }, "join_by_code_popup_content/popup_stack_panel/join_by_code_popup_dialog_lower_body": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "join_by_code_popup_dialog_lower_body", "namespace": "play" } }, "join_by_code_popup_dialog_header": { "file": "ui/play_screen.json", "type": "panel", "children": [ "join_by_code_popup_header_text", "close_button" ] }, "join_by_code_popup_dialog_header/join_by_code_popup_header_text": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "join_by_code_popup_header_text", "namespace": "play" } }, "join_by_code_popup_dialog_header/close_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "close_button", "namespace": "common" } }, "join_by_code_popup_header_text": { "file": "ui/play_screen.json", "type": "label" }, "join_by_code_popup_dialog_upper_body": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "margin1", "join_by_code_popup_code_text_field", "spacing", "join_by_code_popup_join_button", "margin2" ] }, "join_by_code_popup_dialog_upper_body/margin1": { "file": "ui/play_screen.json", "type": "panel" }, "join_by_code_popup_dialog_upper_body/join_by_code_popup_code_text_field": { "file": "ui/play_screen.json", "type": "edit_box", "extend": { "name": "join_by_code_popup_code_text_field", "namespace": "play" } }, "join_by_code_popup_dialog_upper_body/spacing": { "file": "ui/play_screen.json", "type": "panel" }, "join_by_code_popup_dialog_upper_body/join_by_code_popup_join_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "join_by_code_popup_join_button", "namespace": "play" } }, "join_by_code_popup_dialog_upper_body/margin2": { "file": "ui/play_screen.json", "type": "panel" }, "join_by_code_popup_code_text_field": { "file": "ui/play_screen.json", "type": "edit_box", "extend": { "name": "text_edit_box", "namespace": "common" } }, "join_by_code_popup_join_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "join_by_code_popup_help_text": { "file": "ui/play_screen.json", "type": "label" }, "lower_body_default_content": { "file": "ui/play_screen.json", "type": "panel", "children": [ "info_text" ] }, "lower_body_default_content/info_text": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "join_by_code_popup_help_text", "namespace": "play" } }, "join_by_code_popup_dialog_lower_body": { "file": "ui/play_screen.json", "type": "panel", "children": [ "default" ] }, "join_by_code_popup_dialog_lower_body/default": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "lower_body_default_content", "namespace": "play" } }, "open_account_setting_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "hyperlink_button", "namespace": "common_buttons" } }, "popup_dialog_high_ping": { "file": "ui/play_screen.json", "type": "input_panel", "extend": { "name": "modal_input_panel", "namespace": "popup_dialog" }, "children": [ "high_ping_popup_background", "high_ping_popup_content", "gamepad_helpers" ] }, "popup_dialog_high_ping/high_ping_popup_background": { "file": "ui/play_screen.json", "type": "image", "extend": { "name": "join_by_code_popup_background", "namespace": "play" } }, "popup_dialog_high_ping/high_ping_popup_content": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "popup_two_buttons", "namespace": "play" } }, "popup_dialog_high_ping/gamepad_helpers": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helpers_a_and_b", "namespace": "common" } }, "popup_two_buttons": { "file": "ui/play_screen.json", "type": "panel", "children": [ "common_panel", "title_label", "panel_indent", "button_panel" ] }, "popup_two_buttons/common_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "popup_two_buttons/title_label": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "title_label", "namespace": "common_dialogs" } }, "popup_two_buttons/panel_indent": { "file": "ui/play_screen.json", "type": "panel", "children": [ "inside_header_panel" ] }, "popup_two_buttons/panel_indent/inside_header_panel": { "file": "ui/play_screen.json", "type": "unknown" }, "popup_two_buttons/button_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "left_button_panel", "pad", "right_button_panel" ] }, "popup_two_buttons/button_panel/left_button_panel": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "high_ping_popup_join_button", "namespace": "play" } }, "popup_two_buttons/button_panel/pad": { "file": "ui/play_screen.json", "type": "panel" }, "popup_two_buttons/button_panel/right_button_panel": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "high_ping_popup_cancel_button", "namespace": "play" } }, "high_ping_popup_content_stack_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "pad_0", "ping_images_panel", "pad_1", "text_line_1", "pad_2", "text_line_2", "pad_3" ] }, "high_ping_popup_content_stack_panel/pad_0": { "file": "ui/play_screen.json", "type": "panel" }, "high_ping_popup_content_stack_panel/ping_images_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "ping_images_stack_panel" ] }, "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "medium_connection", "pad", "low_connection" ] }, "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/medium_connection": { "file": "ui/play_screen.json", "type": "image" }, "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/pad": { "file": "ui/play_screen.json", "type": "panel" }, "high_ping_popup_content_stack_panel/ping_images_panel/ping_images_stack_panel/low_connection": { "file": "ui/play_screen.json", "type": "image" }, "high_ping_popup_content_stack_panel/pad_1": { "file": "ui/play_screen.json", "type": "panel" }, "high_ping_popup_content_stack_panel/text_line_1": { "file": "ui/play_screen.json", "type": "label" }, "high_ping_popup_content_stack_panel/pad_2": { "file": "ui/play_screen.json", "type": "panel" }, "high_ping_popup_content_stack_panel/text_line_2": { "file": "ui/play_screen.json", "type": "label" }, "high_ping_popup_content_stack_panel/pad_3": { "file": "ui/play_screen.json", "type": "panel" }, "high_ping_popup_join_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "high_ping_popup_cancel_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "copyright": { "file": "ui/play_screen.json", "type": "label" }, "development_version": { "file": "ui/play_screen.json", "type": "label" }, "version": { "file": "ui/play_screen.json", "type": "label" }, "editor_text_panel": { "file": "ui/play_screen.json", "type": "panel", "children": [ "copyright", "development_version", "version" ] }, "editor_text_panel/copyright": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "copyright", "namespace": "play" } }, "editor_text_panel/development_version": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "development_version", "namespace": "play" } }, "editor_text_panel/version": { "file": "ui/play_screen.json", "type": "label", "extend": { "name": "version", "namespace": "play" } }, "editor_settings_image_content": { "file": "ui/play_screen.json", "type": "image" }, "editor_settings_menu_button": { "file": "ui/play_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "editor_server_content_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "children": [ "more_servers_panel" ] }, "editor_server_content_panel/more_servers_panel": { "file": "ui/play_screen.json", "type": "stack_panel", "extend": { "name": "manually_added_servers_scrolling_content", "namespace": "play" } }, "editor_tab_content_panel_layout": { "file": "ui/play_screen.json", "type": "input_panel", "extend": { "name": "common_tab_content_panel_type", "namespace": "play" }, "children": [ "worlds_tab_content", "friends_tab_content", "server_tab_content_panel" ] }, "editor_tab_content_panel_layout/worlds_tab_content": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "worlds_tab_content_panel", "namespace": "play" } }, "editor_tab_content_panel_layout/friends_tab_content": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "friends_tab_content_panel", "namespace": "play" } }, "editor_tab_content_panel_layout/server_tab_content_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "server_tab_content_panel", "namespace": "play" } }, "editor_play_screen_panel": { "file": "ui/play_screen.json", "type": "panel", "extend": { "name": "play_screen_panel", "namespace": "play" } } }, "perf_turtle": { "perf_turtle_panel": { "file": "ui/perf_turtle.json", "type": "panel", "children": [ "perf_turtle_background", "stack_panel" ] }, "perf_turtle_panel/perf_turtle_background": { "file": "ui/perf_turtle.json", "type": "image" }, "perf_turtle_panel/stack_panel": { "file": "ui/perf_turtle.json", "type": "stack_panel", "children": [ "turtle", "turtle_text" ] }, "perf_turtle_panel/stack_panel/turtle": { "file": "ui/perf_turtle.json", "type": "image" }, "perf_turtle_panel/stack_panel/turtle_text": { "file": "ui/perf_turtle.json", "type": "label" } }, "pocket_containers": { "generic_label": { "file": "ui/pocket_containers.json", "type": "label" }, "header_panel": { "file": "ui/pocket_containers.json", "type": "panel", "children": [ "header_background", "title_label" ] }, "header_panel/header_background": { "file": "ui/pocket_containers.json", "type": "image" }, "header_panel/title_label": { "file": "ui/pocket_containers.json", "type": "label", "extend": { "name": "generic_label", "namespace": "pocket_containers" } }, "header_area": { "file": "ui/pocket_containers.json", "type": "panel", "children": [ "x", "inventory_header", "container_header" ] }, "header_area/x": { "file": "ui/pocket_containers.json", "type": "button", "extend": { "name": "legacy_pocket_close_button", "namespace": "common" } }, "header_area/inventory_header": { "file": "ui/pocket_containers.json", "type": "panel", "extend": { "name": "header_panel", "namespace": "pocket_containers" } }, "header_area/container_header": { "file": "ui/pocket_containers.json", "type": "panel", "extend": { "name": "header_panel", "namespace": "pocket_containers" } }, "dark_bg": { "file": "ui/pocket_containers.json", "type": "image" }, "panel_outline": { "file": "ui/pocket_containers.json", "type": "image" }, "background_panel": { "file": "ui/pocket_containers.json", "type": "image" }, "inventory_grid": { "file": "ui/pocket_containers.json", "type": "grid" }, "inventory_panel": { "file": "ui/pocket_containers.json", "type": "panel", "children": [ "scrolling_panel" ] }, "inventory_panel/scrolling_panel": { "file": "ui/pocket_containers.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "half_screen": { "file": "ui/pocket_containers.json", "type": "panel", "children": [ "inventory_panel" ] }, "half_screen/inventory_panel": { "file": "ui/pocket_containers.json", "type": "panel", "extend": { "name": "inventory_panel", "namespace": "pocket_containers" } }, "panel": { "file": "ui/pocket_containers.json", "type": "panel", "children": [ "container_gamepad_helpers", "header", "bg", "inventory", "container", "selected_item_details_factory", "item_lock_notification_factory", "gamepad_cursor", "inventory_selected_icon_button", "hold_icon", "flying_item_renderer" ] }, "panel/container_gamepad_helpers": { "file": "ui/pocket_containers.json", "type": "stack_panel", "extend": { "name": "container_gamepad_helpers", "namespace": "common" } }, "panel/header": { "file": "ui/pocket_containers.json", "type": "panel", "extend": { "name": "header_area", "namespace": "pocket_containers" } }, "panel/bg": { "file": "ui/pocket_containers.json", "type": "image", "extend": { "name": "background_panel", "namespace": "pocket_containers" } }, "panel/inventory": { "file": "ui/pocket_containers.json", "type": "panel", "extend": { "name": "half_screen", "namespace": "pocket_containers" } }, "panel/container": { "file": "ui/pocket_containers.json", "type": "panel", "extend": { "name": "half_screen", "namespace": "pocket_containers" } }, "panel/selected_item_details_factory": { "file": "ui/pocket_containers.json", "type": "factory", "extend": { "name": "selected_item_details_factory", "namespace": "common" } }, "panel/item_lock_notification_factory": { "file": "ui/pocket_containers.json", "type": "factory", "extend": { "name": "item_lock_notification_factory", "namespace": "common" } }, "panel/gamepad_cursor": { "file": "ui/pocket_containers.json", "type": "button", "extend": { "name": "gamepad_cursor_button", "namespace": "common" } }, "panel/inventory_selected_icon_button": { "file": "ui/pocket_containers.json", "type": "button", "extend": { "name": "inventory_selected_icon_button", "namespace": "common" } }, "panel/hold_icon": { "file": "ui/pocket_containers.json", "type": "button", "extend": { "name": "inventory_take_progress_icon_button", "namespace": "common" } }, "panel/flying_item_renderer": { "file": "ui/pocket_containers.json", "type": "custom", "extend": { "name": "flying_item_renderer", "namespace": "common" } }, "small_chest_panel": { "file": "ui/pocket_containers.json", "type": "panel", "extend": { "name": "panel", "namespace": "pocket_containers" } }, "large_chest_panel": { "file": "ui/pocket_containers.json", "type": "panel", "extend": { "name": "panel", "namespace": "pocket_containers" } }, "hopper_panel": { "file": "ui/pocket_containers.json", "type": "panel", "extend": { "name": "panel", "namespace": "pocket_containers" } }, "dispenser_panel": { "file": "ui/pocket_containers.json", "type": "panel", "extend": { "name": "panel", "namespace": "pocket_containers" } }, "dropper_panel": { "file": "ui/pocket_containers.json", "type": "panel", "extend": { "name": "panel", "namespace": "pocket_containers" } }, "ender_chest_panel": { "file": "ui/pocket_containers.json", "type": "panel", "extend": { "name": "panel", "namespace": "pocket_containers" } }, "shulker_box_panel": { "file": "ui/pocket_containers.json", "type": "panel", "extend": { "name": "small_chest_panel", "namespace": "pocket_containers" } }, "barrel_panel": { "file": "ui/pocket_containers.json", "type": "panel", "extend": { "name": "small_chest_panel", "namespace": "pocket_containers" } } }, "popup_dialog": { "popup_dialog_bg": { "file": "ui/popup_dialog.json", "type": "image" }, "popup_dialog_message": { "file": "ui/popup_dialog.json", "type": "label" }, "popup_dialog_button": { "file": "ui/popup_dialog.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "popup_dialog_button_with_binding": { "file": "ui/popup_dialog.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "popup_dialog_left_button": { "file": "ui/popup_dialog.json", "type": "button", "extend": { "name": "popup_dialog_button", "namespace": "popup_dialog" } }, "popup_dialog_middle_button": { "file": "ui/popup_dialog.json", "type": "button", "extend": { "name": "popup_dialog_button", "namespace": "popup_dialog" } }, "popup_dialog_right_button": { "file": "ui/popup_dialog.json", "type": "button", "extend": { "name": "popup_dialog_button", "namespace": "popup_dialog" } }, "popup_dialog": { "file": "ui/popup_dialog.json", "type": "input_panel" }, "modal_background_image": { "file": "ui/popup_dialog.json", "type": "image" }, "black_tint_image": { "file": "ui/popup_dialog.json", "type": "image" }, "modal_title_text": { "file": "ui/popup_dialog.json", "type": "label" }, "modal_label_text": { "file": "ui/popup_dialog.json", "type": "stack_panel", "children": [ "padding", "text" ] }, "modal_label_text/padding": { "file": "ui/popup_dialog.json", "type": "panel" }, "modal_label_text/text": { "file": "ui/popup_dialog.json", "type": "label" }, "modal_checkbox_button": { "file": "ui/popup_dialog.json", "type": "toggle", "extend": { "name": "checkbox", "namespace": "common" }, "children": [ "header_description_stack_panel" ] }, "modal_checkbox_button/header_description_stack_panel": { "file": "ui/popup_dialog.json", "type": "stack_panel", "children": [ "checkbox_visuals", "buffer_panel", "padding_panel" ] }, "modal_checkbox_button/header_description_stack_panel/checkbox_visuals": { "file": "ui/popup_dialog.json", "type": "panel", "extend": { "name": "toggle_visuals", "namespace": "common" } }, "modal_checkbox_button/header_description_stack_panel/buffer_panel": { "file": "ui/popup_dialog.json", "type": "panel", "children": [ "label" ] }, "modal_checkbox_button/header_description_stack_panel/buffer_panel/label": { "file": "ui/popup_dialog.json", "type": "label" }, "modal_checkbox_button/header_description_stack_panel/padding_panel": { "file": "ui/popup_dialog.json", "type": "panel" }, "dialog_text_wrapper": { "file": "ui/popup_dialog.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "modal_label_panel": { "file": "ui/popup_dialog.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "modal_left_button": { "file": "ui/popup_dialog.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "modal_middle_button": { "file": "ui/popup_dialog.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "modal_rightcancel_button": { "file": "ui/popup_dialog.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "three_buttons_panel": { "file": "ui/popup_dialog.json", "type": "panel", "children": [ "left", "middle", "right" ] }, "three_buttons_panel/left": { "file": "ui/popup_dialog.json", "type": "button", "extend": { "name": "modal_left_button", "namespace": "popup_dialog" } }, "three_buttons_panel/middle": { "file": "ui/popup_dialog.json", "type": "button", "extend": { "name": "modal_middle_button", "namespace": "popup_dialog" } }, "three_buttons_panel/right": { "file": "ui/popup_dialog.json", "type": "button", "extend": { "name": "modal_rightcancel_button", "namespace": "popup_dialog" } }, "two_buttons_checkbox_panel": { "file": "ui/popup_dialog.json", "type": "panel", "children": [ "left", "middle", "checkbox" ] }, "two_buttons_checkbox_panel/left": { "file": "ui/popup_dialog.json", "type": "button", "extend": { "name": "modal_left_button", "namespace": "popup_dialog" } }, "two_buttons_checkbox_panel/middle": { "file": "ui/popup_dialog.json", "type": "button", "extend": { "name": "modal_middle_button", "namespace": "popup_dialog" } }, "two_buttons_checkbox_panel/checkbox": { "file": "ui/popup_dialog.json", "type": "toggle", "extend": { "name": "modal_checkbox_button", "namespace": "popup_dialog" } }, "destructive_three_buttons_panel": { "file": "ui/popup_dialog.json", "type": "panel", "children": [ "left", "middle", "right" ] }, "destructive_three_buttons_panel/left": { "file": "ui/popup_dialog.json", "type": "button", "extend": { "name": "modal_left_button", "namespace": "popup_dialog" } }, "destructive_three_buttons_panel/middle": { "file": "ui/popup_dialog.json", "type": "button", "extend": { "name": "modal_middle_button", "namespace": "popup_dialog" } }, "destructive_three_buttons_panel/right": { "file": "ui/popup_dialog.json", "type": "button", "extend": { "name": "modal_rightcancel_button", "namespace": "popup_dialog" } }, "two_buttons_panel": { "file": "ui/popup_dialog.json", "type": "panel", "children": [ "left", "right" ] }, "two_buttons_panel/left": { "file": "ui/popup_dialog.json", "type": "button", "extend": { "name": "modal_left_button", "namespace": "popup_dialog" } }, "two_buttons_panel/right": { "file": "ui/popup_dialog.json", "type": "button", "extend": { "name": "modal_rightcancel_button", "namespace": "popup_dialog" } }, "destructive_two_buttons_panel": { "file": "ui/popup_dialog.json", "type": "panel", "children": [ "left", "right" ] }, "destructive_two_buttons_panel/left": { "file": "ui/popup_dialog.json", "type": "button", "extend": { "name": "modal_left_button", "namespace": "popup_dialog" } }, "destructive_two_buttons_panel/right": { "file": "ui/popup_dialog.json", "type": "button", "extend": { "name": "modal_rightcancel_button", "namespace": "popup_dialog" } }, "single_button_panel": { "file": "ui/popup_dialog.json", "type": "panel", "children": [ "left" ] }, "single_button_panel/left": { "file": "ui/popup_dialog.json", "type": "button", "extend": { "name": "modal_middle_button", "namespace": "popup_dialog" } }, "single_button_checkbox_panel": { "file": "ui/popup_dialog.json", "type": "panel", "children": [ "left", "checkbox" ] }, "single_button_checkbox_panel/left": { "file": "ui/popup_dialog.json", "type": "button", "extend": { "name": "modal_left_button", "namespace": "popup_dialog" } }, "single_button_checkbox_panel/checkbox": { "file": "ui/popup_dialog.json", "type": "toggle", "extend": { "name": "modal_checkbox_button", "namespace": "popup_dialog" } }, "modal_dialog_base": { "file": "ui/popup_dialog.json", "type": "unknown" }, "modal_dialog_with_buttons": { "file": "ui/popup_dialog.json", "type": "panel", "children": [ "background_with_buttons", "title", "text", "button_panel" ] }, "modal_dialog_with_buttons/background_with_buttons": { "file": "ui/popup_dialog.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "modal_dialog_with_buttons/title": { "file": "ui/popup_dialog.json", "type": "label", "extend": { "name": "modal_title_text", "namespace": "popup_dialog" } }, "modal_dialog_with_buttons/text": { "file": "ui/popup_dialog.json", "type": "panel", "extend": { "name": "modal_label_panel", "namespace": "popup_dialog" } }, "modal_dialog_with_buttons/button_panel": { "file": "ui/popup_dialog.json", "type": "unknown" }, "modal_input_panel": { "file": "ui/popup_dialog.json", "type": "input_panel", "extend": { "name": "input_panel", "namespace": "common" }, "children": [ "black_tint_image" ] }, "modal_input_panel/black_tint_image": { "file": "ui/popup_dialog.json", "type": "image", "extend": { "name": "black_tint_image", "namespace": "popup_dialog" } }, "modal_dialog_popup": { "file": "ui/popup_dialog.json", "type": "panel", "children": [ "modal_input" ] }, "modal_dialog_popup/modal_input": { "file": "ui/popup_dialog.json", "type": "input_panel", "extend": { "name": "modal_input_panel", "namespace": "popup_dialog" }, "children": [ "modal_bg_buttons", "black_background" ] }, "modal_dialog_popup/modal_input/modal_bg_buttons": { "file": "ui/popup_dialog.json", "type": "panel", "extend": { "name": "modal_dialog_with_buttons", "namespace": "popup_dialog" } }, "modal_dialog_popup/modal_input/black_background": { "file": "ui/popup_dialog.json", "type": "image" }, "hollow_2_bottom_button_panel": { "file": "ui/popup_dialog.json", "type": "panel", "children": [ "lower_button_controls" ] }, "hollow_2_bottom_button_panel/lower_button_controls": { "file": "ui/popup_dialog.json", "type": "unknown" }, "form_fit_screen_with_title_and_close_and_bottom_buttons": { "file": "ui/popup_dialog.json", "type": "panel", "extend": { "name": "form_fit_screen_with_title_and_close", "namespace": "popup_dialog" } }, "form_fit_screen_with_title_and_close": { "file": "ui/popup_dialog.json", "type": "panel", "children": [ "panel_background", "panel_content" ] }, "form_fit_screen_with_title_and_close/panel_background": { "file": "ui/popup_dialog.json", "type": "unknown" }, "form_fit_screen_with_title_and_close/panel_content": { "file": "ui/popup_dialog.json", "type": "panel", "children": [ "header", "close_button_panel", "contents", "lower_contents" ] }, "form_fit_screen_with_title_and_close/panel_content/header": { "file": "ui/popup_dialog.json", "type": "panel", "children": [ "header_content" ] }, "form_fit_screen_with_title_and_close/panel_content/header/header_content": { "file": "ui/popup_dialog.json", "type": "label" }, "form_fit_screen_with_title_and_close/panel_content/close_button_panel": { "file": "ui/popup_dialog.json", "type": "panel", "children": [ "close" ] }, "form_fit_screen_with_title_and_close/panel_content/close_button_panel/close": { "file": "ui/popup_dialog.json", "type": "button", "extend": { "name": "close_button", "namespace": "common" } }, "form_fit_screen_with_title_and_close/panel_content/contents": { "file": "ui/popup_dialog.json", "type": "panel", "children": [ "contents", "content_padding" ] }, "form_fit_screen_with_title_and_close/panel_content/contents/contents": { "file": "ui/popup_dialog.json", "type": "unknown" }, "form_fit_screen_with_title_and_close/panel_content/contents/content_padding": { "file": "ui/popup_dialog.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "form_fit_screen_with_title_and_close/panel_content/lower_contents": { "file": "ui/popup_dialog.json", "type": "panel", "children": [ "contents" ] }, "form_fit_screen_with_title_and_close/panel_content/lower_contents/contents": { "file": "ui/popup_dialog.json", "type": "unknown" }, "form_fit_modal_dialog_popup": { "file": "ui/popup_dialog.json", "type": "input_panel", "extend": { "name": "modal_input_panel", "namespace": "popup_dialog" }, "children": [ "background", "content" ] }, "form_fit_modal_dialog_popup/background": { "file": "ui/popup_dialog.json", "type": "unknown" }, "form_fit_modal_dialog_popup/content": { "file": "ui/popup_dialog.json", "type": "unknown" }, "progress_dialog_popup": { "file": "ui/popup_dialog.json", "type": "panel", "extend": { "name": "modal_dialog_popup", "namespace": "popup_dialog" }, "children": [ "background", "title", "progress_content", "button" ] }, "progress_dialog_popup/background": { "file": "ui/popup_dialog.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "progress_dialog_popup/title": { "file": "ui/popup_dialog.json", "type": "label", "extend": { "name": "modal_title_text", "namespace": "popup_dialog" } }, "progress_dialog_popup/progress_content": { "file": "ui/popup_dialog.json", "type": "stack_panel", "extend": { "name": "progress_content", "namespace": "popup_dialog" } }, "progress_dialog_popup/button": { "file": "ui/popup_dialog.json", "type": "panel", "extend": { "name": "single_button_panel", "namespace": "popup_dialog" } }, "progress_content": { "file": "ui/popup_dialog.json", "type": "stack_panel", "children": [ "progress_titles", "progress_bar" ] }, "progress_content/progress_titles": { "file": "ui/popup_dialog.json", "type": "panel", "children": [ "current_progress_label", "total_progress_label" ] }, "progress_content/progress_titles/current_progress_label": { "file": "ui/popup_dialog.json", "type": "label", "extend": { "name": "current_progress_label", "namespace": "popup_dialog" } }, "progress_content/progress_titles/total_progress_label": { "file": "ui/popup_dialog.json", "type": "label", "extend": { "name": "total_progress_label", "namespace": "popup_dialog" } }, "progress_content/progress_bar": { "file": "ui/popup_dialog.json", "type": "panel", "extend": { "name": "progress_bar_icon", "namespace": "popup_dialog" } }, "progress_label": { "file": "ui/popup_dialog.json", "type": "label" }, "current_progress_label": { "file": "ui/popup_dialog.json", "type": "label", "extend": { "name": "progress_label", "namespace": "popup_dialog" } }, "total_progress_label": { "file": "ui/popup_dialog.json", "type": "label", "extend": { "name": "progress_label", "namespace": "popup_dialog" } }, "progress_bar_icon": { "file": "ui/popup_dialog.json", "type": "panel", "children": [ "full_progress_bar_icon", "empty_progress_bar_icon", "progress_bar_nub" ] }, "progress_bar_icon/full_progress_bar_icon": { "file": "ui/popup_dialog.json", "type": "image", "extend": { "name": "full_progress_bar_icon", "namespace": "popup_dialog" } }, "progress_bar_icon/empty_progress_bar_icon": { "file": "ui/popup_dialog.json", "type": "image", "extend": { "name": "empty_progress_bar_icon", "namespace": "popup_dialog" } }, "progress_bar_icon/progress_bar_nub": { "file": "ui/popup_dialog.json", "type": "image", "extend": { "name": "progress_bar_nub", "namespace": "popup_dialog" } }, "empty_progress_bar_icon": { "file": "ui/popup_dialog.json", "type": "image" }, "full_progress_bar_icon": { "file": "ui/popup_dialog.json", "type": "image" }, "progress_bar_nub": { "file": "ui/popup_dialog.json", "type": "image" } }, "portfolio": { "screenshot": { "file": "ui/portfolio_screen.json", "type": "image" }, "screenshot_frame": { "file": "ui/portfolio_screen.json", "type": "image" }, "trash_default": { "file": "ui/portfolio_screen.json", "type": "image" }, "trash_hover": { "file": "ui/portfolio_screen.json", "type": "image" }, "trash_pressed": { "file": "ui/portfolio_screen.json", "type": "image" }, "photo_trash_button_left": { "file": "ui/portfolio_screen.json", "type": "button", "extend": { "name": "photo_trash_button", "namespace": "edu_common" }, "children": [ "default", "hover", "pressed" ] }, "photo_trash_button_left/default": { "file": "ui/portfolio_screen.json", "type": "image", "extend": { "name": "trash_default", "namespace": "portfolio" } }, "photo_trash_button_left/hover": { "file": "ui/portfolio_screen.json", "type": "image", "extend": { "name": "trash_hover", "namespace": "portfolio" } }, "photo_trash_button_left/pressed": { "file": "ui/portfolio_screen.json", "type": "image", "extend": { "name": "trash_pressed", "namespace": "portfolio" } }, "photo_trash_button_right": { "file": "ui/portfolio_screen.json", "type": "button", "extend": { "name": "photo_trash_button", "namespace": "edu_common" }, "children": [ "default", "hover", "pressed" ] }, "photo_trash_button_right/default": { "file": "ui/portfolio_screen.json", "type": "image", "extend": { "name": "trash_default", "namespace": "portfolio" } }, "photo_trash_button_right/hover": { "file": "ui/portfolio_screen.json", "type": "image", "extend": { "name": "trash_hover", "namespace": "portfolio" } }, "photo_trash_button_right/pressed": { "file": "ui/portfolio_screen.json", "type": "image", "extend": { "name": "trash_pressed", "namespace": "portfolio" } }, "photo_number": { "file": "ui/portfolio_screen.json", "type": "label" }, "photo_number_left": { "file": "ui/portfolio_screen.json", "type": "label", "extend": { "name": "photo_number", "namespace": "portfolio" } }, "photo_number_right": { "file": "ui/portfolio_screen.json", "type": "label", "extend": { "name": "photo_number", "namespace": "portfolio" } }, "photo_corner_bl": { "file": "ui/portfolio_screen.json", "type": "image" }, "photo_corner_br": { "file": "ui/portfolio_screen.json", "type": "image" }, "photo_corner_tr": { "file": "ui/portfolio_screen.json", "type": "image" }, "photo_corner_tl": { "file": "ui/portfolio_screen.json", "type": "image" }, "page_photo": { "file": "ui/portfolio_screen.json", "type": "panel", "children": [ "screenshot", "screenshot_frame", "photo_corner_bl", "photo_corner_br", "photo_corner_tl", "photo_corner_tr" ] }, "page_photo/screenshot": { "file": "ui/portfolio_screen.json", "type": "image", "extend": { "name": "screenshot", "namespace": "portfolio" } }, "page_photo/screenshot_frame": { "file": "ui/portfolio_screen.json", "type": "image", "extend": { "name": "screenshot_frame", "namespace": "portfolio" } }, "page_photo/photo_corner_bl": { "file": "ui/portfolio_screen.json", "type": "image", "extend": { "name": "photo_corner_bl", "namespace": "portfolio" } }, "page_photo/photo_corner_br": { "file": "ui/portfolio_screen.json", "type": "image", "extend": { "name": "photo_corner_br", "namespace": "portfolio" } }, "page_photo/photo_corner_tl": { "file": "ui/portfolio_screen.json", "type": "image", "extend": { "name": "photo_corner_tl", "namespace": "portfolio" } }, "page_photo/photo_corner_tr": { "file": "ui/portfolio_screen.json", "type": "image", "extend": { "name": "photo_corner_tr", "namespace": "portfolio" } }, "pick_item": { "file": "ui/portfolio_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "photo", "button" ] }, "pick_item/photo": { "file": "ui/portfolio_screen.json", "type": "panel", "extend": { "name": "page_photo", "namespace": "portfolio" } }, "pick_item/button": { "file": "ui/portfolio_screen.json", "type": "button" }, "header": { "file": "ui/portfolio_screen.json", "type": "label" }, "screenshot_grid": { "file": "ui/portfolio_screen.json", "type": "stack_panel", "extend": { "name": "stack_panel_grid", "namespace": "edu_common" } }, "text_centering_panel": { "file": "ui/portfolio_screen.json", "type": "panel", "children": [ "header" ] }, "text_centering_panel/header": { "file": "ui/portfolio_screen.json", "type": "label", "extend": { "name": "header", "namespace": "portfolio" } }, "pick_scrolling_content": { "file": "ui/portfolio_screen.json", "type": "stack_panel", "children": [ "header", "portfolio_grid" ] }, "pick_scrolling_content/header": { "file": "ui/portfolio_screen.json", "type": "panel", "extend": { "name": "text_centering_panel", "namespace": "portfolio" } }, "pick_scrolling_content/portfolio_grid": { "file": "ui/portfolio_screen.json", "type": "stack_panel", "extend": { "name": "screenshot_grid", "namespace": "portfolio" } }, "no_pick_photos_alert_label": { "file": "ui/portfolio_screen.json", "type": "label" }, "pick_panel": { "file": "ui/portfolio_screen.json", "type": "image", "children": [ "scroll", "close_button", "no_pick_photos_alert_label" ] }, "pick_panel/scroll": { "file": "ui/portfolio_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "pick_panel/close_button": { "file": "ui/portfolio_screen.json", "type": "button", "extend": { "name": "close_button", "namespace": "portfolio" } }, "pick_panel/no_pick_photos_alert_label": { "file": "ui/portfolio_screen.json", "type": "label", "extend": { "name": "no_pick_photos_alert_label", "namespace": "portfolio" } }, "text_edit_box_default_indent": { "file": "ui/portfolio_screen.json", "type": "panel" }, "text_edit_box_hover_indent": { "file": "ui/portfolio_screen.json", "type": "panel", "extend": { "name": "text_edit_box_default_indent", "namespace": "portfolio" }, "children": [ "focus_border_white" ] }, "text_edit_box_hover_indent/focus_border_white": { "file": "ui/portfolio_screen.json", "type": "image", "extend": { "name": "focus_border_white", "namespace": "common" } }, "text_edit_control": { "file": "ui/portfolio_screen.json", "type": "edit_box", "extend": { "name": "multiline_text_edit_box", "namespace": "common" }, "children": [ "clipper_panel", "locked", "default", "hover", "pressed" ] }, "text_edit_control/clipper_panel": { "file": "ui/portfolio_screen.json", "type": "panel", "children": [ "display_text", "place_holder_control" ] }, "text_edit_control/clipper_panel/display_text": { "file": "ui/portfolio_screen.json", "type": "label", "extend": { "name": "text_edit_box_label", "namespace": "common" } }, "text_edit_control/clipper_panel/place_holder_control": { "file": "ui/portfolio_screen.json", "type": "unknown" }, "text_edit_control/locked": { "file": "ui/portfolio_screen.json", "type": "panel", "children": [ "edit_box_indent" ] }, "text_edit_control/locked/edit_box_indent": { "file": "ui/portfolio_screen.json", "type": "image", "extend": { "name": "edit_box_indent", "namespace": "common" } }, "text_edit_control/default": { "file": "ui/portfolio_screen.json", "type": "panel", "extend": { "name": "text_edit_box_default_indent", "namespace": "portfolio" } }, "text_edit_control/hover": { "file": "ui/portfolio_screen.json", "type": "panel", "extend": { "name": "text_edit_box_hover_indent", "namespace": "portfolio" } }, "text_edit_control/pressed": { "file": "ui/portfolio_screen.json", "type": "panel", "extend": { "name": "text_edit_box_hover_indent", "namespace": "portfolio" } }, "photo_item": { "file": "ui/portfolio_screen.json", "type": "panel", "children": [ "screenshot", "screenshot_frame", "text_edit_control", "photo_corner_bl", "photo_corner_br", "photo_corner_tl", "photo_corner_tr" ] }, "photo_item/screenshot": { "file": "ui/portfolio_screen.json", "type": "image", "extend": { "name": "screenshot", "namespace": "portfolio" } }, "photo_item/screenshot_frame": { "file": "ui/portfolio_screen.json", "type": "image", "extend": { "name": "screenshot_frame", "namespace": "portfolio" } }, "photo_item/text_edit_control": { "file": "ui/portfolio_screen.json", "type": "edit_box", "extend": { "name": "text_edit_control", "namespace": "portfolio" } }, "photo_item/photo_corner_bl": { "file": "ui/portfolio_screen.json", "type": "image", "extend": { "name": "photo_corner_bl", "namespace": "portfolio" } }, "photo_item/photo_corner_br": { "file": "ui/portfolio_screen.json", "type": "image", "extend": { "name": "photo_corner_br", "namespace": "portfolio" } }, "photo_item/photo_corner_tl": { "file": "ui/portfolio_screen.json", "type": "image", "extend": { "name": "photo_corner_tl", "namespace": "portfolio" } }, "photo_item/photo_corner_tr": { "file": "ui/portfolio_screen.json", "type": "image", "extend": { "name": "photo_corner_tr", "namespace": "portfolio" } }, "photo_grid_item": { "file": "ui/portfolio_screen.json", "type": "panel", "children": [ "photo_item" ] }, "photo_grid_item/photo_item": { "file": "ui/portfolio_screen.json", "type": "panel", "extend": { "name": "photo_item", "namespace": "portfolio" } }, "photo_list_grid": { "file": "ui/portfolio_screen.json", "type": "grid" }, "prev_button_default": { "file": "ui/portfolio_screen.json", "type": "image" }, "prev_button_hover": { "file": "ui/portfolio_screen.json", "type": "image" }, "prev_button_pressed": { "file": "ui/portfolio_screen.json", "type": "image" }, "photo_page_prev_button": { "file": "ui/portfolio_screen.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed" ] }, "photo_page_prev_button/default": { "file": "ui/portfolio_screen.json", "type": "image", "extend": { "name": "prev_button_default", "namespace": "portfolio" } }, "photo_page_prev_button/hover": { "file": "ui/portfolio_screen.json", "type": "image", "extend": { "name": "prev_button_hover", "namespace": "portfolio" } }, "photo_page_prev_button/pressed": { "file": "ui/portfolio_screen.json", "type": "image", "extend": { "name": "prev_button_pressed", "namespace": "portfolio" } }, "next_button_default": { "file": "ui/portfolio_screen.json", "type": "image" }, "next_button_hover": { "file": "ui/portfolio_screen.json", "type": "image" }, "next_button_pressed": { "file": "ui/portfolio_screen.json", "type": "image" }, "photo_page_next_button": { "file": "ui/portfolio_screen.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed" ] }, "photo_page_next_button/default": { "file": "ui/portfolio_screen.json", "type": "image", "extend": { "name": "next_button_default", "namespace": "portfolio" } }, "photo_page_next_button/hover": { "file": "ui/portfolio_screen.json", "type": "image", "extend": { "name": "next_button_hover", "namespace": "portfolio" } }, "photo_page_next_button/pressed": { "file": "ui/portfolio_screen.json", "type": "image", "extend": { "name": "next_button_pressed", "namespace": "portfolio" } }, "convert_button_default": { "file": "ui/portfolio_screen.json", "type": "image" }, "convert_button_hover": { "file": "ui/portfolio_screen.json", "type": "image" }, "convert_button_pressed": { "file": "ui/portfolio_screen.json", "type": "image" }, "photo_convert_left_button": { "file": "ui/portfolio_screen.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed" ] }, "photo_convert_left_button/default": { "file": "ui/portfolio_screen.json", "type": "image", "extend": { "name": "convert_button_default", "namespace": "portfolio" } }, "photo_convert_left_button/hover": { "file": "ui/portfolio_screen.json", "type": "image", "extend": { "name": "convert_button_hover", "namespace": "portfolio" } }, "photo_convert_left_button/pressed": { "file": "ui/portfolio_screen.json", "type": "image", "extend": { "name": "convert_button_pressed", "namespace": "portfolio" } }, "photo_convert_right_button": { "file": "ui/portfolio_screen.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed" ] }, "photo_convert_right_button/default": { "file": "ui/portfolio_screen.json", "type": "image", "extend": { "name": "convert_button_default", "namespace": "portfolio" } }, "photo_convert_right_button/hover": { "file": "ui/portfolio_screen.json", "type": "image", "extend": { "name": "convert_button_hover", "namespace": "portfolio" } }, "photo_convert_right_button/pressed": { "file": "ui/portfolio_screen.json", "type": "image", "extend": { "name": "convert_button_pressed", "namespace": "portfolio" } }, "bottom_button_panel": { "file": "ui/portfolio_screen.json", "type": "panel", "children": [ "export_button", "im_content_button", "add_photo_button" ] }, "bottom_button_panel/export_button": { "file": "ui/portfolio_screen.json", "type": "button", "extend": { "name": "export_button", "namespace": "portfolio" } }, "bottom_button_panel/im_content_button": { "file": "ui/portfolio_screen.json", "type": "button", "extend": { "name": "im_content_button", "namespace": "portfolio" } }, "bottom_button_panel/add_photo_button": { "file": "ui/portfolio_screen.json", "type": "button", "extend": { "name": "add_photo_button", "namespace": "portfolio" } }, "im_content_button": { "file": "ui/portfolio_screen.json", "type": "button", "extend": { "name": "reader_button", "namespace": "im_reader" } }, "export_button": { "file": "ui/portfolio_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "add_photo_button": { "file": "ui/portfolio_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "book_binding": { "file": "ui/portfolio_screen.json", "type": "image" }, "book_spine": { "file": "ui/portfolio_screen.json", "type": "image" }, "book_background": { "file": "ui/portfolio_screen.json", "type": "image", "children": [ "book_binding", "top_spine", "bottom_spine" ] }, "book_background/book_binding": { "file": "ui/portfolio_screen.json", "type": "image", "extend": { "name": "book_binding", "namespace": "portfolio" } }, "book_background/top_spine": { "file": "ui/portfolio_screen.json", "type": "image", "extend": { "name": "book_spine", "namespace": "portfolio" } }, "book_background/bottom_spine": { "file": "ui/portfolio_screen.json", "type": "image", "extend": { "name": "book_spine", "namespace": "portfolio" } }, "header_panel": { "file": "ui/portfolio_screen.json", "type": "panel", "children": [ "header_background" ] }, "header_panel/header_background": { "file": "ui/portfolio_screen.json", "type": "image" }, "close_button_default": { "file": "ui/portfolio_screen.json", "type": "image" }, "close_button_hover": { "file": "ui/portfolio_screen.json", "type": "image" }, "close_button_pressed": { "file": "ui/portfolio_screen.json", "type": "image" }, "close_button": { "file": "ui/portfolio_screen.json", "type": "button", "children": [ "default", "hover", "pressed" ] }, "close_button/default": { "file": "ui/portfolio_screen.json", "type": "image", "extend": { "name": "close_button_default", "namespace": "portfolio" } }, "close_button/hover": { "file": "ui/portfolio_screen.json", "type": "image", "extend": { "name": "close_button_hover", "namespace": "portfolio" } }, "close_button/pressed": { "file": "ui/portfolio_screen.json", "type": "image", "extend": { "name": "close_button_pressed", "namespace": "portfolio" } }, "no_photos_alert_label": { "file": "ui/portfolio_screen.json", "type": "label" }, "book_and_buttons_panel": { "file": "ui/portfolio_screen.json", "type": "panel", "children": [ "book_panel", "bottom_button_panel" ] }, "book_and_buttons_panel/book_panel": { "file": "ui/portfolio_screen.json", "type": "panel", "children": [ "book_background", "close_button", "photo_list_grid", "photo_number_left", "photo_number_right", "photo_trash_button_left", "photo_trash_button_right", "photo_page_prev_button", "photo_page_next_button", "photo_convert_left_button", "photo_convert_right_button", "no_photos_alert_label" ] }, "book_and_buttons_panel/book_panel/book_background": { "file": "ui/portfolio_screen.json", "type": "image", "extend": { "name": "book_background", "namespace": "portfolio" } }, "book_and_buttons_panel/book_panel/close_button": { "file": "ui/portfolio_screen.json", "type": "button", "extend": { "name": "close_button", "namespace": "portfolio" } }, "book_and_buttons_panel/book_panel/photo_list_grid": { "file": "ui/portfolio_screen.json", "type": "grid", "extend": { "name": "photo_list_grid", "namespace": "portfolio" } }, "book_and_buttons_panel/book_panel/photo_number_left": { "file": "ui/portfolio_screen.json", "type": "label", "extend": { "name": "photo_number_left", "namespace": "portfolio" } }, "book_and_buttons_panel/book_panel/photo_number_right": { "file": "ui/portfolio_screen.json", "type": "label", "extend": { "name": "photo_number_right", "namespace": "portfolio" } }, "book_and_buttons_panel/book_panel/photo_trash_button_left": { "file": "ui/portfolio_screen.json", "type": "button", "extend": { "name": "photo_trash_button_left", "namespace": "portfolio" } }, "book_and_buttons_panel/book_panel/photo_trash_button_right": { "file": "ui/portfolio_screen.json", "type": "button", "extend": { "name": "photo_trash_button_right", "namespace": "portfolio" } }, "book_and_buttons_panel/book_panel/photo_page_prev_button": { "file": "ui/portfolio_screen.json", "type": "button", "extend": { "name": "photo_page_prev_button", "namespace": "portfolio" } }, "book_and_buttons_panel/book_panel/photo_page_next_button": { "file": "ui/portfolio_screen.json", "type": "button", "extend": { "name": "photo_page_next_button", "namespace": "portfolio" } }, "book_and_buttons_panel/book_panel/photo_convert_left_button": { "file": "ui/portfolio_screen.json", "type": "button", "extend": { "name": "photo_convert_left_button", "namespace": "portfolio" } }, "book_and_buttons_panel/book_panel/photo_convert_right_button": { "file": "ui/portfolio_screen.json", "type": "button", "extend": { "name": "photo_convert_right_button", "namespace": "portfolio" } }, "book_and_buttons_panel/book_panel/no_photos_alert_label": { "file": "ui/portfolio_screen.json", "type": "label", "extend": { "name": "no_photos_alert_label", "namespace": "portfolio" } }, "book_and_buttons_panel/bottom_button_panel": { "file": "ui/portfolio_screen.json", "type": "panel", "extend": { "name": "bottom_button_panel", "namespace": "portfolio" } }, "root_panel": { "file": "ui/portfolio_screen.json", "type": "panel" }, "portfolio_screen": { "file": "ui/portfolio_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "portfolio_screen_content": { "file": "ui/portfolio_screen.json", "type": "panel", "children": [ "root_panel" ] }, "portfolio_screen_content/root_panel": { "file": "ui/portfolio_screen.json", "type": "panel", "extend": { "name": "root_panel", "namespace": "portfolio" }, "children": [ "book_and_buttons_panel", "pick_panel" ] }, "portfolio_screen_content/root_panel/book_and_buttons_panel": { "file": "ui/portfolio_screen.json", "type": "panel", "extend": { "name": "book_and_buttons_panel", "namespace": "portfolio" } }, "portfolio_screen_content/root_panel/pick_panel": { "file": "ui/portfolio_screen.json", "type": "image", "extend": { "name": "pick_panel", "namespace": "portfolio" } } }, "progress": { "popup_dialog_base": { "file": "ui/progress_screen.json", "type": "input_panel", "extend": { "name": "popup_dialog", "namespace": "popup_dialog" }, "children": [ "background", "scrolling_panel", "totalSelected", "totalSelectedSize", "left", "right" ] }, "popup_dialog_base/background": { "file": "ui/progress_screen.json", "type": "image", "extend": { "name": "popup_dialog_bg", "namespace": "popup_dialog" } }, "popup_dialog_base/scrolling_panel": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "popup_dialog_base/totalSelected": { "file": "ui/progress_screen.json", "type": "label" }, "popup_dialog_base/totalSelectedSize": { "file": "ui/progress_screen.json", "type": "label" }, "popup_dialog_base/left": { "file": "ui/progress_screen.json", "type": "button", "extend": { "name": "popup_dialog_left_button", "namespace": "popup_dialog" } }, "popup_dialog_base/right": { "file": "ui/progress_screen.json", "type": "button", "extend": { "name": "popup_dialog_right_button", "namespace": "popup_dialog" } }, "checkbox_visual": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "control" ] }, "checkbox_visual/control": { "file": "ui/progress_screen.json", "type": "label" }, "checkbox_visuals_unchecked": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "checkbox_visual", "namespace": "progress" } }, "checkbox_visuals_checked": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "checkbox_visual", "namespace": "progress" } }, "checkbox_visuals_unchecked_locked": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "checkbox_visual", "namespace": "progress" } }, "checkbox_visuals_checked_locked": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "checkbox_visual", "namespace": "progress" } }, "checkbox_visuals_unchecked_hover": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "checkbox_visual", "namespace": "progress" } }, "checkbox_visuals_checked_hover": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "checkbox_visual", "namespace": "progress" } }, "checkbox_with_label_core": { "file": "ui/progress_screen.json", "type": "toggle", "extend": { "name": "checkbox", "namespace": "common" } }, "checkbox_with_label": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "checkbox_with_label_core" ] }, "checkbox_with_label/checkbox_with_label_core": { "file": "ui/progress_screen.json", "type": "toggle", "extend": { "name": "checkbox_with_label_core", "namespace": "progress" } }, "resource_pack_grid_item": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "checkbox_with_label", "namespace": "progress" } }, "resource_pack_section": { "file": "ui/progress_screen.json", "type": "stack_panel", "children": [ "required_resource_pack_list_grid", "optional_resource_pack_list_grid" ] }, "resource_pack_section/required_resource_pack_list_grid": { "file": "ui/progress_screen.json", "type": "grid" }, "resource_pack_section/optional_resource_pack_list_grid": { "file": "ui/progress_screen.json", "type": "grid" }, "simple_popup_dialog_base": { "file": "ui/progress_screen.json", "type": "input_panel", "extend": { "name": "popup_dialog", "namespace": "popup_dialog" }, "children": [ "dialog_background_hollow_3" ] }, "simple_popup_dialog_base/dialog_background_hollow_3": { "file": "ui/progress_screen.json", "type": "image", "extend": { "name": "dialog_background_hollow_3", "namespace": "common" }, "children": [ "control" ] }, "simple_popup_dialog_base/dialog_background_hollow_3/control": { "file": "ui/progress_screen.json", "type": "image", "children": [ "content_panel" ] }, "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel": { "file": "ui/progress_screen.json", "type": "stack_panel", "children": [ "padding_0", "title", "padding_1", "description", "padding_2", "description2", "padding_3", "top_optional_button", "padding_4", "middle_button", "padding_5", "bottom_button" ] }, "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_0": { "file": "ui/progress_screen.json", "type": "panel" }, "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/title": { "file": "ui/progress_screen.json", "type": "label" }, "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_1": { "file": "ui/progress_screen.json", "type": "panel" }, "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/description": { "file": "ui/progress_screen.json", "type": "label" }, "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_2": { "file": "ui/progress_screen.json", "type": "panel" }, "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/description2": { "file": "ui/progress_screen.json", "type": "label" }, "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_3": { "file": "ui/progress_screen.json", "type": "panel" }, "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/top_optional_button": { "file": "ui/progress_screen.json", "type": "button", "extend": { "name": "popup_dialog_button_with_binding", "namespace": "popup_dialog" } }, "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_4": { "file": "ui/progress_screen.json", "type": "panel" }, "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/middle_button": { "file": "ui/progress_screen.json", "type": "button", "extend": { "name": "popup_dialog_button_with_binding", "namespace": "popup_dialog" } }, "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/padding_5": { "file": "ui/progress_screen.json", "type": "panel" }, "simple_popup_dialog_base/dialog_background_hollow_3/control/content_panel/bottom_button": { "file": "ui/progress_screen.json", "type": "button", "extend": { "name": "popup_dialog_button", "namespace": "popup_dialog" } }, "resource_pack_download_popup_base": { "file": "ui/progress_screen.json", "type": "input_panel", "extend": { "name": "simple_popup_dialog_base", "namespace": "progress" } }, "resource_pack_download_server_required": { "file": "ui/progress_screen.json", "type": "input_panel", "extend": { "name": "resource_pack_download_popup_base", "namespace": "progress" } }, "resource_pack_download_optional_and_required": { "file": "ui/progress_screen.json", "type": "input_panel", "extend": { "name": "resource_pack_download_popup_base", "namespace": "progress" } }, "resource_pack_download_optional": { "file": "ui/progress_screen.json", "type": "input_panel", "extend": { "name": "resource_pack_download_popup_base", "namespace": "progress" } }, "resource_pack_download_required": { "file": "ui/progress_screen.json", "type": "input_panel", "extend": { "name": "resource_pack_download_popup_base", "namespace": "progress" } }, "normal_stroke_button": { "file": "ui/progress_screen.json", "type": "image" }, "progress_screen_text": { "file": "ui/progress_screen.json", "type": "label" }, "progress_title_text": { "file": "ui/progress_screen.json", "type": "label", "extend": { "name": "progress_screen_text", "namespace": "progress" } }, "progress_bar_text": { "file": "ui/progress_screen.json", "type": "label", "extend": { "name": "progress_screen_text", "namespace": "progress" } }, "code_text": { "file": "ui/progress_screen.json", "type": "label", "extend": { "name": "progress_screen_text", "namespace": "progress" } }, "code_number": { "file": "ui/progress_screen.json", "type": "label", "extend": { "name": "progress_screen_text", "namespace": "progress" } }, "progress_loading_bars": { "file": "ui/progress_screen.json", "type": "image" }, "progress_loading_spinner": { "file": "ui/progress_screen.json", "type": "image" }, "fancy_progress_loading_bars": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "full_progress_bar_icon", "empty_progress_bar_icon", "progress_bar_nub" ] }, "fancy_progress_loading_bars/full_progress_bar_icon": { "file": "ui/progress_screen.json", "type": "image", "extend": { "name": "full_progress_bar_icon_base", "namespace": "achievement" } }, "fancy_progress_loading_bars/empty_progress_bar_icon": { "file": "ui/progress_screen.json", "type": "image", "extend": { "name": "empty_progress_bar_icon", "namespace": "achievement" } }, "fancy_progress_loading_bars/progress_bar_nub": { "file": "ui/progress_screen.json", "type": "image", "extend": { "name": "progress_bar_nub", "namespace": "progress" } }, "progress_bar": { "file": "ui/progress_screen.json", "type": "custom" }, "progress_bar_nub": { "file": "ui/progress_screen.json", "type": "image" }, "thick_progress_bar_icon_base": { "file": "ui/progress_screen.json", "type": "image" }, "thick_progress_bar_icon_empty": { "file": "ui/progress_screen.json", "type": "image" }, "thick_progress_bar": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "full_progress_bar_icon", "empty_progress_bar_icon" ] }, "thick_progress_bar/full_progress_bar_icon": { "file": "ui/progress_screen.json", "type": "image", "extend": { "name": "thick_progress_bar_icon_base", "namespace": "progress" } }, "thick_progress_bar/empty_progress_bar_icon": { "file": "ui/progress_screen.json", "type": "image", "extend": { "name": "thick_progress_bar_icon_empty", "namespace": "progress" } }, "edu_cloud_upload_progress_bar": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "waveform_loading_bar", "determinate_loading_bar" ] }, "edu_cloud_upload_progress_bar/waveform_loading_bar": { "file": "ui/progress_screen.json", "type": "image", "extend": { "name": "progress_loading_bars", "namespace": "progress" } }, "edu_cloud_upload_progress_bar/determinate_loading_bar": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "fancy_progress_loading_bars", "namespace": "progress" } }, "cancel_button": { "file": "ui/progress_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "retry_button": { "file": "ui/progress_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "abort_button": { "file": "ui/progress_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "ok_button": { "file": "ui/progress_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "title_panel": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "progress_title_text", "progress_bar_text", "progress_bar" ] }, "title_panel/progress_title_text": { "file": "ui/progress_screen.json", "type": "label", "extend": { "name": "progress_title_text", "namespace": "progress" } }, "title_panel/progress_bar_text": { "file": "ui/progress_screen.json", "type": "label", "extend": { "name": "progress_bar_text", "namespace": "progress" } }, "title_panel/progress_bar": { "file": "ui/progress_screen.json", "type": "custom", "extend": { "name": "progress_bar", "namespace": "progress" } }, "button_panel": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "cancel_button" ] }, "button_panel/cancel_button": { "file": "ui/progress_screen.json", "type": "button", "extend": { "name": "cancel_button", "namespace": "progress" } }, "modal_button_panel": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "button_panel", "namespace": "progress" }, "children": [ "cancel_button" ] }, "modal_button_panel/cancel_button": { "file": "ui/progress_screen.json", "type": "button", "extend": { "name": "cancel_button", "namespace": "progress" } }, "modal_button_panel_with_retry": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "modal_button_panel", "namespace": "progress" }, "children": [ "abort_button", "cancel_button", "retry_button" ] }, "modal_button_panel_with_retry/abort_button": { "file": "ui/progress_screen.json", "type": "button", "extend": { "name": "abort_button", "namespace": "progress" } }, "modal_button_panel_with_retry/cancel_button": { "file": "ui/progress_screen.json", "type": "button", "extend": { "name": "cancel_button", "namespace": "progress" } }, "modal_button_panel_with_retry/retry_button": { "file": "ui/progress_screen.json", "type": "button", "extend": { "name": "retry_button", "namespace": "progress" } }, "modal_ok_button_panel": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "button_panel", "namespace": "progress" }, "children": [ "ok_button" ] }, "modal_ok_button_panel/ok_button": { "file": "ui/progress_screen.json", "type": "button", "extend": { "name": "ok_button", "namespace": "progress" } }, "modal_ok_button_panel_with_retry": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "button_panel", "namespace": "progress" }, "children": [ "left_ok_button", "center_cancel_button", "center_ok_button", "right_retry_button" ] }, "modal_ok_button_panel_with_retry/left_ok_button": { "file": "ui/progress_screen.json", "type": "button", "extend": { "name": "abort_button", "namespace": "progress" } }, "modal_ok_button_panel_with_retry/center_cancel_button": { "file": "ui/progress_screen.json", "type": "button", "extend": { "name": "cancel_button", "namespace": "progress" } }, "modal_ok_button_panel_with_retry/center_ok_button": { "file": "ui/progress_screen.json", "type": "button", "extend": { "name": "ok_button", "namespace": "progress" } }, "modal_ok_button_panel_with_retry/right_retry_button": { "file": "ui/progress_screen.json", "type": "button", "extend": { "name": "retry_button", "namespace": "progress" } }, "gamepad_helpers": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "gamepad_helper_a" ] }, "gamepad_helpers/gamepad_helper_a": { "file": "ui/progress_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_a", "namespace": "common" } }, "world_image": { "file": "ui/progress_screen.json", "type": "image" }, "cloud_image": { "file": "ui/progress_screen.json", "type": "image" }, "server_image": { "file": "ui/progress_screen.json", "type": "image" }, "edu_cloud_upload_image": { "file": "ui/progress_screen.json", "type": "stack_panel", "children": [ "world_image_wrapper", "arrow_image_wrapper", "cloud_image_wrapper" ] }, "edu_cloud_upload_image/world_image_wrapper": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "fetch_world_image" ] }, "edu_cloud_upload_image/world_image_wrapper/fetch_world_image": { "file": "ui/progress_screen.json", "type": "image", "extend": { "name": "world_image", "namespace": "progress" } }, "edu_cloud_upload_image/arrow_image_wrapper": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "arrow_image" ] }, "edu_cloud_upload_image/arrow_image_wrapper/arrow_image": { "file": "ui/progress_screen.json", "type": "image" }, "edu_cloud_upload_image/cloud_image_wrapper": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "upload_cloud_image" ] }, "edu_cloud_upload_image/cloud_image_wrapper/upload_cloud_image": { "file": "ui/progress_screen.json", "type": "image", "extend": { "name": "cloud_image", "namespace": "progress" } }, "edu_cloud_fetch_image": { "file": "ui/progress_screen.json", "type": "stack_panel", "children": [ "cloud_image_wrapper", "spyglass_image_wrapper", "world_image_wrapper" ] }, "edu_cloud_fetch_image/cloud_image_wrapper": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "fetch_cloud_image" ] }, "edu_cloud_fetch_image/cloud_image_wrapper/fetch_cloud_image": { "file": "ui/progress_screen.json", "type": "image", "extend": { "name": "cloud_image", "namespace": "progress" } }, "edu_cloud_fetch_image/spyglass_image_wrapper": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "spyglass_image" ] }, "edu_cloud_fetch_image/spyglass_image_wrapper/spyglass_image": { "file": "ui/progress_screen.json", "type": "image" }, "edu_cloud_fetch_image/world_image_wrapper": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "fetch_world_image" ] }, "edu_cloud_fetch_image/world_image_wrapper/fetch_world_image": { "file": "ui/progress_screen.json", "type": "image", "extend": { "name": "world_image", "namespace": "progress" } }, "edu_cloud_download_image": { "file": "ui/progress_screen.json", "type": "stack_panel", "children": [ "cloud_image_wrapper", "arrow_image_wrapper", "world_image_wrapper" ] }, "edu_cloud_download_image/cloud_image_wrapper": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "download_cloud_image" ] }, "edu_cloud_download_image/cloud_image_wrapper/download_cloud_image": { "file": "ui/progress_screen.json", "type": "image", "extend": { "name": "cloud_image", "namespace": "progress" } }, "edu_cloud_download_image/arrow_image_wrapper": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "arrow_image" ] }, "edu_cloud_download_image/arrow_image_wrapper/arrow_image": { "file": "ui/progress_screen.json", "type": "image" }, "edu_cloud_download_image/world_image_wrapper": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "download_world_image" ] }, "edu_cloud_download_image/world_image_wrapper/download_world_image": { "file": "ui/progress_screen.json", "type": "image", "extend": { "name": "world_image", "namespace": "progress" } }, "edu_server_fetch_image": { "file": "ui/progress_screen.json", "type": "stack_panel", "children": [ "server_image_wrapper_left", "spyglass_image_wrapper", "server_image_wrapper_right" ] }, "edu_server_fetch_image/server_image_wrapper_left": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "server_image" ] }, "edu_server_fetch_image/server_image_wrapper_left/server_image": { "file": "ui/progress_screen.json", "type": "image", "extend": { "name": "server_image", "namespace": "progress" } }, "edu_server_fetch_image/spyglass_image_wrapper": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "spyglass_image" ] }, "edu_server_fetch_image/spyglass_image_wrapper/spyglass_image": { "file": "ui/progress_screen.json", "type": "image" }, "edu_server_fetch_image/server_image_wrapper_right": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "server_image" ] }, "edu_server_fetch_image/server_image_wrapper_right/server_image": { "file": "ui/progress_screen.json", "type": "image", "extend": { "name": "server_image", "namespace": "progress" } }, "modal_progress_panel_no_cancel": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "common_panel", "content" ] }, "modal_progress_panel_no_cancel/common_panel": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "modal_progress_panel_no_cancel/content": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "title_panel", "progress_loading_bars" ] }, "modal_progress_panel_no_cancel/content/title_panel": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "title_panel", "namespace": "progress" } }, "modal_progress_panel_no_cancel/content/progress_loading_bars": { "file": "ui/progress_screen.json", "type": "image", "extend": { "name": "progress_loading_bars", "namespace": "progress" } }, "modal_progress_panel_with_cancel": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "common_panel", "content", "modal_button_panel" ] }, "modal_progress_panel_with_cancel/common_panel": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "modal_progress_panel_with_cancel/content": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "title_panel", "progress_loading_bars" ] }, "modal_progress_panel_with_cancel/content/title_panel": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "title_panel", "namespace": "progress" } }, "modal_progress_panel_with_cancel/content/progress_loading_bars": { "file": "ui/progress_screen.json", "type": "image", "extend": { "name": "progress_loading_bars", "namespace": "progress" } }, "modal_progress_panel_with_cancel/modal_button_panel": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "modal_button_panel", "namespace": "progress" } }, "progress_panel": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "progress_loading_bars", "title_panel", "button_panel" ] }, "progress_panel/progress_loading_bars": { "file": "ui/progress_screen.json", "type": "image", "extend": { "name": "progress_loading_bars", "namespace": "progress" } }, "progress_panel/title_panel": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "title_panel", "namespace": "progress" } }, "progress_panel/button_panel": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "button_panel", "namespace": "progress" } }, "modal_progress_screen": { "file": "ui/progress_screen.json", "type": "screen", "extend": { "name": "progress_screen", "namespace": "progress" } }, "delete_progress_screen": { "file": "ui/progress_screen.json", "type": "screen", "extend": { "name": "modal_progress_screen", "namespace": "progress" } }, "realms_loading_background": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "realms_loading_screen_background", "namespace": "progress" }, "children": [ "solid_blue" ] }, "realms_loading_background/solid_blue": { "file": "ui/progress_screen.json", "type": "image", "children": [ "gradient" ] }, "realms_loading_background/solid_blue/gradient": { "file": "ui/progress_screen.json", "type": "image" }, "realms_stories_loading_progress_screen": { "file": "ui/progress_screen.json", "type": "screen", "extend": { "name": "progress_screen", "namespace": "progress" } }, "world_loading_progress_screen": { "file": "ui/progress_screen.json", "type": "screen", "extend": { "name": "progress_screen", "namespace": "progress" } }, "world_loading_screen_background": { "file": "ui/progress_screen.json", "type": "image", "extend": { "name": "dirt_background", "namespace": "common" } }, "overworld_loading_background": { "file": "ui/progress_screen.json", "type": "image", "extend": { "name": "world_loading_screen_background", "namespace": "progress" }, "children": [ "background_gradient" ] }, "overworld_loading_background/background_gradient": { "file": "ui/progress_screen.json", "type": "custom" }, "overworld_loading_progress_screen": { "file": "ui/progress_screen.json", "type": "screen", "extend": { "name": "world_loading_progress_screen", "namespace": "progress" } }, "nether_loading_background": { "file": "ui/progress_screen.json", "type": "image", "extend": { "name": "world_loading_screen_background", "namespace": "progress" }, "children": [ "background_gradient" ] }, "nether_loading_background/background_gradient": { "file": "ui/progress_screen.json", "type": "custom" }, "nether_loading_progress_screen": { "file": "ui/progress_screen.json", "type": "screen", "extend": { "name": "world_loading_progress_screen", "namespace": "progress" } }, "theend_loading_background": { "file": "ui/progress_screen.json", "type": "image", "extend": { "name": "world_loading_screen_background", "namespace": "progress" }, "children": [ "background_gradient" ] }, "theend_loading_background/background_gradient": { "file": "ui/progress_screen.json", "type": "custom" }, "theend_loading_progress_screen": { "file": "ui/progress_screen.json", "type": "screen", "extend": { "name": "world_loading_progress_screen", "namespace": "progress" } }, "world_saving_progress_screen": { "file": "ui/progress_screen.json", "type": "screen", "extend": { "name": "progress_screen", "namespace": "progress" } }, "fetching_edu_cloud_worlds": { "file": "ui/progress_screen.json", "type": "screen", "extend": { "name": "progress_screen", "namespace": "progress" } }, "edu_cloud_download_progress_screen": { "file": "ui/progress_screen.json", "type": "screen", "extend": { "name": "progress_screen", "namespace": "progress" } }, "fetching_edu_servers": { "file": "ui/progress_screen.json", "type": "screen", "extend": { "name": "progress_screen", "namespace": "progress" } }, "joining_edu_server": { "file": "ui/progress_screen.json", "type": "screen", "extend": { "name": "progress_screen", "namespace": "progress" } }, "world_convert_modal_progress_screen": { "file": "ui/progress_screen.json", "type": "screen", "extend": { "name": "progress_screen", "namespace": "progress" } }, "progress_screen": { "file": "ui/progress_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "popup_dialog_factory": { "file": "ui/progress_screen.json", "type": "factory" }, "progress_screen_content": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "progress_content_panel", "popup_dialog_factory" ] }, "progress_screen_content/progress_content_panel": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "progress_content_panel", "namespace": "progress" } }, "progress_screen_content/popup_dialog_factory": { "file": "ui/progress_screen.json", "type": "factory", "extend": { "name": "popup_dialog_factory", "namespace": "progress" } }, "progress_content_panel": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "progress_panel", "gamepad_helpers" ] }, "progress_content_panel/progress_panel": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "progress_panel", "namespace": "progress" } }, "progress_content_panel/gamepad_helpers": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "gamepad_helpers", "namespace": "progress" } }, "modal_screen_content": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "modal_progress_panel" ] }, "modal_screen_content/modal_progress_panel": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "modal_progress_panel_with_cancel", "namespace": "progress" } }, "world_modal_progress_panel": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "common_panel", "content_wrapper" ] }, "world_modal_progress_panel/common_panel": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "world_modal_progress_panel/content_wrapper": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "base_content", "inside_content" ] }, "world_modal_progress_panel/content_wrapper/base_content": { "file": "ui/progress_screen.json", "type": "stack_panel", "children": [ "vertical_title_padding", "title_text_panel", "vertical_text_padding", "progress_text_panel" ] }, "world_modal_progress_panel/content_wrapper/base_content/vertical_title_padding": { "file": "ui/progress_screen.json", "type": "panel" }, "world_modal_progress_panel/content_wrapper/base_content/title_text_panel": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "progress_title_text" ] }, "world_modal_progress_panel/content_wrapper/base_content/title_text_panel/progress_title_text": { "file": "ui/progress_screen.json", "type": "label", "extend": { "name": "progress_title_text", "namespace": "progress" } }, "world_modal_progress_panel/content_wrapper/base_content/vertical_text_padding": { "file": "ui/progress_screen.json", "type": "panel" }, "world_modal_progress_panel/content_wrapper/base_content/progress_text_panel": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "progress_bar_text" ] }, "world_modal_progress_panel/content_wrapper/base_content/progress_text_panel/progress_bar_text": { "file": "ui/progress_screen.json", "type": "label", "extend": { "name": "progress_bar_text", "namespace": "progress" } }, "world_modal_progress_panel/content_wrapper/inside_content": { "file": "ui/progress_screen.json", "type": "stack_panel", "children": [ "loading_bar_panel", "vertical_padding", "modal_button_panel", "vertical_padding_2" ] }, "world_modal_progress_panel/content_wrapper/inside_content/loading_bar_panel": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "fancy_progress_loading_bars", "progress_loading_bars" ] }, "world_modal_progress_panel/content_wrapper/inside_content/loading_bar_panel/fancy_progress_loading_bars": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "fancy_progress_loading_bars", "namespace": "progress" } }, "world_modal_progress_panel/content_wrapper/inside_content/loading_bar_panel/progress_loading_bars": { "file": "ui/progress_screen.json", "type": "image", "extend": { "name": "progress_loading_bars", "namespace": "progress" } }, "world_modal_progress_panel/content_wrapper/inside_content/vertical_padding": { "file": "ui/progress_screen.json", "type": "panel" }, "world_modal_progress_panel/content_wrapper/inside_content/modal_button_panel": { "file": "ui/progress_screen.json", "type": "unknown" }, "world_modal_progress_panel/content_wrapper/inside_content/vertical_padding_2": { "file": "ui/progress_screen.json", "type": "panel" }, "cloud_upload_panel": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "common_panel", "base_content" ] }, "cloud_upload_panel/common_panel": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "cloud_upload_panel/base_content": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "progress_title_text", "progress_text", "edu_cloud_upload_image", "loading_bar_panel" ] }, "cloud_upload_panel/base_content/progress_title_text": { "file": "ui/progress_screen.json", "type": "label", "extend": { "name": "progress_title_text", "namespace": "progress" } }, "cloud_upload_panel/base_content/progress_text": { "file": "ui/progress_screen.json", "type": "label" }, "cloud_upload_panel/base_content/edu_cloud_upload_image": { "file": "ui/progress_screen.json", "type": "stack_panel", "extend": { "name": "edu_cloud_upload_image", "namespace": "progress" } }, "cloud_upload_panel/base_content/loading_bar_panel": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "progress_loading_bars" ] }, "cloud_upload_panel/base_content/loading_bar_panel/progress_loading_bars": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "edu_cloud_upload_progress_bar", "namespace": "progress" } }, "cloud_error_panel": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "common_panel", "content_wrapper" ] }, "cloud_error_panel/common_panel": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "cloud_error_panel/content_wrapper": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "title_wrapper", "error_text_tts_wrapper", "button_content", "error_button_content" ] }, "cloud_error_panel/content_wrapper/title_wrapper": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "progress_title_text" ] }, "cloud_error_panel/content_wrapper/title_wrapper/progress_title_text": { "file": "ui/progress_screen.json", "type": "label", "extend": { "name": "progress_title_text", "namespace": "progress" } }, "cloud_error_panel/content_wrapper/error_text_tts_wrapper": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "tts_border", "edu_cloud_error_text_wrapper" ] }, "cloud_error_panel/content_wrapper/error_text_tts_wrapper/tts_border": { "file": "ui/progress_screen.json", "type": "button", "extend": { "name": "non_interact_focus_border_button", "namespace": "common" } }, "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper": { "file": "ui/progress_screen.json", "type": "stack_panel", "children": [ "edu_cloud_error_text", "vertical_padding", "error_code", "vertical_padding_2", "cloud_support_link" ] }, "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/edu_cloud_error_text": { "file": "ui/progress_screen.json", "type": "label" }, "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/vertical_padding": { "file": "ui/progress_screen.json", "type": "panel" }, "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code": { "file": "ui/progress_screen.json", "type": "stack_panel", "children": [ "code_text", "code_number" ] }, "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code/code_text": { "file": "ui/progress_screen.json", "type": "label", "extend": { "name": "code_text", "namespace": "progress" } }, "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/error_code/code_number": { "file": "ui/progress_screen.json", "type": "label", "extend": { "name": "code_number", "namespace": "progress" } }, "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/vertical_padding_2": { "file": "ui/progress_screen.json", "type": "panel" }, "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link": { "file": "ui/progress_screen.json", "type": "stack_panel", "children": [ "cloud_support_hypertext", "padded_icon" ] }, "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/cloud_support_hypertext": { "file": "ui/progress_screen.json", "type": "button", "extend": { "name": "underline_button", "namespace": "edu_common" } }, "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/padded_icon": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "icon" ] }, "cloud_error_panel/content_wrapper/error_text_tts_wrapper/edu_cloud_error_text_wrapper/cloud_support_link/padded_icon/icon": { "file": "ui/progress_screen.json", "type": "image" }, "cloud_error_panel/content_wrapper/button_content": { "file": "ui/progress_screen.json", "type": "stack_panel", "children": [ "modal_button_panel" ] }, "cloud_error_panel/content_wrapper/button_content/modal_button_panel": { "file": "ui/progress_screen.json", "type": "unknown" }, "cloud_error_panel/content_wrapper/error_button_content": { "file": "ui/progress_screen.json", "type": "stack_panel", "children": [ "download_ok_button", "download_cancel_button" ] }, "cloud_error_panel/content_wrapper/error_button_content/download_ok_button": { "file": "ui/progress_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "cloud_error_panel/content_wrapper/error_button_content/download_cancel_button": { "file": "ui/progress_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "cloud_fetch_panel": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "common_panel", "base_content" ] }, "cloud_fetch_panel/common_panel": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "cloud_fetch_panel/base_content": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "progress_title_text", "progress_text", "edu_cloud_fetch_image", "loading_bar_panel" ] }, "cloud_fetch_panel/base_content/progress_title_text": { "file": "ui/progress_screen.json", "type": "label", "extend": { "name": "progress_title_text", "namespace": "progress" } }, "cloud_fetch_panel/base_content/progress_text": { "file": "ui/progress_screen.json", "type": "label" }, "cloud_fetch_panel/base_content/edu_cloud_fetch_image": { "file": "ui/progress_screen.json", "type": "stack_panel", "extend": { "name": "edu_cloud_fetch_image", "namespace": "progress" } }, "cloud_fetch_panel/base_content/loading_bar_panel": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "progress_loading_bars" ] }, "cloud_fetch_panel/base_content/loading_bar_panel/progress_loading_bars": { "file": "ui/progress_screen.json", "type": "image", "extend": { "name": "progress_loading_bars", "namespace": "progress" } }, "server_fetch_panel": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "common_panel", "base_content" ] }, "server_fetch_panel/common_panel": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "server_fetch_panel/base_content": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "progress_title_text", "progress_text", "edu_server_fetch_image", "loading_bar_panel" ] }, "server_fetch_panel/base_content/progress_title_text": { "file": "ui/progress_screen.json", "type": "label", "extend": { "name": "progress_title_text", "namespace": "progress" } }, "server_fetch_panel/base_content/progress_text": { "file": "ui/progress_screen.json", "type": "label" }, "server_fetch_panel/base_content/edu_server_fetch_image": { "file": "ui/progress_screen.json", "type": "stack_panel", "extend": { "name": "edu_server_fetch_image", "namespace": "progress" } }, "server_fetch_panel/base_content/loading_bar_panel": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "progress_loading_bars" ] }, "server_fetch_panel/base_content/loading_bar_panel/progress_loading_bars": { "file": "ui/progress_screen.json", "type": "image", "extend": { "name": "progress_loading_bars", "namespace": "progress" } }, "cloud_download_panel": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "common_panel", "base_content", "loading_bar_panel" ] }, "cloud_download_panel/common_panel": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "cloud_download_panel/base_content": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "progress_title_text", "progress_bar_text", "edu_cloud_download_image" ] }, "cloud_download_panel/base_content/progress_title_text": { "file": "ui/progress_screen.json", "type": "label", "extend": { "name": "progress_title_text", "namespace": "progress" } }, "cloud_download_panel/base_content/progress_bar_text": { "file": "ui/progress_screen.json", "type": "label", "extend": { "name": "progress_bar_text", "namespace": "progress" } }, "cloud_download_panel/base_content/edu_cloud_download_image": { "file": "ui/progress_screen.json", "type": "stack_panel", "extend": { "name": "edu_cloud_download_image", "namespace": "progress" } }, "cloud_download_panel/loading_bar_panel": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "progress_loading_bars" ] }, "cloud_download_panel/loading_bar_panel/progress_loading_bars": { "file": "ui/progress_screen.json", "type": "image", "extend": { "name": "progress_loading_bars", "namespace": "progress" } }, "server_fetch_timeout_panel": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "common_panel", "base_content" ] }, "server_fetch_timeout_panel/common_panel": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "server_fetch_timeout_panel/base_content": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "progress_title_text", "progress_text", "edu_server_fetch_image", "loading_bar_panel", "timeout_button" ] }, "server_fetch_timeout_panel/base_content/progress_title_text": { "file": "ui/progress_screen.json", "type": "label", "extend": { "name": "progress_title_text", "namespace": "progress" } }, "server_fetch_timeout_panel/base_content/progress_text": { "file": "ui/progress_screen.json", "type": "label" }, "server_fetch_timeout_panel/base_content/edu_server_fetch_image": { "file": "ui/progress_screen.json", "type": "stack_panel", "extend": { "name": "edu_server_fetch_image", "namespace": "progress" } }, "server_fetch_timeout_panel/base_content/loading_bar_panel": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "progress_loading_bars" ] }, "server_fetch_timeout_panel/base_content/loading_bar_panel/progress_loading_bars": { "file": "ui/progress_screen.json", "type": "image", "extend": { "name": "progress_loading_bars", "namespace": "progress" } }, "server_fetch_timeout_panel/base_content/timeout_button": { "file": "ui/progress_screen.json", "type": "button", "extend": { "name": "cancel_button", "namespace": "progress" } }, "world_convert_modal_progress_screen_content": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "mobile_data_icon", "title_panel_content", "world_modal_progress_panel", "popup_dialog_factory" ] }, "world_convert_modal_progress_screen_content/mobile_data_icon": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "mobile_data_icon", "namespace": "progress" } }, "world_convert_modal_progress_screen_content/title_panel_content": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "title_panel_content", "namespace": "common_art" } }, "world_convert_modal_progress_screen_content/world_modal_progress_panel": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "world_modal_progress_panel", "namespace": "progress" } }, "world_convert_modal_progress_screen_content/popup_dialog_factory": { "file": "ui/progress_screen.json", "type": "factory", "extend": { "name": "popup_dialog_factory", "namespace": "progress" } }, "realms_loading_world_modal_progress_screen_content": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "mobile_data_icon", "realms_title_image", "world_modal_progress_panel", "popup_dialog_factory", "server_region_connected" ] }, "realms_loading_world_modal_progress_screen_content/mobile_data_icon": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "mobile_data_icon", "namespace": "progress" } }, "realms_loading_world_modal_progress_screen_content/realms_title_image": { "file": "ui/progress_screen.json", "type": "image" }, "realms_loading_world_modal_progress_screen_content/world_modal_progress_panel": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "world_modal_progress_panel", "namespace": "progress" } }, "realms_loading_world_modal_progress_screen_content/popup_dialog_factory": { "file": "ui/progress_screen.json", "type": "factory", "extend": { "name": "popup_dialog_factory", "namespace": "progress" } }, "realms_loading_world_modal_progress_screen_content/server_region_connected": { "file": "ui/progress_screen.json", "type": "stack_panel", "children": [ "server_region_connected_text", "padding", "server_region_ping_icon" ] }, "realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_connected_text": { "file": "ui/progress_screen.json", "type": "label" }, "realms_loading_world_modal_progress_screen_content/server_region_connected/padding": { "file": "ui/progress_screen.json", "type": "panel" }, "realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_ping_icon": { "file": "ui/progress_screen.json", "type": "image" }, "world_save_modal_progress_screen_content": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "title_panel_content", "world_modal_progress_panel", "save_icon", "popup_dialog_factory" ] }, "world_save_modal_progress_screen_content/title_panel_content": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "title_panel_content", "namespace": "common_art" } }, "world_save_modal_progress_screen_content/world_modal_progress_panel": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "world_modal_progress_panel", "namespace": "progress" } }, "world_save_modal_progress_screen_content/save_icon": { "file": "ui/progress_screen.json", "type": "image", "extend": { "name": "auto_save", "namespace": "progress" } }, "world_save_modal_progress_screen_content/popup_dialog_factory": { "file": "ui/progress_screen.json", "type": "factory", "extend": { "name": "popup_dialog_factory", "namespace": "progress" } }, "cloud_upload_screen_content": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "title_panel_content", "cloud_upload_panel", "cloud_upload_error_panel", "popup_dialog_factory", "cloud_conflict_resolution_popup_factory" ] }, "cloud_upload_screen_content/title_panel_content": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "title_panel_content", "namespace": "common_art" } }, "cloud_upload_screen_content/cloud_upload_panel": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "cloud_upload_panel", "namespace": "progress" } }, "cloud_upload_screen_content/cloud_upload_error_panel": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "cloud_error_panel", "namespace": "progress" } }, "cloud_upload_screen_content/popup_dialog_factory": { "file": "ui/progress_screen.json", "type": "factory", "extend": { "name": "popup_dialog_factory", "namespace": "progress" } }, "cloud_upload_screen_content/cloud_conflict_resolution_popup_factory": { "file": "ui/progress_screen.json", "type": "factory", "extend": { "name": "edu_cloud_conflict_resolution_popup_dialog_factory", "namespace": "edu_common" } }, "edu_cloud_fetch_screen_content": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "cloud_fetch_panel", "popup_dialog_factory" ] }, "edu_cloud_fetch_screen_content/cloud_fetch_panel": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "cloud_fetch_panel", "namespace": "progress" } }, "edu_cloud_fetch_screen_content/popup_dialog_factory": { "file": "ui/progress_screen.json", "type": "factory", "extend": { "name": "popup_dialog_factory", "namespace": "progress" } }, "edu_server_fetch_screen_content": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "server_fetch_panel", "server_fetch_timeout_panel", "popup_dialog_factory" ] }, "edu_server_fetch_screen_content/server_fetch_panel": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "server_fetch_panel", "namespace": "progress" } }, "edu_server_fetch_screen_content/server_fetch_timeout_panel": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "server_fetch_timeout_panel", "namespace": "progress" } }, "edu_server_fetch_screen_content/popup_dialog_factory": { "file": "ui/progress_screen.json", "type": "factory", "extend": { "name": "popup_dialog_factory", "namespace": "progress" } }, "joining_edu_server_progress_screen_content": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "title_panel_content", "world_modal_progress_panel", "popup_dialog_factory" ] }, "joining_edu_server_progress_screen_content/title_panel_content": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "title_panel_content", "namespace": "common_art" } }, "joining_edu_server_progress_screen_content/world_modal_progress_panel": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "world_modal_progress_panel", "namespace": "progress" } }, "joining_edu_server_progress_screen_content/popup_dialog_factory": { "file": "ui/progress_screen.json", "type": "factory", "extend": { "name": "popup_dialog_factory", "namespace": "progress" } }, "cloud_download_screen_content": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "background", "cloud_download_panel", "cloud_download_error_panel", "popup_dialog_factory" ] }, "cloud_download_screen_content/background": { "file": "ui/progress_screen.json", "type": "image", "extend": { "name": "screen_background", "namespace": "common" } }, "cloud_download_screen_content/cloud_download_panel": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "cloud_download_panel", "namespace": "progress" } }, "cloud_download_screen_content/cloud_download_error_panel": { "file": "ui/progress_screen.json", "type": "panel", "extend": { "name": "cloud_error_panel", "namespace": "progress" } }, "cloud_download_screen_content/popup_dialog_factory": { "file": "ui/progress_screen.json", "type": "factory", "extend": { "name": "popup_dialog_factory", "namespace": "progress" } }, "auto_save": { "file": "ui/progress_screen.json", "type": "image" }, "mobile_data_ios_icon": { "file": "ui/progress_screen.json", "type": "image" }, "mobile_data_android_icon": { "file": "ui/progress_screen.json", "type": "image" }, "mobile_data_icon_text": { "file": "ui/progress_screen.json", "type": "label" }, "mobile_data_icon": { "file": "ui/progress_screen.json", "type": "panel", "children": [ "icon_android", "icon_ios", "text" ] }, "mobile_data_icon/icon_android": { "file": "ui/progress_screen.json", "type": "image", "extend": { "name": "mobile_data_android_icon", "namespace": "progress" } }, "mobile_data_icon/icon_ios": { "file": "ui/progress_screen.json", "type": "image", "extend": { "name": "mobile_data_ios_icon", "namespace": "progress" } }, "mobile_data_icon/text": { "file": "ui/progress_screen.json", "type": "label", "extend": { "name": "mobile_data_icon_text", "namespace": "progress" } } }, "rating_prompt": { "padding_horizontal": { "file": "ui/rating_prompt.json", "type": "panel" }, "padding_vertical": { "file": "ui/rating_prompt.json", "type": "panel" }, "rating_prompt_yes_label": { "file": "ui/rating_prompt.json", "type": "panel", "children": [ "button_label" ] }, "rating_prompt_yes_label/button_label": { "file": "ui/rating_prompt.json", "type": "label" }, "rating_prompt_no_label": { "file": "ui/rating_prompt.json", "type": "panel", "children": [ "button_label" ] }, "rating_prompt_no_label/button_label": { "file": "ui/rating_prompt.json", "type": "label" }, "rating_prompt_yes_button": { "file": "ui/rating_prompt.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "rating_prompt_no_button": { "file": "ui/rating_prompt.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "dialog_image": { "file": "ui/rating_prompt.json", "type": "image" }, "dialog_image_with_border": { "file": "ui/rating_prompt.json", "type": "image", "children": [ "dialog_image" ] }, "dialog_image_with_border/dialog_image": { "file": "ui/rating_prompt.json", "type": "image", "extend": { "name": "dialog_image", "namespace": "rating_prompt" } }, "button_panel": { "file": "ui/rating_prompt.json", "type": "stack_panel", "children": [ "padding_3", "yes_button", "no_button" ] }, "button_panel/padding_3": { "file": "ui/rating_prompt.json", "type": "panel", "extend": { "name": "padding_vertical", "namespace": "rating_prompt" } }, "button_panel/yes_button": { "file": "ui/rating_prompt.json", "type": "button", "extend": { "name": "rating_prompt_yes_button", "namespace": "rating_prompt" } }, "button_panel/no_button": { "file": "ui/rating_prompt.json", "type": "button", "extend": { "name": "rating_prompt_no_button", "namespace": "rating_prompt" } }, "image_panel": { "file": "ui/rating_prompt.json", "type": "stack_panel", "children": [ "padding_2", "dialog_image_with_border" ] }, "image_panel/padding_2": { "file": "ui/rating_prompt.json", "type": "panel", "extend": { "name": "padding_vertical", "namespace": "rating_prompt" } }, "image_panel/dialog_image_with_border": { "file": "ui/rating_prompt.json", "type": "image", "extend": { "name": "dialog_image_with_border", "namespace": "rating_prompt" } }, "main_panel": { "file": "ui/rating_prompt.json", "type": "stack_panel", "children": [ "padding_0", "image_panel", "padding_1", "button_panel" ] }, "main_panel/padding_0": { "file": "ui/rating_prompt.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "rating_prompt" } }, "main_panel/image_panel": { "file": "ui/rating_prompt.json", "type": "stack_panel", "extend": { "name": "image_panel", "namespace": "rating_prompt" } }, "main_panel/padding_1": { "file": "ui/rating_prompt.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "rating_prompt" } }, "main_panel/button_panel": { "file": "ui/rating_prompt.json", "type": "stack_panel", "extend": { "name": "button_panel", "namespace": "rating_prompt" } }, "rating_prompt_screen": { "file": "ui/rating_prompt.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "rating_prompt_screen_content": { "file": "ui/rating_prompt.json", "type": "panel", "extend": { "name": "main_panel_no_buttons", "namespace": "common_dialogs" } } }, "realms_common": { "pending_invites_icon": { "file": "ui/realms_common.json", "type": "image" }, "dark_banner": { "file": "ui/realms_common.json", "type": "image" }, "dark_banner_hover": { "file": "ui/realms_common.json", "type": "image", "extend": { "name": "dark_banner", "namespace": "realms_common" } }, "legacy_banner": { "file": "ui/realms_common.json", "type": "image" }, "main_banner": { "file": "ui/realms_common.json", "type": "image" }, "hollow_banner": { "file": "ui/realms_common.json", "type": "image" }, "popup_dialog_bg": { "file": "ui/realms_common.json", "type": "image" }, "popup_dialog__play_on_realm": { "file": "ui/realms_common.json", "type": "input_panel", "extend": { "name": "modal_input_panel", "namespace": "popup_dialog" }, "children": [ "play_on_realm_popup_background", "gamepad_helpers", "play_on_realm_popup_content" ] }, "popup_dialog__play_on_realm/play_on_realm_popup_background": { "file": "ui/realms_common.json", "type": "image", "extend": { "name": "play_on_realm_popup_background", "namespace": "realms_common" } }, "popup_dialog__play_on_realm/gamepad_helpers": { "file": "ui/realms_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helpers_a_and_b", "namespace": "common" } }, "popup_dialog__play_on_realm/play_on_realm_popup_content": { "file": "ui/realms_common.json", "type": "panel", "extend": { "name": "play_on_realm_popup_content", "namespace": "realms_common" } }, "play_on_realm_popup_background": { "file": "ui/realms_common.json", "type": "image" }, "play_on_realm_popup_content": { "file": "ui/realms_common.json", "type": "panel", "children": [ "popup_dialog_bg", "play_on_realm_popup_dialog_header", "play_on_realm_popup_dialog_upper_body", "play_on_realm_popup_dialog_lower_body" ] }, "play_on_realm_popup_content/popup_dialog_bg": { "file": "ui/realms_common.json", "type": "image", "extend": { "name": "popup_dialog_bg", "namespace": "realms_common" } }, "play_on_realm_popup_content/play_on_realm_popup_dialog_header": { "file": "ui/realms_common.json", "type": "panel", "extend": { "name": "play_on_realm_popup_dialog_header", "namespace": "realms_common" } }, "play_on_realm_popup_content/play_on_realm_popup_dialog_upper_body": { "file": "ui/realms_common.json", "type": "panel", "extend": { "name": "play_on_realm_popup_dialog_upper_body", "namespace": "realms_common" } }, "play_on_realm_popup_content/play_on_realm_popup_dialog_lower_body": { "file": "ui/realms_common.json", "type": "panel", "extend": { "name": "play_on_realm_popup_dialog_lower_body", "namespace": "realms_common" } }, "play_on_realm_popup_dialog_header": { "file": "ui/realms_common.json", "type": "panel", "children": [ "play_on_realm_popup_dialog_header_text", "close_button" ] }, "play_on_realm_popup_dialog_header/play_on_realm_popup_dialog_header_text": { "file": "ui/realms_common.json", "type": "label", "extend": { "name": "play_on_realm_popup_dialog_header_text", "namespace": "realms_common" } }, "play_on_realm_popup_dialog_header/close_button": { "file": "ui/realms_common.json", "type": "button", "extend": { "name": "close_button", "namespace": "common" } }, "play_on_realm_popup_dialog_header_text": { "file": "ui/realms_common.json", "type": "label" }, "play_on_realm_popup_dialog_upper_body": { "file": "ui/realms_common.json", "type": "panel", "children": [ "play_on_realm_banner", "play_on_realm_panel", "background_panel" ] }, "play_on_realm_popup_dialog_upper_body/play_on_realm_banner": { "file": "ui/realms_common.json", "type": "image", "extend": { "name": "hollow_banner", "namespace": "realms_common" } }, "play_on_realm_popup_dialog_upper_body/play_on_realm_panel": { "file": "ui/realms_common.json", "type": "panel", "extend": { "name": "play_on_realm_panel", "namespace": "realms_common" } }, "play_on_realm_popup_dialog_upper_body/background_panel": { "file": "ui/realms_common.json", "type": "panel", "children": [ "black_background" ] }, "play_on_realm_popup_dialog_upper_body/background_panel/black_background": { "file": "ui/realms_common.json", "type": "image" }, "play_on_realm_panel": { "file": "ui/realms_common.json", "type": "panel", "children": [ "play_on_realm_content_panel" ] }, "play_on_realm_panel/play_on_realm_content_panel": { "file": "ui/realms_common.json", "type": "stack_panel", "children": [ "play_image_panel", "play_text_panel" ] }, "play_on_realm_panel/play_on_realm_content_panel/play_image_panel": { "file": "ui/realms_common.json", "type": "stack_panel", "children": [ "spacing_gap_image", "realms_image" ] }, "play_on_realm_panel/play_on_realm_content_panel/play_image_panel/spacing_gap_image": { "file": "ui/realms_common.json", "type": "panel" }, "play_on_realm_panel/play_on_realm_content_panel/play_image_panel/realms_image": { "file": "ui/realms_common.json", "type": "image" }, "play_on_realm_panel/play_on_realm_content_panel/play_text_panel": { "file": "ui/realms_common.json", "type": "stack_panel", "children": [ "spacing_gap_text_1", "play_on_realm_text_1", "spacing_gap_text_2", "play_on_realm_text_2" ] }, "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/spacing_gap_text_1": { "file": "ui/realms_common.json", "type": "panel" }, "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/play_on_realm_text_1": { "file": "ui/realms_common.json", "type": "label" }, "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/spacing_gap_text_2": { "file": "ui/realms_common.json", "type": "panel" }, "play_on_realm_panel/play_on_realm_content_panel/play_text_panel/play_on_realm_text_2": { "file": "ui/realms_common.json", "type": "label" }, "play_on_realm_popup_dialog_lower_body": { "file": "ui/realms_common.json", "type": "panel", "children": [ "button_panel" ] }, "play_on_realm_popup_dialog_lower_body/button_panel": { "file": "ui/realms_common.json", "type": "stack_panel", "children": [ "play_with_friends_button", "spacing_gap1", "play_solo_button", "spacing_gap2", "go_back_button" ] }, "play_on_realm_popup_dialog_lower_body/button_panel/play_with_friends_button": { "file": "ui/realms_common.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "play_on_realm_popup_dialog_lower_body/button_panel/spacing_gap1": { "file": "ui/realms_common.json", "type": "panel" }, "play_on_realm_popup_dialog_lower_body/button_panel/play_solo_button": { "file": "ui/realms_common.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "play_on_realm_popup_dialog_lower_body/button_panel/spacing_gap2": { "file": "ui/realms_common.json", "type": "panel" }, "play_on_realm_popup_dialog_lower_body/button_panel/go_back_button": { "file": "ui/realms_common.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } } }, "realms_create": { "title_label": { "file": "ui/realms_create.json", "type": "label" }, "label": { "file": "ui/realms_create.json", "type": "label" }, "enter_name_panel": { "file": "ui/realms_create.json", "type": "panel", "children": [ "name_label_0", "name_edit" ] }, "enter_name_panel/name_label_0": { "file": "ui/realms_create.json", "type": "label", "extend": { "name": "label", "namespace": "realms_create" } }, "enter_name_panel/name_edit": { "file": "ui/realms_create.json", "type": "edit_box", "extend": { "name": "text_edit_box", "namespace": "common" } }, "selected_option_checkbox": { "file": "ui/realms_create.json", "type": "image" }, "selected_option_checkbox_empty": { "file": "ui/realms_create.json", "type": "image", "extend": { "name": "selected_option_checkbox", "namespace": "realms_create" } }, "selected_option_checkbox_filled": { "file": "ui/realms_create.json", "type": "image", "extend": { "name": "selected_option_checkbox", "namespace": "realms_create" } }, "checkbox_panel": { "file": "ui/realms_create.json", "type": "panel", "children": [ "selected_option_checkbox_empty", "selected_option_checkbox_filled", "button_label" ] }, "checkbox_panel/selected_option_checkbox_empty": { "file": "ui/realms_create.json", "type": "image", "extend": { "name": "selected_option_checkbox_empty", "namespace": "realms_create" } }, "checkbox_panel/selected_option_checkbox_filled": { "file": "ui/realms_create.json", "type": "image", "extend": { "name": "selected_option_checkbox_filled", "namespace": "realms_create" } }, "checkbox_panel/button_label": { "file": "ui/realms_create.json", "type": "label" }, "realms_option_button": { "file": "ui/realms_create.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "choose_duration_panel": { "file": "ui/realms_create.json", "type": "panel", "children": [ "name_label", "choose_duration_stack_panel" ] }, "choose_duration_panel/name_label": { "file": "ui/realms_create.json", "type": "label", "extend": { "name": "label", "namespace": "realms_create" } }, "choose_duration_panel/choose_duration_stack_panel": { "file": "ui/realms_create.json", "type": "input_panel", "children": [ "short", "long" ] }, "choose_duration_panel/choose_duration_stack_panel/short": { "file": "ui/realms_create.json", "type": "button", "extend": { "name": "realms_option_button", "namespace": "realms_create" } }, "choose_duration_panel/choose_duration_stack_panel/long": { "file": "ui/realms_create.json", "type": "button", "extend": { "name": "realms_option_button", "namespace": "realms_create" } }, "choose_tier_panel": { "file": "ui/realms_create.json", "type": "panel", "children": [ "name_label", "choose_tier_stack_panel" ] }, "choose_tier_panel/name_label": { "file": "ui/realms_create.json", "type": "label", "extend": { "name": "label", "namespace": "realms_create" } }, "choose_tier_panel/choose_tier_stack_panel": { "file": "ui/realms_create.json", "type": "input_panel", "children": [ "player_count_2" ] }, "choose_tier_panel/choose_tier_stack_panel/player_count_2": { "file": "ui/realms_create.json", "type": "button", "extend": { "name": "realms_option_button", "namespace": "realms_create" } }, "view_terms_button": { "file": "ui/realms_create.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "privacy_policy_button": { "file": "ui/realms_create.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "terms_and_conditions_panel": { "file": "ui/realms_create.json", "type": "panel", "children": [ "name_label", "terms_string_panel" ] }, "terms_and_conditions_panel/name_label": { "file": "ui/realms_create.json", "type": "label", "extend": { "name": "label", "namespace": "realms_create" } }, "terms_and_conditions_panel/terms_string_panel": { "file": "ui/realms_create.json", "type": "panel", "children": [ "banner_fill", "buttons_stack_panel" ] }, "terms_and_conditions_panel/terms_string_panel/banner_fill": { "file": "ui/realms_create.json", "type": "image" }, "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": { "file": "ui/realms_create.json", "type": "stack_panel", "children": [ "agree_panel", "view_terms_button", "privacy_policy_button" ] }, "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel": { "file": "ui/realms_create.json", "type": "panel", "children": [ "checkbox_control" ] }, "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control": { "file": "ui/realms_create.json", "type": "toggle", "extend": { "name": "checkbox_with_highlight_and_label", "namespace": "settings_common" } }, "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": { "file": "ui/realms_create.json", "type": "button", "extend": { "name": "view_terms_button", "namespace": "realms_create" } }, "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": { "file": "ui/realms_create.json", "type": "button", "extend": { "name": "privacy_policy_button", "namespace": "realms_create" } }, "confirmation_panel": { "file": "ui/realms_create.json", "type": "panel", "children": [ "create_realms_button" ] }, "confirmation_panel/create_realms_button": { "file": "ui/realms_create.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "create_realms_stack_panel": { "file": "ui/realms_create.json", "type": "stack_panel", "children": [ "padding_0", "create_realms_text_panel" ] }, "create_realms_stack_panel/padding_0": { "file": "ui/realms_create.json", "type": "panel" }, "create_realms_stack_panel/create_realms_text_panel": { "file": "ui/realms_create.json", "type": "panel", "extend": { "name": "create_realms_text_panel", "namespace": "realms_create" } }, "create_realms_text_panel": { "file": "ui/realms_create.json", "type": "panel", "children": [ "create" ] }, "create_realms_text_panel/create": { "file": "ui/realms_create.json", "type": "label", "extend": { "name": "label", "namespace": "realms_create" } }, "stack_item": { "file": "ui/realms_create.json", "type": "panel" }, "scroll_stack_panel": { "file": "ui/realms_create.json", "type": "stack_panel", "children": [ "name", "padding_0", "duration", "tier", "toc", "padding_1", "realms_terms_info", "realms_switch_nso_info" ] }, "scroll_stack_panel/name": { "file": "ui/realms_create.json", "type": "panel", "extend": { "name": "stack_item", "namespace": "realms_create" }, "children": [ "enter_name_panel" ] }, "scroll_stack_panel/name/enter_name_panel": { "file": "ui/realms_create.json", "type": "panel", "extend": { "name": "enter_name_panel", "namespace": "realms_create" } }, "scroll_stack_panel/padding_0": { "file": "ui/realms_create.json", "type": "panel" }, "scroll_stack_panel/duration": { "file": "ui/realms_create.json", "type": "panel", "extend": { "name": "stack_item", "namespace": "realms_create" }, "children": [ "choose_duration_panel" ] }, "scroll_stack_panel/duration/choose_duration_panel": { "file": "ui/realms_create.json", "type": "panel", "extend": { "name": "choose_duration_panel", "namespace": "realms_create" } }, "scroll_stack_panel/tier": { "file": "ui/realms_create.json", "type": "panel", "extend": { "name": "stack_item", "namespace": "realms_create" }, "children": [ "choose_tier_panel" ] }, "scroll_stack_panel/tier/choose_tier_panel": { "file": "ui/realms_create.json", "type": "panel", "extend": { "name": "choose_tier_panel", "namespace": "realms_create" } }, "scroll_stack_panel/toc": { "file": "ui/realms_create.json", "type": "panel", "extend": { "name": "stack_item", "namespace": "realms_create" }, "children": [ "terms_and_conditions_panel" ] }, "scroll_stack_panel/toc/terms_and_conditions_panel": { "file": "ui/realms_create.json", "type": "panel", "extend": { "name": "terms_and_conditions_panel", "namespace": "realms_create" } }, "scroll_stack_panel/padding_1": { "file": "ui/realms_create.json", "type": "panel" }, "scroll_stack_panel/realms_terms_info": { "file": "ui/realms_create.json", "type": "image", "children": [ "label_panel" ] }, "scroll_stack_panel/realms_terms_info/label_panel": { "file": "ui/realms_create.json", "type": "stack_panel", "children": [ "padding_1", "text_description_wrapper", "text_description_wrapper_extra", "padding_2" ] }, "scroll_stack_panel/realms_terms_info/label_panel/padding_1": { "file": "ui/realms_create.json", "type": "panel" }, "scroll_stack_panel/realms_terms_info/label_panel/text_description_wrapper": { "file": "ui/realms_create.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "scroll_stack_panel/realms_terms_info/label_panel/text_description_wrapper_extra": { "file": "ui/realms_create.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "scroll_stack_panel/realms_terms_info/label_panel/padding_2": { "file": "ui/realms_create.json", "type": "panel" }, "scroll_stack_panel/realms_switch_nso_info": { "file": "ui/realms_create.json", "type": "panel", "extend": { "name": "option_info_label", "namespace": "settings_common" } }, "terms_section": { "file": "ui/realms_create.json", "type": "panel", "children": [ "terms_section_label" ] }, "terms_section/terms_section_label": { "file": "ui/realms_create.json", "type": "label" }, "terms_section_extra": { "file": "ui/realms_create.json", "type": "panel", "children": [ "terms_section_label" ] }, "terms_section_extra/terms_section_label": { "file": "ui/realms_create.json", "type": "label" }, "main_panel": { "file": "ui/realms_create.json", "type": "stack_panel", "children": [ "scrolling_panel", "padding_0", "confirmation_panel", "padding_1" ] }, "main_panel/scrolling_panel": { "file": "ui/realms_create.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "main_panel/padding_0": { "file": "ui/realms_create.json", "type": "panel" }, "main_panel/confirmation_panel": { "file": "ui/realms_create.json", "type": "panel", "extend": { "name": "confirmation_panel", "namespace": "realms_create" } }, "main_panel/padding_1": { "file": "ui/realms_create.json", "type": "panel" }, "content": { "file": "ui/realms_create.json", "type": "panel", "children": [ "main_panel" ] }, "content/main_panel": { "file": "ui/realms_create.json", "type": "stack_panel", "extend": { "name": "main_panel", "namespace": "realms_create" } }, "realms_create_screen": { "file": "ui/realms_create.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "realms_create_content_and_factory": { "file": "ui/realms_create.json", "type": "panel", "children": [ "realms_create_content", "popup_dialog_factory" ] }, "realms_create_content_and_factory/realms_create_content": { "file": "ui/realms_create.json", "type": "panel", "extend": { "name": "main_panel_no_buttons", "namespace": "common_dialogs" } }, "realms_create_content_and_factory/popup_dialog_factory": { "file": "ui/realms_create.json", "type": "factory" } }, "realms_pending_invitations": { "panel_text": { "file": "ui/realms_pending_invitations.json", "type": "label" }, "banner_panel_base": { "file": "ui/realms_pending_invitations.json", "type": "panel", "children": [ "background", "indent_panel" ] }, "banner_panel_base/background": { "file": "ui/realms_pending_invitations.json", "type": "unknown" }, "banner_panel_base/indent_panel": { "file": "ui/realms_pending_invitations.json", "type": "panel", "children": [ "content" ] }, "banner_panel_base/indent_panel/content": { "file": "ui/realms_pending_invitations.json", "type": "unknown" }, "banner_panel": { "file": "ui/realms_pending_invitations.json", "type": "panel", "extend": { "name": "banner_panel_base", "namespace": "realms_pending_invitations" } }, "banner_panel_hover": { "file": "ui/realms_pending_invitations.json", "type": "panel", "extend": { "name": "banner_panel_base", "namespace": "realms_pending_invitations" } }, "realm_invite_button": { "file": "ui/realms_pending_invitations.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "realm_name_label": { "file": "ui/realms_pending_invitations.json", "type": "label", "extend": { "name": "panel_text", "namespace": "realms_pending_invitations" } }, "realm_inviter_label": { "file": "ui/realms_pending_invitations.json", "type": "label", "extend": { "name": "panel_text", "namespace": "realms_pending_invitations" } }, "tts_gamertag_item_info_wrapper": { "file": "ui/realms_pending_invitations.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "gamertag_item_info": { "file": "ui/realms_pending_invitations.json", "type": "panel", "children": [ "rnl", "rol" ] }, "gamertag_item_info/rnl": { "file": "ui/realms_pending_invitations.json", "type": "label", "extend": { "name": "realm_name_label", "namespace": "realms_pending_invitations" } }, "gamertag_item_info/rol": { "file": "ui/realms_pending_invitations.json", "type": "label", "extend": { "name": "realm_inviter_label", "namespace": "realms_pending_invitations" } }, "accept_button_content": { "file": "ui/realms_pending_invitations.json", "type": "image" }, "decline_button_content": { "file": "ui/realms_pending_invitations.json", "type": "image" }, "realm_accept_button": { "file": "ui/realms_pending_invitations.json", "type": "button", "extend": { "name": "realm_invite_button", "namespace": "realms_pending_invitations" } }, "realm_decline_button": { "file": "ui/realms_pending_invitations.json", "type": "button", "extend": { "name": "realm_invite_button", "namespace": "realms_pending_invitations" } }, "realm_accepted_panel": { "file": "ui/realms_pending_invitations.json", "type": "label", "extend": { "name": "panel_text", "namespace": "realms_pending_invitations" } }, "gamertag_item_content": { "file": "ui/realms_pending_invitations.json", "type": "panel", "children": [ "lb", "a", "d", "ap" ] }, "gamertag_item_content/lb": { "file": "ui/realms_pending_invitations.json", "type": "panel", "extend": { "name": "tts_gamertag_item_info_wrapper", "namespace": "realms_pending_invitations" } }, "gamertag_item_content/a": { "file": "ui/realms_pending_invitations.json", "type": "button", "extend": { "name": "realm_accept_button", "namespace": "realms_pending_invitations" } }, "gamertag_item_content/d": { "file": "ui/realms_pending_invitations.json", "type": "button", "extend": { "name": "realm_decline_button", "namespace": "realms_pending_invitations" } }, "gamertag_item_content/ap": { "file": "ui/realms_pending_invitations.json", "type": "label", "extend": { "name": "realm_accepted_panel", "namespace": "realms_pending_invitations" } }, "gamertag_item": { "file": "ui/realms_pending_invitations.json", "type": "panel", "extend": { "name": "banner_panel", "namespace": "realms_pending_invitations" } }, "gamertag_item_grid": { "file": "ui/realms_pending_invitations.json", "type": "grid" }, "show_friends_only_toggle_state_content": { "file": "ui/realms_pending_invitations.json", "type": "stack_panel", "children": [ "checkbox_holding_panel", "hide_invites_text_panel" ] }, "show_friends_only_toggle_state_content/checkbox_holding_panel": { "file": "ui/realms_pending_invitations.json", "type": "panel", "children": [ "hide_invites" ] }, "show_friends_only_toggle_state_content/checkbox_holding_panel/hide_invites": { "file": "ui/realms_pending_invitations.json", "type": "unknown" }, "show_friends_only_toggle_state_content/hide_invites_text_panel": { "file": "ui/realms_pending_invitations.json", "type": "panel", "children": [ "hide_invites_text" ] }, "show_friends_only_toggle_state_content/hide_invites_text_panel/hide_invites_text": { "file": "ui/realms_pending_invitations.json", "type": "label", "extend": { "name": "panel_text", "namespace": "realms_pending_invitations" } }, "show_friends_only_toggle_on_state_content": { "file": "ui/realms_pending_invitations.json", "type": "stack_panel", "extend": { "name": "show_friends_only_toggle_state_content", "namespace": "realms_pending_invitations" } }, "show_friends_only_toggle_on_state": { "file": "ui/realms_pending_invitations.json", "type": "panel", "extend": { "name": "banner_panel", "namespace": "realms_pending_invitations" } }, "show_friends_only_toggle_off_state_content": { "file": "ui/realms_pending_invitations.json", "type": "stack_panel", "extend": { "name": "show_friends_only_toggle_state_content", "namespace": "realms_pending_invitations" } }, "show_friends_only_toggle_off_state": { "file": "ui/realms_pending_invitations.json", "type": "panel", "extend": { "name": "banner_panel", "namespace": "realms_pending_invitations" } }, "show_friends_only_toggle_on_hover_state_content": { "file": "ui/realms_pending_invitations.json", "type": "stack_panel", "extend": { "name": "show_friends_only_toggle_state_content", "namespace": "realms_pending_invitations" } }, "show_friends_only_toggle_on_hover_state": { "file": "ui/realms_pending_invitations.json", "type": "panel", "extend": { "name": "banner_panel_hover", "namespace": "realms_pending_invitations" } }, "show_friends_only_toggle_off_hover_state_content": { "file": "ui/realms_pending_invitations.json", "type": "stack_panel", "extend": { "name": "show_friends_only_toggle_state_content", "namespace": "realms_pending_invitations" } }, "show_friends_only_toggle_off_hover_state": { "file": "ui/realms_pending_invitations.json", "type": "panel", "extend": { "name": "banner_panel_hover", "namespace": "realms_pending_invitations" } }, "show_friends_only_toggle_on_locked_state_content": { "file": "ui/realms_pending_invitations.json", "type": "stack_panel", "extend": { "name": "show_friends_only_toggle_state_content", "namespace": "realms_pending_invitations" } }, "show_friends_only_toggle_on_locked_state": { "file": "ui/realms_pending_invitations.json", "type": "panel", "extend": { "name": "banner_panel", "namespace": "realms_pending_invitations" } }, "show_friends_only_toggle_off_locked_state_content": { "file": "ui/realms_pending_invitations.json", "type": "stack_panel", "extend": { "name": "show_friends_only_toggle_state_content", "namespace": "realms_pending_invitations" } }, "show_friends_only_toggle_off_locked_state": { "file": "ui/realms_pending_invitations.json", "type": "panel", "extend": { "name": "banner_panel", "namespace": "realms_pending_invitations" } }, "show_friends_only_toggle": { "file": "ui/realms_pending_invitations.json", "type": "toggle", "extend": { "name": "toggle", "namespace": "common" } }, "gamepad_helpers": { "file": "ui/realms_pending_invitations.json", "type": "panel", "children": [ "a", "b" ] }, "gamepad_helpers/a": { "file": "ui/realms_pending_invitations.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_a", "namespace": "common" } }, "gamepad_helpers/b": { "file": "ui/realms_pending_invitations.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_b", "namespace": "common" } }, "no_invites_label_wrapper": { "file": "ui/realms_pending_invitations.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "no_invites_label": { "file": "ui/realms_pending_invitations.json", "type": "panel", "children": [ "label" ] }, "no_invites_label/label": { "file": "ui/realms_pending_invitations.json", "type": "label", "extend": { "name": "panel_text", "namespace": "realms_pending_invitations" } }, "realms_pending_invitation_list": { "file": "ui/realms_pending_invitations.json", "type": "stack_panel", "children": [ "upper_padding", "sfop", "gig", "lower_padding", "nil" ] }, "realms_pending_invitation_list/upper_padding": { "file": "ui/realms_pending_invitations.json", "type": "panel" }, "realms_pending_invitation_list/sfop": { "file": "ui/realms_pending_invitations.json", "type": "toggle", "extend": { "name": "show_friends_only_toggle", "namespace": "realms_pending_invitations" } }, "realms_pending_invitation_list/gig": { "file": "ui/realms_pending_invitations.json", "type": "grid", "extend": { "name": "gamertag_item_grid", "namespace": "realms_pending_invitations" } }, "realms_pending_invitation_list/lower_padding": { "file": "ui/realms_pending_invitations.json", "type": "panel" }, "realms_pending_invitation_list/nil": { "file": "ui/realms_pending_invitations.json", "type": "panel", "extend": { "name": "no_invites_label_wrapper", "namespace": "realms_pending_invitations" } }, "content_panel": { "file": "ui/realms_pending_invitations.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "realms_pending_invitations_screen": { "file": "ui/realms_pending_invitations.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "realms_invitation_screen_content": { "file": "ui/realms_pending_invitations.json", "type": "panel", "children": [ "root_panel" ] }, "realms_invitation_screen_content/root_panel": { "file": "ui/realms_pending_invitations.json", "type": "input_panel", "children": [ "main_panel", "sgh" ] }, "realms_invitation_screen_content/root_panel/main_panel": { "file": "ui/realms_pending_invitations.json", "type": "panel", "extend": { "name": "main_panel_no_buttons", "namespace": "common_dialogs" } }, "realms_invitation_screen_content/root_panel/sgh": { "file": "ui/realms_pending_invitations.json", "type": "panel", "extend": { "name": "gamepad_helpers", "namespace": "realms_pending_invitations" } } }, "realms_slots": { "vertical_padding": { "file": "ui/realms_slots_screen.json", "type": "panel" }, "horizontal_padding": { "file": "ui/realms_slots_screen.json", "type": "panel" }, "horizontal_padding_sibling_height": { "file": "ui/realms_slots_screen.json", "type": "panel" }, "realms_background": { "file": "ui/realms_slots_screen.json", "type": "panel", "children": [ "gradient", "particle_1", "particle_2" ] }, "realms_background/gradient": { "file": "ui/realms_slots_screen.json", "type": "image" }, "realms_background/particle_1": { "file": "ui/realms_slots_screen.json", "type": "image" }, "realms_background/particle_2": { "file": "ui/realms_slots_screen.json", "type": "image" }, "plus": { "file": "ui/realms_slots_screen.json", "type": "image" }, "check": { "file": "ui/realms_slots_screen.json", "type": "image" }, "world_thumbnail": { "file": "ui/realms_slots_screen.json", "type": "image" }, "realms_stories_icon_glyph": { "file": "ui/realms_slots_screen.json", "type": "image", "children": [ "realms_stories_icon" ] }, "realms_stories_icon_glyph/realms_stories_icon": { "file": "ui/realms_slots_screen.json", "type": "image", "extend": { "name": "realms_stories_icon", "namespace": "play" } }, "play_button": { "file": "ui/realms_slots_screen.json", "type": "button", "extend": { "name": "dark_text_button", "namespace": "common_buttons" } }, "edit_realm_button": { "file": "ui/realms_slots_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "realms_feed_button": { "file": "ui/realms_slots_screen.json", "type": "button", "extend": { "name": "light_glyph_button", "namespace": "common_buttons" } }, "unread_story_count_text": { "file": "ui/realms_slots_screen.json", "type": "label" }, "unread_story_count_text_background": { "file": "ui/realms_slots_screen.json", "type": "image" }, "unread_story_count_panel": { "file": "ui/realms_slots_screen.json", "type": "panel", "children": [ "text" ] }, "unread_story_count_panel/text": { "file": "ui/realms_slots_screen.json", "type": "label", "extend": { "name": "unread_story_count_text", "namespace": "realms_slots" }, "children": [ "background" ] }, "unread_story_count_panel/text/background": { "file": "ui/realms_slots_screen.json", "type": "image", "extend": { "name": "unread_story_count_text_background", "namespace": "realms_slots" } }, "edit_world_button_panel": { "file": "ui/realms_slots_screen.json", "type": "stack_panel", "children": [ "edit_world_button", "padding", "activate_world_button" ] }, "edit_world_button_panel/edit_world_button": { "file": "ui/realms_slots_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "edit_world_button_panel/padding": { "file": "ui/realms_slots_screen.json", "type": "panel" }, "edit_world_button_panel/activate_world_button": { "file": "ui/realms_slots_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "world_slot_button": { "file": "ui/realms_slots_screen.json", "type": "button", "extend": { "name": "dark_content_button", "namespace": "common_buttons" } }, "world_slot_button_content": { "file": "ui/realms_slots_screen.json", "type": "stack_panel", "children": [ "world_slot_top", "world_slot_bottom" ] }, "world_slot_button_content/world_slot_top": { "file": "ui/realms_slots_screen.json", "type": "panel", "children": [ "background", "add_world_image_panel", "world_thumbnail_image_panel", "edit_world_button_panel", "foreground", "check_image" ] }, "world_slot_button_content/world_slot_top/background": { "file": "ui/realms_slots_screen.json", "type": "image" }, "world_slot_button_content/world_slot_top/add_world_image_panel": { "file": "ui/realms_slots_screen.json", "type": "panel", "children": [ "plus_image" ] }, "world_slot_button_content/world_slot_top/add_world_image_panel/plus_image": { "file": "ui/realms_slots_screen.json", "type": "image", "extend": { "name": "plus", "namespace": "realms_slots" } }, "world_slot_button_content/world_slot_top/world_thumbnail_image_panel": { "file": "ui/realms_slots_screen.json", "type": "panel", "children": [ "world_thumbnail" ] }, "world_slot_button_content/world_slot_top/world_thumbnail_image_panel/world_thumbnail": { "file": "ui/realms_slots_screen.json", "type": "image", "extend": { "name": "world_thumbnail", "namespace": "realms_slots" } }, "world_slot_button_content/world_slot_top/edit_world_button_panel": { "file": "ui/realms_slots_screen.json", "type": "stack_panel", "extend": { "name": "edit_world_button_panel", "namespace": "realms_slots" } }, "world_slot_button_content/world_slot_top/foreground": { "file": "ui/realms_slots_screen.json", "type": "image" }, "world_slot_button_content/world_slot_top/check_image": { "file": "ui/realms_slots_screen.json", "type": "image", "extend": { "name": "check", "namespace": "realms_slots" } }, "world_slot_button_content/world_slot_bottom": { "file": "ui/realms_slots_screen.json", "type": "panel", "children": [ "divider_line_black", "divider_line_white", "add_world_text_panel", "world_info_panel" ] }, "world_slot_button_content/world_slot_bottom/divider_line_black": { "file": "ui/realms_slots_screen.json", "type": "image" }, "world_slot_button_content/world_slot_bottom/divider_line_white": { "file": "ui/realms_slots_screen.json", "type": "image" }, "world_slot_button_content/world_slot_bottom/add_world_text_panel": { "file": "ui/realms_slots_screen.json", "type": "panel", "children": [ "background_grey", "background_green", "add_world_text" ] }, "world_slot_button_content/world_slot_bottom/add_world_text_panel/background_grey": { "file": "ui/realms_slots_screen.json", "type": "image" }, "world_slot_button_content/world_slot_bottom/add_world_text_panel/background_green": { "file": "ui/realms_slots_screen.json", "type": "image" }, "world_slot_button_content/world_slot_bottom/add_world_text_panel/add_world_text": { "file": "ui/realms_slots_screen.json", "type": "label" }, "world_slot_button_content/world_slot_bottom/world_info_panel": { "file": "ui/realms_slots_screen.json", "type": "panel", "children": [ "background", "background_green", "world_info_stack_panel" ] }, "world_slot_button_content/world_slot_bottom/world_info_panel/background": { "file": "ui/realms_slots_screen.json", "type": "image" }, "world_slot_button_content/world_slot_bottom/world_info_panel/background_green": { "file": "ui/realms_slots_screen.json", "type": "image" }, "world_slot_button_content/world_slot_bottom/world_info_panel/world_info_stack_panel": { "file": "ui/realms_slots_screen.json", "type": "stack_panel", "extend": { "name": "world_info_stack_panel", "namespace": "realms_slots" } }, "world_info_stack_panel": { "file": "ui/realms_slots_screen.json", "type": "stack_panel", "children": [ "world_name_panel", "world_type_panel", "bottom_padding" ] }, "world_info_stack_panel/world_name_panel": { "file": "ui/realms_slots_screen.json", "type": "panel", "children": [ "world_name" ] }, "world_info_stack_panel/world_name_panel/world_name": { "file": "ui/realms_slots_screen.json", "type": "label" }, "world_info_stack_panel/world_type_panel": { "file": "ui/realms_slots_screen.json", "type": "panel", "children": [ "world_type" ] }, "world_info_stack_panel/world_type_panel/world_type": { "file": "ui/realms_slots_screen.json", "type": "label" }, "world_info_stack_panel/bottom_padding": { "file": "ui/realms_slots_screen.json", "type": "panel" }, "main_stack_panel": { "file": "ui/realms_slots_screen.json", "type": "stack_panel", "children": [ "padding_0", "button_panel", "padding_1", "text_panel_0", "padding_2", "worlds_panel", "padding_3", "text_panel_1" ] }, "main_stack_panel/padding_0": { "file": "ui/realms_slots_screen.json", "type": "panel", "extend": { "name": "vertical_padding", "namespace": "realms_slots" } }, "main_stack_panel/button_panel": { "file": "ui/realms_slots_screen.json", "type": "stack_panel", "children": [ "play_button", "left_padding", "edit_realm_button", "right_padding", "feed_panel_with_unread_count" ] }, "main_stack_panel/button_panel/play_button": { "file": "ui/realms_slots_screen.json", "type": "button", "extend": { "name": "play_button", "namespace": "realms_slots" } }, "main_stack_panel/button_panel/left_padding": { "file": "ui/realms_slots_screen.json", "type": "panel", "extend": { "name": "horizontal_padding", "namespace": "realms_slots" } }, "main_stack_panel/button_panel/edit_realm_button": { "file": "ui/realms_slots_screen.json", "type": "button", "extend": { "name": "edit_realm_button", "namespace": "realms_slots" } }, "main_stack_panel/button_panel/right_padding": { "file": "ui/realms_slots_screen.json", "type": "panel", "extend": { "name": "horizontal_padding", "namespace": "realms_slots" } }, "main_stack_panel/button_panel/feed_panel_with_unread_count": { "file": "ui/realms_slots_screen.json", "type": "panel", "children": [ "feed_panel", "unread_story_count" ] }, "main_stack_panel/button_panel/feed_panel_with_unread_count/feed_panel": { "file": "ui/realms_slots_screen.json", "type": "panel", "children": [ "realms_feed_button" ] }, "main_stack_panel/button_panel/feed_panel_with_unread_count/feed_panel/realms_feed_button": { "file": "ui/realms_slots_screen.json", "type": "button", "extend": { "name": "realms_feed_button", "namespace": "realms_slots" } }, "main_stack_panel/button_panel/feed_panel_with_unread_count/unread_story_count": { "file": "ui/realms_slots_screen.json", "type": "panel", "extend": { "name": "unread_story_count_panel", "namespace": "realms_slots" } }, "main_stack_panel/padding_1": { "file": "ui/realms_slots_screen.json", "type": "panel", "extend": { "name": "vertical_padding", "namespace": "realms_slots" } }, "main_stack_panel/text_panel_0": { "file": "ui/realms_slots_screen.json", "type": "panel", "children": [ "text" ] }, "main_stack_panel/text_panel_0/text": { "file": "ui/realms_slots_screen.json", "type": "label" }, "main_stack_panel/padding_2": { "file": "ui/realms_slots_screen.json", "type": "panel", "extend": { "name": "vertical_padding", "namespace": "realms_slots" } }, "main_stack_panel/worlds_panel": { "file": "ui/realms_slots_screen.json", "type": "stack_panel", "children": [ "world_slot_1", "padding_0", "world_slot_2", "padding_1", "world_slot_3" ] }, "main_stack_panel/worlds_panel/world_slot_1": { "file": "ui/realms_slots_screen.json", "type": "button", "extend": { "name": "world_slot_button", "namespace": "realms_slots" } }, "main_stack_panel/worlds_panel/padding_0": { "file": "ui/realms_slots_screen.json", "type": "panel", "extend": { "name": "horizontal_padding_sibling_height", "namespace": "realms_slots" } }, "main_stack_panel/worlds_panel/world_slot_2": { "file": "ui/realms_slots_screen.json", "type": "button", "extend": { "name": "world_slot_button", "namespace": "realms_slots" } }, "main_stack_panel/worlds_panel/padding_1": { "file": "ui/realms_slots_screen.json", "type": "panel", "extend": { "name": "horizontal_padding_sibling_height", "namespace": "realms_slots" } }, "main_stack_panel/worlds_panel/world_slot_3": { "file": "ui/realms_slots_screen.json", "type": "button", "extend": { "name": "world_slot_button", "namespace": "realms_slots" } }, "main_stack_panel/padding_3": { "file": "ui/realms_slots_screen.json", "type": "panel", "extend": { "name": "vertical_padding", "namespace": "realms_slots" } }, "main_stack_panel/text_panel_1": { "file": "ui/realms_slots_screen.json", "type": "panel", "children": [ "text" ] }, "main_stack_panel/text_panel_1/text": { "file": "ui/realms_slots_screen.json", "type": "label" }, "realms_slots_screen": { "file": "ui/realms_slots_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "realms_slots_screen_content": { "file": "ui/realms_slots_screen.json", "type": "panel", "children": [ "background" ] }, "realms_slots_screen_content/background": { "file": "ui/realms_slots_screen.json", "type": "stack_panel", "extend": { "name": "fullscreen_header", "namespace": "common" } }, "realms_slots_screen_content_panel": { "file": "ui/realms_slots_screen.json", "type": "panel", "children": [ "main_scroll_panel" ] }, "realms_slots_screen_content_panel/main_scroll_panel": { "file": "ui/realms_slots_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } } }, "realms_settings": { "settings_screen": { "file": "ui/realms_settings_screen.json", "type": "screen", "extend": { "name": "screen_base", "namespace": "settings_common" } }, "generic_section": { "file": "ui/realms_settings_screen.json", "type": "stack_panel" }, "generic_section_wrapper": { "file": "ui/realms_settings_screen.json", "type": "panel", "children": [ "generic_section" ] }, "generic_section_wrapper/generic_section": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "extend": { "name": "generic_section", "namespace": "realms_settings" } }, "checkbox_image": { "file": "ui/realms_settings_screen.json", "type": "image" }, "checkbox_unchecked_state": { "file": "ui/realms_settings_screen.json", "type": "image", "extend": { "name": "checkbox_image", "namespace": "realms_settings" } }, "checkbox_checked_state": { "file": "ui/realms_settings_screen.json", "type": "image", "extend": { "name": "checkbox_image", "namespace": "realms_settings" } }, "checkbox_unchecked_hover_state": { "file": "ui/realms_settings_screen.json", "type": "image", "extend": { "name": "checkbox_image", "namespace": "realms_settings" } }, "checkbox_checked_hover_state": { "file": "ui/realms_settings_screen.json", "type": "image", "extend": { "name": "checkbox_image", "namespace": "realms_settings" } }, "checkbox_unchecked_locked_state": { "file": "ui/realms_settings_screen.json", "type": "image", "extend": { "name": "checkbox_image", "namespace": "realms_settings" } }, "checkbox_checked_locked_state": { "file": "ui/realms_settings_screen.json", "type": "image", "extend": { "name": "checkbox_image", "namespace": "realms_settings" } }, "player_count_label": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "option_info_label", "namespace": "settings_common" } }, "realm_duration_label": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "option_info_label", "namespace": "settings_common" } }, "realm_subscription_origin_label": { "file": "ui/realms_settings_screen.json", "type": "image", "extend": { "name": "option_info_label_with_bulb", "namespace": "settings_common" } }, "realm_consumable_to_subscription_info_label": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "option_info_label", "namespace": "settings_common" } }, "manage_subscriptions_button": { "file": "ui/realms_settings_screen.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "delete_realm_button": { "file": "ui/realms_settings_screen.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "open_realm_button": { "file": "ui/realms_settings_screen.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "close_realm_button": { "file": "ui/realms_settings_screen.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "subscriptions_section": { "file": "ui/realms_settings_screen.json", "type": "panel", "children": [ "loading_view", "loading_failed_view", "loaded_view" ] }, "subscriptions_section/loading_view": { "file": "ui/realms_settings_screen.json", "type": "label" }, "subscriptions_section/loading_failed_view": { "file": "ui/realms_settings_screen.json", "type": "label" }, "subscriptions_section/loaded_view": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "player_count_label", "realm_duration_label", "possible_store_mismatch", "realm_subscription_origin_label", "realm_consumable_to_subscription_info_label", "_0", "delete_realm_button", "open_realm_button", "close_realm_button", "_1", "manage_subscriptions_button" ] }, "subscriptions_section/loaded_view/player_count_label": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "player_count_label", "namespace": "realms_settings" } }, "subscriptions_section/loaded_view/realm_duration_label": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "realm_duration_label", "namespace": "realms_settings" } }, "subscriptions_section/loaded_view/possible_store_mismatch": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "possible_store_mismatch", "namespace": "general_section" } }, "subscriptions_section/loaded_view/realm_subscription_origin_label": { "file": "ui/realms_settings_screen.json", "type": "image", "extend": { "name": "realm_subscription_origin_label", "namespace": "realms_settings" } }, "subscriptions_section/loaded_view/realm_consumable_to_subscription_info_label": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "realm_consumable_to_subscription_info_label", "namespace": "realms_settings" } }, "subscriptions_section/loaded_view/_0": { "file": "ui/realms_settings_screen.json", "type": "panel" }, "subscriptions_section/loaded_view/delete_realm_button": { "file": "ui/realms_settings_screen.json", "type": "button", "extend": { "name": "delete_realm_button", "namespace": "realms_settings" } }, "subscriptions_section/loaded_view/open_realm_button": { "file": "ui/realms_settings_screen.json", "type": "button", "extend": { "name": "open_realm_button", "namespace": "realms_settings" } }, "subscriptions_section/loaded_view/close_realm_button": { "file": "ui/realms_settings_screen.json", "type": "button", "extend": { "name": "close_realm_button", "namespace": "realms_settings" } }, "subscriptions_section/loaded_view/_1": { "file": "ui/realms_settings_screen.json", "type": "panel" }, "subscriptions_section/loaded_view/manage_subscriptions_button": { "file": "ui/realms_settings_screen.json", "type": "button", "extend": { "name": "manage_subscriptions_button", "namespace": "realms_settings" } }, "invite_link_item_content": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "invite_link_item_name_and_expiry_text", "invite_link_item_state_text", "spacing_gap" ] }, "invite_link_item_content/invite_link_item_name_and_expiry_text": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "name_text", "spacing_gap", "expiry_text" ] }, "invite_link_item_content/invite_link_item_name_and_expiry_text/name_text": { "file": "ui/realms_settings_screen.json", "type": "label", "extend": { "name": "label_text", "namespace": "realms_settings" } }, "invite_link_item_content/invite_link_item_name_and_expiry_text/spacing_gap": { "file": "ui/realms_settings_screen.json", "type": "panel" }, "invite_link_item_content/invite_link_item_name_and_expiry_text/expiry_text": { "file": "ui/realms_settings_screen.json", "type": "label", "extend": { "name": "label_text", "namespace": "realms_settings" } }, "invite_link_item_content/invite_link_item_state_text": { "file": "ui/realms_settings_screen.json", "type": "panel", "children": [ "state_text" ] }, "invite_link_item_content/invite_link_item_state_text/state_text": { "file": "ui/realms_settings_screen.json", "type": "label", "extend": { "name": "label_text", "namespace": "realms_settings" } }, "invite_link_item_content/spacing_gap": { "file": "ui/realms_settings_screen.json", "type": "panel" }, "invite_link_item_template": { "file": "ui/realms_settings_screen.json", "type": "panel", "children": [ "invite_link_item_button" ] }, "invite_link_item_template/invite_link_item_button": { "file": "ui/realms_settings_screen.json", "type": "button", "extend": { "name": "dark_content_button", "namespace": "common_buttons" } }, "invite_links_section": { "file": "ui/realms_settings_screen.json", "type": "panel", "children": [ "loading_view", "loading_failed_view", "loaded_view" ] }, "invite_links_section/loading_view": { "file": "ui/realms_settings_screen.json", "type": "label" }, "invite_links_section/loading_failed_view": { "file": "ui/realms_settings_screen.json", "type": "label" }, "invite_links_section/loaded_view": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "spacing_gap_0", "invite_links_info", "invite_links_grid", "spacing_gap_1", "add_invite_link_button" ] }, "invite_links_section/loaded_view/spacing_gap_0": { "file": "ui/realms_settings_screen.json", "type": "panel" }, "invite_links_section/loaded_view/invite_links_info": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "option_info_label", "namespace": "settings_common" } }, "invite_links_section/loaded_view/invite_links_grid": { "file": "ui/realms_settings_screen.json", "type": "stack_panel" }, "invite_links_section/loaded_view/spacing_gap_1": { "file": "ui/realms_settings_screen.json", "type": "panel" }, "invite_links_section/loaded_view/add_invite_link_button": { "file": "ui/realms_settings_screen.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "advanced_section": { "file": "ui/realms_settings_screen.json", "type": "panel", "children": [ "loading_view", "loading_failed_view", "loaded_view" ] }, "advanced_section/loading_view": { "file": "ui/realms_settings_screen.json", "type": "label" }, "advanced_section/loading_failed_view": { "file": "ui/realms_settings_screen.json", "type": "label" }, "advanced_section/loaded_view": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "spacing_gap_0", "server_preference", "set_region_content", "changes_not_applied_panel", "spacing_gap_1", "region_help_button" ] }, "advanced_section/loaded_view/spacing_gap_0": { "file": "ui/realms_settings_screen.json", "type": "panel" }, "advanced_section/loaded_view/server_preference": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "option_icon_label", "namespace": "settings_common" } }, "advanced_section/loaded_view/set_region_content": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "set_region_dropdown", "namespace": "realms_settings" } }, "advanced_section/loaded_view/changes_not_applied_panel": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "changes_not_applied_label" ] }, "advanced_section/loaded_view/changes_not_applied_panel/changes_not_applied_label": { "file": "ui/realms_settings_screen.json", "type": "label" }, "advanced_section/loaded_view/spacing_gap_1": { "file": "ui/realms_settings_screen.json", "type": "panel" }, "advanced_section/loaded_view/region_help_button": { "file": "ui/realms_settings_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "set_region_dropdown": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "region_dropdown_content": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "region_dropdown_radio": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "radio_with_label_and_icon", "namespace": "settings_common" } }, "region_help_button_content": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "external_link_icon", "spacing_gap_1", "help_text" ] }, "region_help_button_content/external_link_icon": { "file": "ui/realms_settings_screen.json", "type": "image" }, "region_help_button_content/spacing_gap_1": { "file": "ui/realms_settings_screen.json", "type": "panel" }, "region_help_button_content/help_text": { "file": "ui/realms_settings_screen.json", "type": "label", "extend": { "name": "label_text", "namespace": "realms_settings" } }, "tts_focus_border": { "file": "ui/realms_settings_screen.json", "type": "button", "extend": { "name": "non_interact_focus_border_button", "namespace": "common" } }, "saves_section": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "padding_saves_section_top", "loaded_view", "loading_indicator", "loading_failed_panel" ] }, "saves_section/padding_saves_section_top": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "saves_section/loaded_view": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "storage_bar_header_panel", "padding3", "save_active_world_button", "padding4", "active_world_info", "padding5", "storage_warning", "padding6", "save_list_container", "padding_loaded_view_bottom", "restore_info", "saves_help_panel" ] }, "saves_section/loaded_view/storage_bar_header_panel": { "file": "ui/realms_settings_screen.json", "type": "panel", "children": [ "storage_bar_with_header", "focus_border" ] }, "saves_section/loaded_view/storage_bar_header_panel/storage_bar_with_header": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "extend": { "name": "storage_bar_panel_with_header", "namespace": "realms_settings" } }, "saves_section/loaded_view/storage_bar_header_panel/focus_border": { "file": "ui/realms_settings_screen.json", "type": "button", "extend": { "name": "tts_focus_border", "namespace": "realms_settings" } }, "saves_section/loaded_view/padding3": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "saves_section/loaded_view/save_active_world_button": { "file": "ui/realms_settings_screen.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "saves_section/loaded_view/padding4": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "saves_section/loaded_view/active_world_info": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "active_world_info_panel", "namespace": "realms_settings" } }, "saves_section/loaded_view/padding5": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "saves_section/loaded_view/storage_warning": { "file": "ui/realms_settings_screen.json", "type": "panel", "children": [ "warning_text_panel", "focus_border" ] }, "saves_section/loaded_view/storage_warning/warning_text_panel": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "extend": { "name": "warning_text_panel", "namespace": "realms_settings" } }, "saves_section/loaded_view/storage_warning/focus_border": { "file": "ui/realms_settings_screen.json", "type": "button", "extend": { "name": "tts_focus_border", "namespace": "realms_settings" } }, "saves_section/loaded_view/padding6": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "saves_section/loaded_view/save_list_container": { "file": "ui/realms_settings_screen.json", "type": "panel", "children": [ "tab_buttons", "tab_content_panel" ] }, "saves_section/loaded_view/save_list_container/tab_buttons": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "extend": { "name": "button_tabs_container", "namespace": "realms_settings" } }, "saves_section/loaded_view/save_list_container/tab_content_panel": { "file": "ui/realms_settings_screen.json", "type": "image", "extend": { "name": "tab_content_panel", "namespace": "realms_settings" } }, "saves_section/loaded_view/padding_loaded_view_bottom": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "saves_section/loaded_view/restore_info": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "option_info_label", "namespace": "settings_common" } }, "saves_section/loaded_view/saves_help_panel": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "extend": { "name": "saves_help_panel", "namespace": "realms_settings" } }, "saves_section/loading_indicator": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "restore_info", "loading_text_panel", "loading_bars" ] }, "saves_section/loading_indicator/restore_info": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "option_info_label", "namespace": "settings_common" } }, "saves_section/loading_indicator/loading_text_panel": { "file": "ui/realms_settings_screen.json", "type": "panel", "children": [ "loading_text", "loading_text_padding" ] }, "saves_section/loading_indicator/loading_text_panel/loading_text": { "file": "ui/realms_settings_screen.json", "type": "label" }, "saves_section/loading_indicator/loading_text_panel/loading_text_padding": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "saves_section/loading_indicator/loading_bars": { "file": "ui/realms_settings_screen.json", "type": "panel", "children": [ "progress_loading_bars" ] }, "saves_section/loading_indicator/loading_bars/progress_loading_bars": { "file": "ui/realms_settings_screen.json", "type": "image", "extend": { "name": "progress_loading_bars", "namespace": "feed_common" } }, "saves_section/loading_failed_panel": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "restore_info", "saves_help_panel", "loading_failed_message" ] }, "saves_section/loading_failed_panel/restore_info": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "option_info_label", "namespace": "settings_common" } }, "saves_section/loading_failed_panel/saves_help_panel": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "extend": { "name": "saves_help_panel", "namespace": "realms_settings" } }, "saves_section/loading_failed_panel/loading_failed_message": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "option_info_label", "namespace": "settings_common" } }, "saves_help_panel": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "padding_help_button_top", "saves_help_button", "padding_help_button_bottom" ] }, "saves_help_panel/padding_help_button_top": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "saves_help_panel/saves_help_button": { "file": "ui/realms_settings_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "saves_help_panel/padding_help_button_bottom": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "saves_help_button_content": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "external_link_icon", "spacing_gap_1", "help_text" ] }, "saves_help_button_content/external_link_icon": { "file": "ui/realms_settings_screen.json", "type": "image" }, "saves_help_button_content/spacing_gap_1": { "file": "ui/realms_settings_screen.json", "type": "panel" }, "saves_help_button_content/help_text": { "file": "ui/realms_settings_screen.json", "type": "label", "extend": { "name": "label_text", "namespace": "realms_settings" } }, "storage_bar_label_stack_panel": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "text_left", "padding", "text_right" ] }, "storage_bar_label_stack_panel/text_left": { "file": "ui/realms_settings_screen.json", "type": "label" }, "storage_bar_label_stack_panel/padding": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "storage_bar_label_stack_panel/text_right": { "file": "ui/realms_settings_screen.json", "type": "label" }, "storage_bar_panel_with_header": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "label_panel", "padding2", "storage_bar_panel" ] }, "storage_bar_panel_with_header/label_panel": { "file": "ui/realms_settings_screen.json", "type": "panel", "children": [ "heading_label" ] }, "storage_bar_panel_with_header/label_panel/heading_label": { "file": "ui/realms_settings_screen.json", "type": "unknown" }, "storage_bar_panel_with_header/padding2": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "storage_bar_panel_with_header/storage_bar_panel": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "extend": { "name": "storage_bar_panel", "namespace": "realms_settings" } }, "realm_storage_heading_label": { "file": "ui/realms_settings_screen.json", "type": "label" }, "storage_bar_panel": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "storage_bar_label", "padding", "storage_bar" ] }, "storage_bar_panel/storage_bar_label": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "extend": { "name": "storage_bar_label_stack_panel", "namespace": "realms_settings" } }, "storage_bar_panel/padding": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "storage_bar_panel/storage_bar": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "storage_bar", "namespace": "realms_settings" } }, "storage_bar_panel_with_tts_focus_border": { "file": "ui/realms_settings_screen.json", "type": "panel", "children": [ "storage_bar_panel", "focus_border" ] }, "storage_bar_panel_with_tts_focus_border/storage_bar_panel": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "extend": { "name": "storage_bar_panel", "namespace": "realms_settings" } }, "storage_bar_panel_with_tts_focus_border/focus_border": { "file": "ui/realms_settings_screen.json", "type": "button", "extend": { "name": "tts_focus_border", "namespace": "realms_settings" } }, "storage_bar": { "file": "ui/realms_settings_screen.json", "type": "panel", "children": [ "empty_progress_bar_beveled", "storage_fill", "storage_bar_beveled_overlay" ] }, "storage_bar/empty_progress_bar_beveled": { "file": "ui/realms_settings_screen.json", "type": "image", "extend": { "name": "empty_progress_bar_beveled", "namespace": "common" } }, "storage_bar/storage_fill": { "file": "ui/realms_settings_screen.json", "type": "image" }, "storage_bar/storage_bar_beveled_overlay": { "file": "ui/realms_settings_screen.json", "type": "image", "extend": { "name": "progress_bar_beveled_overlay", "namespace": "common" } }, "active_world_info_panel": { "file": "ui/realms_settings_screen.json", "type": "panel", "children": [ "active_world_info_label_stack_panel", "focus_border" ] }, "active_world_info_panel/active_world_info_label_stack_panel": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "active_world_name_label", "active_world_size_label" ] }, "active_world_info_panel/active_world_info_label_stack_panel/active_world_name_label": { "file": "ui/realms_settings_screen.json", "type": "label" }, "active_world_info_panel/active_world_info_label_stack_panel/active_world_size_label": { "file": "ui/realms_settings_screen.json", "type": "label" }, "active_world_info_panel/focus_border": { "file": "ui/realms_settings_screen.json", "type": "button", "extend": { "name": "tts_focus_border", "namespace": "realms_settings" } }, "warning_text_panel": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "warning_panel", "padding1", "text_label" ] }, "warning_text_panel/warning_panel": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "padding1", "warning_image", "padding2" ] }, "warning_text_panel/warning_panel/padding1": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "warning_text_panel/warning_panel/warning_image": { "file": "ui/realms_settings_screen.json", "type": "image" }, "warning_text_panel/warning_panel/padding2": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "warning_text_panel/padding1": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "warning_text_panel/text_label": { "file": "ui/realms_settings_screen.json", "type": "label" }, "popup_dialog_background": { "file": "ui/realms_settings_screen.json", "type": "image" }, "popup_dialog_label": { "file": "ui/realms_settings_screen.json", "type": "label" }, "delete_selected_saves_button": { "file": "ui/realms_settings_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "cancel_popup_button": { "file": "ui/realms_settings_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "free_up_space_popup_content": { "file": "ui/realms_settings_screen.json", "type": "panel", "children": [ "common_panel", "title_label", "panel_indent", "button_panel" ] }, "free_up_space_popup_content/common_panel": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "free_up_space_popup_content/title_label": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "title_label", "namespace": "common_dialogs" } }, "free_up_space_popup_content/panel_indent": { "file": "ui/realms_settings_screen.json", "type": "panel", "children": [ "inside_header_panel" ] }, "free_up_space_popup_content/panel_indent/inside_header_panel": { "file": "ui/realms_settings_screen.json", "type": "unknown" }, "free_up_space_popup_content/button_panel": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "left_button_panel", "pad", "right_button_panel" ] }, "free_up_space_popup_content/button_panel/left_button_panel": { "file": "ui/realms_settings_screen.json", "type": "button", "extend": { "name": "cancel_popup_button", "namespace": "realms_settings" } }, "free_up_space_popup_content/button_panel/pad": { "file": "ui/realms_settings_screen.json", "type": "panel" }, "free_up_space_popup_content/button_panel/right_button_panel": { "file": "ui/realms_settings_screen.json", "type": "button", "extend": { "name": "delete_selected_saves_button", "namespace": "realms_settings" } }, "free_up_space_popup_scrolling_panel": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "free_up_space_text_description": { "file": "ui/realms_settings_screen.json", "type": "label" }, "free_up_space_popup_content_stack_panel": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "free_up_space_description_label", "padding1", "free_up_space_storage_bar_panel", "padding2", "free_up_space_manual_save_list_stack_panel" ] }, "free_up_space_popup_content_stack_panel/free_up_space_description_label": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "free_up_space_popup_content_stack_panel/padding1": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "free_up_space_popup_content_stack_panel/free_up_space_storage_bar_panel": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "storage_bar_panel_with_tts_focus_border", "namespace": "realms_settings" } }, "free_up_space_popup_content_stack_panel/padding2": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "free_up_space_popup_content_stack_panel/free_up_space_manual_save_list_stack_panel": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "extend": { "name": "manual_save_list_stack_panel", "namespace": "realms_settings" } }, "popup_dialog__free_up_space": { "file": "ui/realms_settings_screen.json", "type": "input_panel", "extend": { "name": "popup_dialog", "namespace": "popup_dialog" }, "children": [ "free_up_space_popup_background", "free_up_space_popup_content" ] }, "popup_dialog__free_up_space/free_up_space_popup_background": { "file": "ui/realms_settings_screen.json", "type": "image", "extend": { "name": "popup_dialog_background", "namespace": "realms_settings" } }, "popup_dialog__free_up_space/free_up_space_popup_content": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "free_up_space_popup_content", "namespace": "realms_settings" } }, "top_tab": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "tab_top", "namespace": "common_tabs" } }, "tab_content": { "file": "ui/realms_settings_screen.json", "type": "panel", "children": [ "text" ] }, "tab_content/text": { "file": "ui/realms_settings_screen.json", "type": "label", "extend": { "name": "common_button_text", "namespace": "play" } }, "manual_navigation_tab": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "top_tab", "namespace": "realms_settings" } }, "automatic_navigation_tab": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "top_tab", "namespace": "realms_settings" } }, "tab_navigation_panel_layout": { "file": "ui/realms_settings_screen.json", "type": "panel", "children": [ "content" ] }, "tab_navigation_panel_layout/content": { "file": "ui/realms_settings_screen.json", "type": "unknown" }, "button_tabs_container": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "manual_navigation_tab", "automatic_navigation_tab" ] }, "button_tabs_container/manual_navigation_tab": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "manual_navigation_tab", "namespace": "realms_settings" } }, "button_tabs_container/automatic_navigation_tab": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "automatic_navigation_tab", "namespace": "realms_settings" } }, "tab_content_panel": { "file": "ui/realms_settings_screen.json", "type": "image", "extend": { "name": "dialog_background_hollow_4", "namespace": "common" }, "children": [ "background" ] }, "tab_content_panel/background": { "file": "ui/realms_settings_screen.json", "type": "image", "children": [ "manual_save_list", "automatic_save_list" ] }, "tab_content_panel/background/manual_save_list": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "manual_save_list_panel", "namespace": "realms_settings" } }, "tab_content_panel/background/automatic_save_list": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "automatic_save_list_panel", "namespace": "realms_settings" } }, "save_list_panel": { "file": "ui/realms_settings_screen.json", "type": "panel", "children": [ "save_list" ] }, "save_list_panel/save_list": { "file": "ui/realms_settings_screen.json", "type": "unknown" }, "manual_save_list_panel": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "save_list_panel", "namespace": "realms_settings" } }, "manual_tab_info_panel": { "file": "ui/realms_settings_screen.json", "type": "panel", "children": [ "info_label" ] }, "manual_tab_info_panel/info_label": { "file": "ui/realms_settings_screen.json", "type": "label" }, "manual_save_list_stack_panel": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "padding1", "save_tab_info_label", "padding2", "stack_panel", "padding3" ] }, "manual_save_list_stack_panel/padding1": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "manual_save_list_stack_panel/save_tab_info_label": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "manual_save_list_stack_panel/padding2": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "manual_save_list_stack_panel/stack_panel": { "file": "ui/realms_settings_screen.json", "type": "stack_panel" }, "manual_save_list_stack_panel/padding3": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "automatic_save_list_panel": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "save_list_panel", "namespace": "realms_settings" } }, "automatic_tab_info_panel": { "file": "ui/realms_settings_screen.json", "type": "panel", "children": [ "info_label" ] }, "automatic_tab_info_panel/info_label": { "file": "ui/realms_settings_screen.json", "type": "label" }, "automatic_save_list_stack_panel": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "padding1", "save_tab_info_label", "padding2", "stack_panel", "padding3" ] }, "automatic_save_list_stack_panel/padding1": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "automatic_save_list_stack_panel/save_tab_info_label": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "automatic_save_list_stack_panel/padding2": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "automatic_save_list_stack_panel/stack_panel": { "file": "ui/realms_settings_screen.json", "type": "stack_panel" }, "automatic_save_list_stack_panel/padding3": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "options_icon": { "file": "ui/realms_settings_screen.json", "type": "image" }, "saves_info_accordian": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "main_content_panel", "sub_content_panel" ] }, "saves_info_accordian/main_content_panel": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "checkbox_button", "main_item_toggle", "options_button" ] }, "saves_info_accordian/main_content_panel/checkbox_button": { "file": "ui/realms_settings_screen.json", "type": "button", "extend": { "name": "dark_content_button", "namespace": "common_buttons" } }, "saves_info_accordian/main_content_panel/main_item_toggle": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "dark_ui_toggle", "namespace": "common_toggles" } }, "saves_info_accordian/main_content_panel/options_button": { "file": "ui/realms_settings_screen.json", "type": "button", "extend": { "name": "dark_content_button", "namespace": "common_buttons" } }, "saves_info_accordian/sub_content_panel": { "file": "ui/realms_settings_screen.json", "type": "panel", "children": [ "saves_content" ] }, "saves_info_accordian/sub_content_panel/saves_content": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "option_saves_info_label", "namespace": "realms_settings" } }, "saves_info_accordion_checkbox": { "file": "ui/realms_settings_screen.json", "type": "panel", "children": [ "unchecked_control", "checked_control", "unchecked_hover_control", "checked__hover_control" ] }, "saves_info_accordion_checkbox/unchecked_control": { "file": "ui/realms_settings_screen.json", "type": "unknown" }, "saves_info_accordion_checkbox/checked_control": { "file": "ui/realms_settings_screen.json", "type": "unknown" }, "saves_info_accordion_checkbox/unchecked_hover_control": { "file": "ui/realms_settings_screen.json", "type": "unknown" }, "saves_info_accordion_checkbox/checked__hover_control": { "file": "ui/realms_settings_screen.json", "type": "unknown" }, "main_item_content": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "date_and_name", "time_and_size", "padding_left_down_icon", "down_icon", "padding_right_down_icon" ] }, "main_item_content/date_and_name": { "file": "ui/realms_settings_screen.json", "type": "panel", "children": [ "date_saved_label", "world_name_label" ] }, "main_item_content/date_and_name/date_saved_label": { "file": "ui/realms_settings_screen.json", "type": "label" }, "main_item_content/date_and_name/world_name_label": { "file": "ui/realms_settings_screen.json", "type": "label" }, "main_item_content/time_and_size": { "file": "ui/realms_settings_screen.json", "type": "panel", "children": [ "save_data_time_label", "save_data_size_label" ] }, "main_item_content/time_and_size/save_data_time_label": { "file": "ui/realms_settings_screen.json", "type": "label" }, "main_item_content/time_and_size/save_data_size_label": { "file": "ui/realms_settings_screen.json", "type": "label" }, "main_item_content/padding_left_down_icon": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "main_item_content/down_icon": { "file": "ui/realms_settings_screen.json", "type": "panel", "children": [ "options_icon" ] }, "main_item_content/down_icon/options_icon": { "file": "ui/realms_settings_screen.json", "type": "image" }, "main_item_content/padding_right_down_icon": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "option_saves_info_label": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "saves_info_container": { "file": "ui/realms_settings_screen.json", "type": "image", "children": [ "saves_info_content" ] }, "saves_info_container/saves_info_content": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "extend": { "name": "saves_info_content", "namespace": "realms_settings" } }, "saves_info_content": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "version_panel", "pack_header_panel", "world_packs_label" ] }, "saves_info_content/version_panel": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "version_panel", "namespace": "realms_settings" } }, "saves_info_content/pack_header_panel": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "pack_header_panel", "namespace": "realms_settings" } }, "saves_info_content/world_packs_label": { "file": "ui/realms_settings_screen.json", "type": "label" }, "version_panel": { "file": "ui/realms_settings_screen.json", "type": "panel", "children": [ "left_content" ] }, "version_panel/left_content": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "save_version_label" ] }, "version_panel/left_content/save_version_label": { "file": "ui/realms_settings_screen.json", "type": "label" }, "pack_header_panel": { "file": "ui/realms_settings_screen.json", "type": "panel", "children": [ "left_content" ] }, "pack_header_panel/left_content": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "packs_label" ] }, "pack_header_panel/left_content/packs_label": { "file": "ui/realms_settings_screen.json", "type": "label" }, "label_text": { "file": "ui/realms_settings_screen.json", "type": "label" }, "branch_grid_item_content": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "branch_text", "commit_text" ] }, "branch_grid_item_content/branch_text": { "file": "ui/realms_settings_screen.json", "type": "label", "extend": { "name": "label_text", "namespace": "realms_settings" } }, "branch_grid_item_content/commit_text": { "file": "ui/realms_settings_screen.json", "type": "label", "extend": { "name": "label_text", "namespace": "realms_settings" } }, "matching_item_button_content": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "branch_text", "commit_text" ] }, "matching_item_button_content/branch_text": { "file": "ui/realms_settings_screen.json", "type": "label", "extend": { "name": "label_text", "namespace": "realms_settings" } }, "matching_item_button_content/commit_text": { "file": "ui/realms_settings_screen.json", "type": "label", "extend": { "name": "label_text", "namespace": "realms_settings" } }, "branch_item_template": { "file": "ui/realms_settings_screen.json", "type": "panel", "children": [ "branch_item_button" ] }, "branch_item_template/branch_item_button": { "file": "ui/realms_settings_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "branches_grid": { "file": "ui/realms_settings_screen.json", "type": "grid" }, "branch_set_panel": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "set_branch_id_label" ] }, "branch_set_panel/set_branch_id_label": { "file": "ui/realms_settings_screen.json", "type": "label", "extend": { "name": "label_text", "namespace": "realms_settings" } }, "version_filter_text_box": { "file": "ui/realms_settings_screen.json", "type": "edit_box", "extend": { "name": "text_edit_box", "namespace": "common" } }, "branch_page_panel": { "file": "ui/realms_settings_screen.json", "type": "panel", "children": [ "prev_button", "page_text", "next_button" ] }, "branch_page_panel/prev_button": { "file": "ui/realms_settings_screen.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "branch_page_panel/page_text": { "file": "ui/realms_settings_screen.json", "type": "label", "extend": { "name": "label_text", "namespace": "realms_settings" } }, "branch_page_panel/next_button": { "file": "ui/realms_settings_screen.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "branches_panel": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "branch_label", "spacing_gap_1", "set_branch_version_label", "branch_set_panel", "spacing_gap_2", "matching_version_label", "matching_item_button", "spacing_gap_3", "all_commits_label", "version_filter_text_box", "branches_grid", "spacing_gap", "branch_page_panel" ] }, "branches_panel/branch_label": { "file": "ui/realms_settings_screen.json", "type": "label", "extend": { "name": "selector_group_label", "namespace": "settings_common" } }, "branches_panel/spacing_gap_1": { "file": "ui/realms_settings_screen.json", "type": "panel" }, "branches_panel/set_branch_version_label": { "file": "ui/realms_settings_screen.json", "type": "label", "extend": { "name": "label_text", "namespace": "realms_settings" } }, "branches_panel/branch_set_panel": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "extend": { "name": "branch_set_panel", "namespace": "realms_settings" } }, "branches_panel/spacing_gap_2": { "file": "ui/realms_settings_screen.json", "type": "panel" }, "branches_panel/matching_version_label": { "file": "ui/realms_settings_screen.json", "type": "label", "extend": { "name": "selector_group_label", "namespace": "settings_common" } }, "branches_panel/matching_item_button": { "file": "ui/realms_settings_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "branches_panel/spacing_gap_3": { "file": "ui/realms_settings_screen.json", "type": "panel" }, "branches_panel/all_commits_label": { "file": "ui/realms_settings_screen.json", "type": "label", "extend": { "name": "selector_group_label", "namespace": "settings_common" } }, "branches_panel/version_filter_text_box": { "file": "ui/realms_settings_screen.json", "type": "edit_box", "extend": { "name": "version_filter_text_box", "namespace": "realms_settings" } }, "branches_panel/branches_grid": { "file": "ui/realms_settings_screen.json", "type": "grid", "extend": { "name": "branches_grid", "namespace": "realms_settings" } }, "branches_panel/spacing_gap": { "file": "ui/realms_settings_screen.json", "type": "panel" }, "branches_panel/branch_page_panel": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "branch_page_panel", "namespace": "realms_settings" } }, "branch_section": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "branches_panel" ] }, "branch_section/branches_panel": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "extend": { "name": "branches_panel", "namespace": "realms_settings" } }, "test_content": { "file": "ui/realms_settings_screen.json", "type": "panel", "children": [ "realms_allowlist_content_panel", "gamepad_helpers" ] }, "test_content/realms_allowlist_content_panel": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "realms_allowlist_content_panel", "namespace": "realms_allowlist" } }, "test_content/gamepad_helpers": { "file": "ui/realms_settings_screen.json", "type": "unknown", "extend": { "name": "gamepad_helpers", "namespace": "realms_allowlist" } }, "selector_panel": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "play_button", "disabled_play_button", "expired_play_button", "padding", "selector_group_label", "world_button", "members_button", "saves_button", "subscription_button", "dev_options_button", "invite_links_button", "advanced_button" ] }, "selector_panel/play_button": { "file": "ui/realms_settings_screen.json", "type": "button", "extend": { "name": "action_button_dark_text", "namespace": "settings_common" } }, "selector_panel/disabled_play_button": { "file": "ui/realms_settings_screen.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "selector_panel/expired_play_button": { "file": "ui/realms_settings_screen.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "selector_panel/padding": { "file": "ui/realms_settings_screen.json", "type": "panel" }, "selector_panel/selector_group_label": { "file": "ui/realms_settings_screen.json", "type": "label", "extend": { "name": "selector_group_label", "namespace": "settings_common" } }, "selector_panel/world_button": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "settings_common" } }, "selector_panel/members_button": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "settings_common" } }, "selector_panel/saves_button": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "settings_common" } }, "selector_panel/subscription_button": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "settings_common" } }, "selector_panel/dev_options_button": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "settings_common" } }, "selector_panel/invite_links_button": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "settings_common" } }, "selector_panel/advanced_button": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "settings_common" } }, "section_content_panels": { "file": "ui/realms_settings_screen.json", "type": "panel", "children": [ "world_section", "players_section", "subscription_section", "invite_links_section", "advanced_section", "dev_options_section", "saves_section" ] }, "section_content_panels/world_section": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "generic_section_wrapper", "namespace": "realms_settings" } }, "section_content_panels/players_section": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "generic_section_wrapper", "namespace": "realms_settings" } }, "section_content_panels/subscription_section": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "generic_section_wrapper", "namespace": "realms_settings" } }, "section_content_panels/invite_links_section": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "generic_section_wrapper", "namespace": "realms_settings" } }, "section_content_panels/advanced_section": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "generic_section_wrapper", "namespace": "realms_settings" } }, "section_content_panels/dev_options_section": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "generic_section_wrapper", "namespace": "realms_settings" } }, "section_content_panels/saves_section": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "generic_section_wrapper", "namespace": "realms_settings" } }, "popup_dialog__save_options": { "file": "ui/realms_settings_screen.json", "type": "input_panel", "extend": { "name": "form_fit_modal_dialog_popup", "namespace": "popup_dialog" } }, "save_options_popup_content": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "restore_button", "spacing_1", "download_button", "spacing_2", "save_button_container", "delete_button_container" ] }, "save_options_popup_content/restore_button": { "file": "ui/realms_settings_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "save_options_popup_content/spacing_1": { "file": "ui/realms_settings_screen.json", "type": "panel" }, "save_options_popup_content/download_button": { "file": "ui/realms_settings_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "save_options_popup_content/spacing_2": { "file": "ui/realms_settings_screen.json", "type": "panel" }, "save_options_popup_content/save_button_container": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "save_button", "spacing_3" ] }, "save_options_popup_content/save_button_container/save_button": { "file": "ui/realms_settings_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "save_options_popup_content/save_button_container/spacing_3": { "file": "ui/realms_settings_screen.json", "type": "panel" }, "save_options_popup_content/delete_button_container": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "delete_button" ] }, "save_options_popup_content/delete_button_container/delete_button": { "file": "ui/realms_settings_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "standalone_dialog_title": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "left_padding", "dialog_title_label", "right_padding" ] }, "standalone_dialog_title/left_padding": { "file": "ui/realms_settings_screen.json", "type": "panel" }, "standalone_dialog_title/dialog_title_label": { "file": "ui/realms_settings_screen.json", "type": "label" }, "standalone_dialog_title/right_padding": { "file": "ui/realms_settings_screen.json", "type": "panel" }, "standalone_dialog_content": { "file": "ui/realms_settings_screen.json", "type": "panel", "children": [ "dialog_title", "content_area" ] }, "standalone_dialog_content/dialog_title": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "extend": { "name": "standalone_dialog_title", "namespace": "realms_settings" } }, "standalone_dialog_content/content_area": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "standalone_content_area", "namespace": "realms_settings" } }, "standalone_content_area": { "file": "ui/realms_settings_screen.json", "type": "panel", "children": [ "control" ] }, "standalone_content_area/control": { "file": "ui/realms_settings_screen.json", "type": "stack_panel", "children": [ "scrolling_panel" ] }, "standalone_content_area/control/scrolling_panel": { "file": "ui/realms_settings_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "realms_settings_screen_base_no_selector_area": { "file": "ui/realms_settings_screen.json", "type": "screen", "extend": { "name": "dynamic_dialog_screen", "namespace": "settings_common" } }, "screen_realm_hub_manage_members": { "file": "ui/realms_settings_screen.json", "type": "screen", "extend": { "name": "realms_settings_screen_base_no_selector_area", "namespace": "realms_settings" } }, "screen_realm_hub_invite_links": { "file": "ui/realms_settings_screen.json", "type": "screen", "extend": { "name": "realms_settings_screen_base_no_selector_area", "namespace": "realms_settings" } }, "screen_realm_hub_saves": { "file": "ui/realms_settings_screen.json", "type": "screen", "extend": { "name": "realms_settings_screen_base_no_selector_area", "namespace": "realms_settings" } } }, "realms_allowlist": { "spacing_gap": { "file": "ui/realms_allowlist.json", "type": "panel" }, "friends_containing_panel": { "file": "ui/realms_allowlist.json", "type": "panel", "children": [ "friends_panel" ] }, "friends_containing_panel/friends_panel": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "extend": { "name": "friends_panel", "namespace": "realms_allowlist" } }, "friends_panel": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "children": [ "add_friends_and_invite_link_panel", "option_dropdown_permissions", "player_filter_label", "player_filter_text_box", "spacing_gap_members_top", "lists", "loading_friends" ] }, "friends_panel/add_friends_and_invite_link_panel": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "add_friends_and_invite_link_panel", "namespace": "realms_allowlist" } }, "friends_panel/option_dropdown_permissions": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "friends_panel/player_filter_label": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "player_filter_label", "namespace": "realms_allowlist" } }, "friends_panel/player_filter_text_box": { "file": "ui/realms_allowlist.json", "type": "edit_box", "extend": { "name": "player_filter_text_box", "namespace": "realms_allowlist" } }, "friends_panel/spacing_gap_members_top": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "spacing_gap", "namespace": "realms_allowlist" } }, "friends_panel/lists": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "children": [ "members_label", "members_stack", "spacing_gap_members_bottom", "members_page_panel", "invited_friends_label", "invited_stack", "spacing_gap_invited_friends", "invited_friends_page_panel", "uninvited_friends_label", "uninvited_stack", "spacing_gap_uninvited_friends", "uninvited_friends_page_panel", "blocked_players_label", "blocked_players_stack", "spacing_gap_blocked_players", "blocked_players_page_panel", "no_invites_label" ] }, "friends_panel/lists/members_label": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "extend": { "name": "members_label", "namespace": "realms_allowlist" } }, "friends_panel/lists/members_stack": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "extend": { "name": "factory_stack", "namespace": "realms_allowlist" } }, "friends_panel/lists/spacing_gap_members_bottom": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "spacing_gap", "namespace": "realms_allowlist" } }, "friends_panel/lists/members_page_panel": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "page_panel", "namespace": "realms_allowlist" } }, "friends_panel/lists/invited_friends_label": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "invited_friends_label", "namespace": "realms_allowlist" } }, "friends_panel/lists/invited_stack": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "extend": { "name": "factory_stack", "namespace": "realms_allowlist" } }, "friends_panel/lists/spacing_gap_invited_friends": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "spacing_gap", "namespace": "realms_allowlist" } }, "friends_panel/lists/invited_friends_page_panel": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "page_panel", "namespace": "realms_allowlist" } }, "friends_panel/lists/uninvited_friends_label": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "uninvited_friends_label", "namespace": "realms_allowlist" } }, "friends_panel/lists/uninvited_stack": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "extend": { "name": "factory_stack", "namespace": "realms_allowlist" } }, "friends_panel/lists/spacing_gap_uninvited_friends": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "spacing_gap", "namespace": "realms_allowlist" } }, "friends_panel/lists/uninvited_friends_page_panel": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "page_panel", "namespace": "realms_allowlist" } }, "friends_panel/lists/blocked_players_label": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "blocked_players_label", "namespace": "realms_allowlist" } }, "friends_panel/lists/blocked_players_stack": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "extend": { "name": "factory_stack", "namespace": "realms_allowlist" } }, "friends_panel/lists/spacing_gap_blocked_players": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "spacing_gap", "namespace": "realms_allowlist" } }, "friends_panel/lists/blocked_players_page_panel": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "page_panel", "namespace": "realms_allowlist" } }, "friends_panel/lists/no_invites_label": { "file": "ui/realms_allowlist.json", "type": "label", "extend": { "name": "no_invites_label", "namespace": "realms_allowlist" } }, "friends_panel/loading_friends": { "file": "ui/realms_allowlist.json", "type": "label", "extend": { "name": "loading_friends", "namespace": "realms_allowlist" } }, "add_friends_and_invite_link_panel": { "file": "ui/realms_allowlist.json", "type": "panel", "children": [ "allowlist_stack_panel" ] }, "add_friends_and_invite_link_panel/allowlist_stack_panel": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "children": [ "find_friends_button_panel", "spacing_1", "invite_links_panel", "spacing_2", "options_panel" ] }, "add_friends_and_invite_link_panel/allowlist_stack_panel/find_friends_button_panel": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "find_friends_button_panel", "namespace": "realms_allowlist" } }, "add_friends_and_invite_link_panel/allowlist_stack_panel/spacing_1": { "file": "ui/realms_allowlist.json", "type": "panel" }, "add_friends_and_invite_link_panel/allowlist_stack_panel/invite_links_panel": { "file": "ui/realms_allowlist.json", "type": "panel", "children": [ "invite_links_button" ] }, "add_friends_and_invite_link_panel/allowlist_stack_panel/invite_links_panel/invite_links_button": { "file": "ui/realms_allowlist.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "add_friends_and_invite_link_panel/allowlist_stack_panel/spacing_2": { "file": "ui/realms_allowlist.json", "type": "panel" }, "add_friends_and_invite_link_panel/allowlist_stack_panel/options_panel": { "file": "ui/realms_allowlist.json", "type": "panel", "children": [ "clear_members_button" ] }, "add_friends_and_invite_link_panel/allowlist_stack_panel/options_panel/clear_members_button": { "file": "ui/realms_allowlist.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "options_icon": { "file": "ui/realms_allowlist.json", "type": "image" }, "account_link_image": { "file": "ui/realms_allowlist.json", "type": "image" }, "account_link_icon": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "children": [ "space_01", "account_link_image", "space_03" ] }, "account_link_icon/space_01": { "file": "ui/realms_allowlist.json", "type": "panel" }, "account_link_icon/account_link_image": { "file": "ui/realms_allowlist.json", "type": "image", "extend": { "name": "account_link_image", "namespace": "invite" } }, "account_link_icon/space_03": { "file": "ui/realms_allowlist.json", "type": "panel" }, "find_friends_button_panel": { "file": "ui/realms_allowlist.json", "type": "panel", "children": [ "find_friends_button" ] }, "find_friends_button_panel/find_friends_button": { "file": "ui/realms_allowlist.json", "type": "button", "extend": { "name": "find_friends_button", "namespace": "realms_allowlist" } }, "invited_friends_label": { "file": "ui/realms_allowlist.json", "type": "panel", "children": [ "friend_title" ] }, "invited_friends_label/friend_title": { "file": "ui/realms_allowlist.json", "type": "label" }, "player_filter_label": { "file": "ui/realms_allowlist.json", "type": "panel", "children": [ "player_filter_title" ] }, "player_filter_label/player_filter_title": { "file": "ui/realms_allowlist.json", "type": "label" }, "members_label": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "children": [ "friend_title", "padding_panel", "loading_text" ] }, "members_label/friend_title": { "file": "ui/realms_allowlist.json", "type": "label" }, "members_label/padding_panel": { "file": "ui/realms_allowlist.json", "type": "panel" }, "members_label/loading_text": { "file": "ui/realms_allowlist.json", "type": "label" }, "blocked_players_label": { "file": "ui/realms_allowlist.json", "type": "panel", "children": [ "friend_title" ] }, "blocked_players_label/friend_title": { "file": "ui/realms_allowlist.json", "type": "label" }, "uninvited_friends_label": { "file": "ui/realms_allowlist.json", "type": "panel", "children": [ "friend_title" ] }, "uninvited_friends_label/friend_title": { "file": "ui/realms_allowlist.json", "type": "label" }, "no_invites_label": { "file": "ui/realms_allowlist.json", "type": "label", "extend": { "name": "panel_text", "namespace": "realms_allowlist" } }, "loading_friends": { "file": "ui/realms_allowlist.json", "type": "label", "extend": { "name": "panel_text", "namespace": "realms_allowlist" } }, "blocked_grid_item": { "file": "ui/realms_allowlist.json", "type": "panel", "children": [ "blocked_panel" ] }, "blocked_grid_item/blocked_panel": { "file": "ui/realms_allowlist.json", "type": "image", "extend": { "name": "blocked_panel", "namespace": "realms_allowlist" } }, "factory_stack": { "file": "ui/realms_allowlist.json", "type": "stack_panel" }, "member_factory_xbl_profile": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "extend": { "name": "xbl_profile_panel_factory", "namespace": "realms_allowlist" } }, "member_factory_linked_account": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "extend": { "name": "linked_account_panel_factory", "namespace": "realms_allowlist" } }, "invited_factory_xbl_profile": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "extend": { "name": "xbl_profile_panel_factory", "namespace": "realms_allowlist" } }, "invited_factory_linked_account": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "extend": { "name": "linked_account_panel_factory", "namespace": "realms_allowlist" } }, "uninvited_factory_xbl_profile": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "extend": { "name": "xbl_profile_panel_factory", "namespace": "realms_allowlist" } }, "uninvited_factory_linked_account": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "extend": { "name": "linked_account_panel_factory", "namespace": "realms_allowlist" } }, "blocked_factory_xbl_profile": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "extend": { "name": "xbl_profile_blocked_panel_factory", "namespace": "realms_allowlist" } }, "blocked_factory_linked_account": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "extend": { "name": "linked_account_blocked_panel_factory", "namespace": "realms_allowlist" } }, "xbl_profile_panel_factory": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "extend": { "name": "gapped_xbl_profile_panel", "namespace": "realms_allowlist" } }, "xbl_profile_blocked_panel_factory": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "extend": { "name": "gapped_blocked_xbl_profile_panel", "namespace": "realms_allowlist" } }, "linked_account_panel_factory": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "extend": { "name": "gapped_linked_account_panel", "namespace": "realms_allowlist" } }, "linked_account_blocked_panel_factory": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "extend": { "name": "gapped_blocked_linked_account_panel", "namespace": "realms_allowlist" } }, "xbl_profile_panel": { "file": "ui/realms_allowlist.json", "type": "image", "extend": { "name": "main_banner", "namespace": "realms_common" }, "children": [ "player_status_panel", "xbl_user_panel", "right_controls_panel", "progress" ] }, "xbl_profile_panel/player_status_panel": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "player_status_panel", "namespace": "realms_allowlist" } }, "xbl_profile_panel/xbl_user_panel": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "extend": { "name": "xbl_user_panel", "namespace": "realms_allowlist" } }, "xbl_profile_panel/right_controls_panel": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "right_controls_panel", "namespace": "realms_allowlist" } }, "xbl_profile_panel/progress": { "file": "ui/realms_allowlist.json", "type": "image", "extend": { "name": "progress_loading_bars", "namespace": "progress" } }, "factory_gap_template": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "children": [ "gapped_control", "spacing1" ] }, "factory_gap_template/gapped_control": { "file": "ui/realms_allowlist.json", "type": "unknown" }, "factory_gap_template/spacing1": { "file": "ui/realms_allowlist.json", "type": "panel" }, "gapped_xbl_profile_panel": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "extend": { "name": "factory_gap_template", "namespace": "realms_allowlist" } }, "gapped_linked_account_panel": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "extend": { "name": "factory_gap_template", "namespace": "realms_allowlist" } }, "gapped_blocked_xbl_profile_panel": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "extend": { "name": "factory_gap_template", "namespace": "realms_allowlist" } }, "gapped_blocked_linked_account_panel": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "extend": { "name": "factory_gap_template", "namespace": "realms_allowlist" } }, "blocked_panel": { "file": "ui/realms_allowlist.json", "type": "image", "extend": { "name": "main_banner", "namespace": "realms_common" }, "children": [ "xbl_user_panel", "unblock_button" ] }, "blocked_panel/xbl_user_panel": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "extend": { "name": "xbl_user_panel", "namespace": "realms_allowlist" } }, "blocked_panel/unblock_button": { "file": "ui/realms_allowlist.json", "type": "button", "extend": { "name": "unblock_button", "namespace": "realms_allowlist" } }, "linked_account_panel": { "file": "ui/realms_allowlist.json", "type": "image", "extend": { "name": "main_banner", "namespace": "realms_common" }, "children": [ "linked_account_positioning_panel", "right_controls_panel", "progress" ] }, "linked_account_panel/linked_account_positioning_panel": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "extend": { "name": "linked_user_stack_panel", "namespace": "realms_allowlist" } }, "linked_account_panel/right_controls_panel": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "right_controls_panel", "namespace": "realms_allowlist" } }, "linked_account_panel/progress": { "file": "ui/realms_allowlist.json", "type": "image", "extend": { "name": "progress_loading_bars", "namespace": "progress" } }, "linked_account_blocked_panel": { "file": "ui/realms_allowlist.json", "type": "image", "extend": { "name": "main_banner", "namespace": "realms_common" }, "children": [ "linked_account_positioning_panel", "unblock_button", "progress" ] }, "linked_account_blocked_panel/linked_account_positioning_panel": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "extend": { "name": "linked_user_stack_panel", "namespace": "realms_allowlist" } }, "linked_account_blocked_panel/unblock_button": { "file": "ui/realms_allowlist.json", "type": "button", "extend": { "name": "unblock_button", "namespace": "realms_allowlist" } }, "linked_account_blocked_panel/progress": { "file": "ui/realms_allowlist.json", "type": "image", "extend": { "name": "progress_loading_bars", "namespace": "progress" } }, "xbl_user_panel": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "children": [ "spacing1", "platform_icon_positioner", "gamerpic_panel", "spacing2", "gamertag_label_panel" ] }, "xbl_user_panel/spacing1": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "horizontal_indent", "namespace": "realms_allowlist" } }, "xbl_user_panel/platform_icon_positioner": { "file": "ui/realms_allowlist.json", "type": "panel" }, "xbl_user_panel/gamerpic_panel": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "gamerpic_panel", "namespace": "realms_allowlist" } }, "xbl_user_panel/spacing2": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "horizontal_indent", "namespace": "realms_allowlist" } }, "xbl_user_panel/gamertag_label_panel": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "gamertag_label_panel", "namespace": "realms_allowlist" } }, "third_party_user_panel": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "children": [ "spacing1", "profile_picture", "spacing2", "third_party_profile_label" ] }, "third_party_user_panel/spacing1": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "horizontal_indent", "namespace": "realms_allowlist" } }, "third_party_user_panel/profile_picture": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "third_party_profile_pic_panel", "namespace": "realms_allowlist" } }, "third_party_user_panel/spacing2": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "horizontal_indent", "namespace": "realms_allowlist" } }, "third_party_user_panel/third_party_profile_label": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "third_party_profile_label", "namespace": "realms_allowlist" } }, "linked_profile_pictures_panel": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "children": [ "pp2", "account_link", "pp1" ] }, "linked_profile_pictures_panel/pp2": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "third_party_profile_pic_panel", "namespace": "realms_allowlist" } }, "linked_profile_pictures_panel/account_link": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "extend": { "name": "account_link_icon", "namespace": "realms_allowlist" } }, "linked_profile_pictures_panel/pp1": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "gamerpic_panel", "namespace": "realms_allowlist" } }, "platform_profile_names": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "children": [ "friend_grid_third_party_tag", "spacer_02", "friend_grid_xbl_gamertag", "spacer_03" ] }, "platform_profile_names/friend_grid_third_party_tag": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "third_party_profile_label", "namespace": "realms_allowlist" } }, "platform_profile_names/spacer_02": { "file": "ui/realms_allowlist.json", "type": "panel" }, "platform_profile_names/friend_grid_xbl_gamertag": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "gamertag_label_panel", "namespace": "realms_allowlist" } }, "platform_profile_names/spacer_03": { "file": "ui/realms_allowlist.json", "type": "panel" }, "linked_user_stack_panel": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "children": [ "allow_offset_control", "platform_icon_positioner", "spacing1", "profile_picture", "spacing2", "platform_names_label", "spacing3" ] }, "linked_user_stack_panel/allow_offset_control": { "file": "ui/realms_allowlist.json", "type": "panel", "children": [ "player_status_panel" ] }, "linked_user_stack_panel/allow_offset_control/player_status_panel": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "player_status_panel", "namespace": "realms_allowlist" } }, "linked_user_stack_panel/platform_icon_positioner": { "file": "ui/realms_allowlist.json", "type": "panel", "children": [ "platform_icon" ] }, "linked_user_stack_panel/platform_icon_positioner/platform_icon": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "platform_icon_panel", "namespace": "invite" } }, "linked_user_stack_panel/spacing1": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "horizontal_indent", "namespace": "realms_allowlist" } }, "linked_user_stack_panel/profile_picture": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "extend": { "name": "linked_profile_pictures_panel", "namespace": "realms_allowlist" } }, "linked_user_stack_panel/spacing2": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "horizontal_indent", "namespace": "realms_allowlist" } }, "linked_user_stack_panel/platform_names_label": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "extend": { "name": "platform_profile_names", "namespace": "realms_allowlist" } }, "linked_user_stack_panel/spacing3": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "horizontal_indent", "namespace": "realms_allowlist" } }, "horizontal_indent": { "file": "ui/realms_allowlist.json", "type": "panel" }, "vertical_indent": { "file": "ui/realms_allowlist.json", "type": "panel" }, "gamerpic_panel": { "file": "ui/realms_allowlist.json", "type": "panel", "children": [ "black_border", "gamer_pic" ] }, "gamerpic_panel/black_border": { "file": "ui/realms_allowlist.json", "type": "image", "extend": { "name": "black_border", "namespace": "realms_allowlist" } }, "gamerpic_panel/gamer_pic": { "file": "ui/realms_allowlist.json", "type": "custom", "extend": { "name": "gamer_pic", "namespace": "realms_allowlist" } }, "third_party_profile_pic_panel": { "file": "ui/realms_allowlist.json", "type": "panel", "children": [ "black_border", "third_party_profile_picture" ] }, "third_party_profile_pic_panel/black_border": { "file": "ui/realms_allowlist.json", "type": "image", "extend": { "name": "black_border", "namespace": "realms_allowlist" } }, "third_party_profile_pic_panel/third_party_profile_picture": { "file": "ui/realms_allowlist.json", "type": "image", "extend": { "name": "third_party_profile_picture", "namespace": "realms_allowlist" } }, "gamertag_label_panel": { "file": "ui/realms_allowlist.json", "type": "panel", "children": [ "gamertag_label", "real_name_label" ] }, "gamertag_label_panel/gamertag_label": { "file": "ui/realms_allowlist.json", "type": "label", "extend": { "name": "gamertag_label", "namespace": "realms_allowlist" } }, "gamertag_label_panel/real_name_label": { "file": "ui/realms_allowlist.json", "type": "label", "extend": { "name": "real_name_label", "namespace": "realms_allowlist" } }, "third_party_profile_label": { "file": "ui/realms_allowlist.json", "type": "panel", "children": [ "profile_name_label" ] }, "third_party_profile_label/profile_name_label": { "file": "ui/realms_allowlist.json", "type": "label", "extend": { "name": "third_party_profile_name_label", "namespace": "realms_allowlist" } }, "panel_text": { "file": "ui/realms_allowlist.json", "type": "label" }, "gamertag_label": { "file": "ui/realms_allowlist.json", "type": "label", "extend": { "name": "panel_text", "namespace": "realms_allowlist" } }, "third_party_profile_name_label": { "file": "ui/realms_allowlist.json", "type": "label", "extend": { "name": "panel_text", "namespace": "realms_allowlist" } }, "real_name_label": { "file": "ui/realms_allowlist.json", "type": "label", "extend": { "name": "panel_text", "namespace": "realms_allowlist" } }, "right_settings_panel": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "children": [ "member_settings" ] }, "right_settings_panel/member_settings": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "extend": { "name": "member_settings", "namespace": "realms_allowlist" } }, "member_settings": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "children": [ "minus_button", "horizontal_space", "member_permissions", "op_deop_button" ] }, "member_settings/minus_button": { "file": "ui/realms_allowlist.json", "type": "button", "extend": { "name": "minus_button", "namespace": "realms_allowlist" } }, "member_settings/horizontal_space": { "file": "ui/realms_allowlist.json", "type": "panel" }, "member_settings/member_permissions": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "extend": { "name": "permissions_dropdown", "namespace": "realms_allowlist" } }, "member_settings/op_deop_button": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "op_deop_button", "namespace": "realms_allowlist" } }, "right_controls_panel": { "file": "ui/realms_allowlist.json", "type": "panel", "children": [ "right_settings_panel", "uninvited_friends_invite_button" ] }, "right_controls_panel/right_settings_panel": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "extend": { "name": "right_settings_panel", "namespace": "realms_allowlist" } }, "right_controls_panel/uninvited_friends_invite_button": { "file": "ui/realms_allowlist.json", "type": "button", "extend": { "name": "invite_button", "namespace": "realms_allowlist" } }, "player_status_panel": { "file": "ui/realms_allowlist.json", "type": "panel", "children": [ "player_online_icon", "player_offline_icon" ] }, "player_status_panel/player_online_icon": { "file": "ui/realms_allowlist.json", "type": "image", "extend": { "name": "player_online_icon", "namespace": "realms_allowlist" } }, "player_status_panel/player_offline_icon": { "file": "ui/realms_allowlist.json", "type": "image", "extend": { "name": "player_offline_icon", "namespace": "realms_allowlist" } }, "permissions_dropdown": { "file": "ui/realms_allowlist.json", "type": "stack_panel", "children": [ "vertical_space", "option_dropdown_permissions" ] }, "permissions_dropdown/vertical_space": { "file": "ui/realms_allowlist.json", "type": "panel" }, "permissions_dropdown/option_dropdown_permissions": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "invite_button": { "file": "ui/realms_allowlist.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "minus_button": { "file": "ui/realms_allowlist.json", "type": "button", "extend": { "name": "light_glyph_button", "namespace": "common_buttons" } }, "unblock_label": { "file": "ui/realms_allowlist.json", "type": "label" }, "unblock_button": { "file": "ui/realms_allowlist.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "op_deop_button": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "light_image_toggle_collection", "namespace": "common_toggles" } }, "find_friends_button": { "file": "ui/realms_allowlist.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "black_border": { "file": "ui/realms_allowlist.json", "type": "image" }, "gamer_pic": { "file": "ui/realms_allowlist.json", "type": "custom" }, "third_party_profile_picture": { "file": "ui/realms_allowlist.json", "type": "image" }, "player_online_icon": { "file": "ui/realms_allowlist.json", "type": "image" }, "player_offline_icon": { "file": "ui/realms_allowlist.json", "type": "image" }, "plus_icon": { "file": "ui/realms_allowlist.json", "type": "image" }, "more_icon": { "file": "ui/realms_allowlist.json", "type": "image" }, "share_icon": { "file": "ui/realms_allowlist.json", "type": "image" }, "minus_icon": { "file": "ui/realms_allowlist.json", "type": "image" }, "op_icon": { "file": "ui/realms_allowlist.json", "type": "image" }, "deop_icon": { "file": "ui/realms_allowlist.json", "type": "image" }, "player_filter_text_box": { "file": "ui/realms_allowlist.json", "type": "edit_box", "extend": { "name": "text_edit_box", "namespace": "common" } }, "page_panel": { "file": "ui/realms_allowlist.json", "type": "panel", "children": [ "prev_button", "page_text", "next_button" ] }, "page_panel/prev_button": { "file": "ui/realms_allowlist.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "page_panel/page_text": { "file": "ui/realms_allowlist.json", "type": "label" }, "page_panel/next_button": { "file": "ui/realms_allowlist.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "realms_allowlist_panel_content": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "realms_allowlist_content_panel": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "main_panel_one_button", "namespace": "common_dialogs" } }, "realms_allowlist_content_panel_children": { "file": "ui/realms_allowlist.json", "type": "panel", "children": [ "realms_allowlist_panel_content", "done_button" ] }, "realms_allowlist_content_panel_children/realms_allowlist_panel_content": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "realms_allowlist_panel_content", "namespace": "realms_allowlist" } }, "realms_allowlist_content_panel_children/done_button": { "file": "ui/realms_allowlist.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "realms_allowlist_screen": { "file": "ui/realms_allowlist.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "realms_allowlist_content": { "file": "ui/realms_allowlist.json", "type": "panel", "children": [ "root_panel" ] }, "realms_allowlist_content/root_panel": { "file": "ui/realms_allowlist.json", "type": "input_panel", "children": [ "realms_allowlist_content_panel" ] }, "realms_allowlist_content/root_panel/realms_allowlist_content_panel": { "file": "ui/realms_allowlist.json", "type": "panel", "extend": { "name": "realms_allowlist_content_panel", "namespace": "realms_allowlist" } }, "transparent_close_button": { "file": "ui/realms_allowlist.json", "type": "button", "extend": { "name": "transparent_content_button", "namespace": "common_buttons" } } }, "realms_invite_link_settings": { "generic_section_wrapper": { "file": "ui/realms_invite_link_settings_screen.json", "type": "panel", "children": [ "generic_section" ] }, "generic_section_wrapper/generic_section": { "file": "ui/realms_invite_link_settings_screen.json", "type": "stack_panel", "extend": { "name": "generic_section", "namespace": "realms_settings" } }, "link_banner": { "file": "ui/realms_invite_link_settings_screen.json", "type": "image" }, "clipboard_icon": { "file": "ui/realms_invite_link_settings_screen.json", "type": "image" }, "description_wrap": { "file": "ui/realms_invite_link_settings_screen.json", "type": "panel", "children": [ "description" ] }, "description_wrap/description": { "file": "ui/realms_invite_link_settings_screen.json", "type": "label", "extend": { "name": "label_text", "namespace": "realms_settings" } }, "invite_link_url": { "file": "ui/realms_invite_link_settings_screen.json", "type": "label", "extend": { "name": "label_text", "namespace": "realms_settings" } }, "link_panel": { "file": "ui/realms_invite_link_settings_screen.json", "type": "image", "extend": { "name": "link_banner", "namespace": "realms_invite_link_settings" }, "children": [ "invite_link_url_wrapper", "link_copy_container" ] }, "link_panel/invite_link_url_wrapper": { "file": "ui/realms_invite_link_settings_screen.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "link_panel/link_copy_container": { "file": "ui/realms_invite_link_settings_screen.json", "type": "panel", "children": [ "link_copy" ] }, "link_panel/link_copy_container/link_copy": { "file": "ui/realms_invite_link_settings_screen.json", "type": "button", "extend": { "name": "transparent_content_button", "namespace": "common_buttons" } }, "general_content": { "file": "ui/realms_invite_link_settings_screen.json", "type": "stack_panel", "children": [ "spacing_gap_0", "invite_link_title", "invite_link_description", "spacing_gap_1", "link_panel", "spacing_gap_2", "activate_link_toggle", "activate_link_description", "spacing_gap_3", "infinite_link_toggle", "spacing_gap_4", "share_link_title", "share_link_description", "spacing_gap_5", "share_link_button", "spacing_gap_6", "remove_link_title", "remove_invite_link_button" ] }, "general_content/spacing_gap_0": { "file": "ui/realms_invite_link_settings_screen.json", "type": "panel" }, "general_content/invite_link_title": { "file": "ui/realms_invite_link_settings_screen.json", "type": "label", "extend": { "name": "label_text", "namespace": "realms_settings" } }, "general_content/invite_link_description": { "file": "ui/realms_invite_link_settings_screen.json", "type": "panel", "extend": { "name": "description_wrap", "namespace": "realms_invite_link_settings" } }, "general_content/spacing_gap_1": { "file": "ui/realms_invite_link_settings_screen.json", "type": "panel" }, "general_content/link_panel": { "file": "ui/realms_invite_link_settings_screen.json", "type": "image", "extend": { "name": "link_panel", "namespace": "realms_invite_link_settings" } }, "general_content/spacing_gap_2": { "file": "ui/realms_invite_link_settings_screen.json", "type": "panel" }, "general_content/activate_link_toggle": { "file": "ui/realms_invite_link_settings_screen.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "general_content/activate_link_description": { "file": "ui/realms_invite_link_settings_screen.json", "type": "panel", "extend": { "name": "description_wrap", "namespace": "realms_invite_link_settings" } }, "general_content/spacing_gap_3": { "file": "ui/realms_invite_link_settings_screen.json", "type": "panel" }, "general_content/infinite_link_toggle": { "file": "ui/realms_invite_link_settings_screen.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "general_content/spacing_gap_4": { "file": "ui/realms_invite_link_settings_screen.json", "type": "panel" }, "general_content/share_link_title": { "file": "ui/realms_invite_link_settings_screen.json", "type": "label", "extend": { "name": "label_text", "namespace": "realms_settings" } }, "general_content/share_link_description": { "file": "ui/realms_invite_link_settings_screen.json", "type": "panel", "extend": { "name": "description_wrap", "namespace": "realms_invite_link_settings" } }, "general_content/spacing_gap_5": { "file": "ui/realms_invite_link_settings_screen.json", "type": "panel" }, "general_content/share_link_button": { "file": "ui/realms_invite_link_settings_screen.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "general_content/spacing_gap_6": { "file": "ui/realms_invite_link_settings_screen.json", "type": "panel" }, "general_content/remove_link_title": { "file": "ui/realms_invite_link_settings_screen.json", "type": "label", "extend": { "name": "label_text", "namespace": "realms_settings" } }, "general_content/remove_invite_link_button": { "file": "ui/realms_invite_link_settings_screen.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "invite_link_expiration": { "file": "ui/realms_invite_link_settings_screen.json", "type": "label", "extend": { "name": "label_text", "namespace": "realms_settings" } }, "advanced_content": { "file": "ui/realms_invite_link_settings_screen.json", "type": "stack_panel", "children": [ "spacing_gap_0", "expiry_title", "spacing_gap_1", "expiration_description", "spacing_gap_2", "expiration_panel", "expiration_dropdown" ] }, "advanced_content/spacing_gap_0": { "file": "ui/realms_invite_link_settings_screen.json", "type": "panel" }, "advanced_content/expiry_title": { "file": "ui/realms_invite_link_settings_screen.json", "type": "label", "extend": { "name": "label_text", "namespace": "realms_settings" } }, "advanced_content/spacing_gap_1": { "file": "ui/realms_invite_link_settings_screen.json", "type": "panel" }, "advanced_content/expiration_description": { "file": "ui/realms_invite_link_settings_screen.json", "type": "panel", "extend": { "name": "description_wrap", "namespace": "realms_invite_link_settings" } }, "advanced_content/spacing_gap_2": { "file": "ui/realms_invite_link_settings_screen.json", "type": "panel" }, "advanced_content/expiration_panel": { "file": "ui/realms_invite_link_settings_screen.json", "type": "image", "extend": { "name": "link_banner", "namespace": "realms_invite_link_settings" }, "children": [ "invite_link_expiration_wrapper" ] }, "advanced_content/expiration_panel/invite_link_expiration_wrapper": { "file": "ui/realms_invite_link_settings_screen.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "advanced_content/expiration_dropdown": { "file": "ui/realms_invite_link_settings_screen.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "expiration_dropdown_content": { "file": "ui/realms_invite_link_settings_screen.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "selector_panel": { "file": "ui/realms_invite_link_settings_screen.json", "type": "stack_panel", "children": [ "spacing_gap_0", "general_button", "advanced_button" ] }, "selector_panel/spacing_gap_0": { "file": "ui/realms_invite_link_settings_screen.json", "type": "panel" }, "selector_panel/general_button": { "file": "ui/realms_invite_link_settings_screen.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "settings_common" } }, "selector_panel/advanced_button": { "file": "ui/realms_invite_link_settings_screen.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "settings_common" } }, "section_content_panels": { "file": "ui/realms_invite_link_settings_screen.json", "type": "panel", "children": [ "general_section", "advanced_section" ] }, "section_content_panels/general_section": { "file": "ui/realms_invite_link_settings_screen.json", "type": "panel", "extend": { "name": "generic_section_wrapper", "namespace": "realms_invite_link_settings" } }, "section_content_panels/advanced_section": { "file": "ui/realms_invite_link_settings_screen.json", "type": "panel", "extend": { "name": "generic_section_wrapper", "namespace": "realms_invite_link_settings" } } }, "realms_plus_ended": { "subscription_ended_screen": { "file": "ui/realms_plus_ended_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "subscription_ended_screen_content": { "file": "ui/realms_plus_ended_screen.json", "type": "panel", "children": [ "root_panel" ] }, "subscription_ended_screen_content/root_panel": { "file": "ui/realms_plus_ended_screen.json", "type": "panel", "children": [ "gamepad_helpers", "main_panel" ] }, "subscription_ended_screen_content/root_panel/gamepad_helpers": { "file": "ui/realms_plus_ended_screen.json", "type": "panel", "extend": { "name": "gamepad_helpers", "namespace": "realms_plus_ended" } }, "subscription_ended_screen_content/root_panel/main_panel": { "file": "ui/realms_plus_ended_screen.json", "type": "input_panel", "extend": { "name": "main_panel", "namespace": "realms_plus_ended" } }, "main_panel": { "file": "ui/realms_plus_ended_screen.json", "type": "input_panel", "children": [ "dialog" ] }, "main_panel/dialog": { "file": "ui/realms_plus_ended_screen.json", "type": "panel", "extend": { "name": "main_panel_no_buttons", "namespace": "common_dialogs" } }, "gamepad_helpers": { "file": "ui/realms_plus_ended_screen.json", "type": "panel", "children": [ "gamepad_helper_a" ] }, "gamepad_helpers/gamepad_helper_a": { "file": "ui/realms_plus_ended_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_a", "namespace": "common" } }, "content_stack_panel": { "file": "ui/realms_plus_ended_screen.json", "type": "stack_panel", "children": [ "pad_0", "main_content", "pad_1", "button_center_panel", "pad_2" ] }, "content_stack_panel/pad_0": { "file": "ui/realms_plus_ended_screen.json", "type": "panel" }, "content_stack_panel/main_content": { "file": "ui/realms_plus_ended_screen.json", "type": "panel", "extend": { "name": "main_content_panel", "namespace": "realms_plus_ended" } }, "content_stack_panel/pad_1": { "file": "ui/realms_plus_ended_screen.json", "type": "panel" }, "content_stack_panel/button_center_panel": { "file": "ui/realms_plus_ended_screen.json", "type": "panel", "children": [ "buttons" ] }, "content_stack_panel/button_center_panel/buttons": { "file": "ui/realms_plus_ended_screen.json", "type": "stack_panel", "extend": { "name": "buttons_panel", "namespace": "realms_plus_ended" } }, "content_stack_panel/pad_2": { "file": "ui/realms_plus_ended_screen.json", "type": "panel" }, "main_content_panel": { "file": "ui/realms_plus_ended_screen.json", "type": "panel", "children": [ "main_content_stack_panel" ] }, "main_content_panel/main_content_stack_panel": { "file": "ui/realms_plus_ended_screen.json", "type": "stack_panel", "children": [ "image_panel", "pad", "text_panel" ] }, "main_content_panel/main_content_stack_panel/image_panel": { "file": "ui/realms_plus_ended_screen.json", "type": "panel", "extend": { "name": "service_repo_image_panel", "namespace": "common" } }, "main_content_panel/main_content_stack_panel/pad": { "file": "ui/realms_plus_ended_screen.json", "type": "panel" }, "main_content_panel/main_content_stack_panel/text_panel": { "file": "ui/realms_plus_ended_screen.json", "type": "panel", "children": [ "text" ] }, "main_content_panel/main_content_stack_panel/text_panel/text": { "file": "ui/realms_plus_ended_screen.json", "type": "label" }, "buttons_panel": { "file": "ui/realms_plus_ended_screen.json", "type": "stack_panel", "children": [ "more_info_button", "pad", "renew_subscription_button" ] }, "buttons_panel/more_info_button": { "file": "ui/realms_plus_ended_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "buttons_panel/pad": { "file": "ui/realms_plus_ended_screen.json", "type": "panel" }, "buttons_panel/renew_subscription_button": { "file": "ui/realms_plus_ended_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } } }, "realmsPlus": { "realms_plus_pdp_screen": { "file": "ui/realmsPlus_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "realms_plus_upgrade_notice_screen": { "file": "ui/realmsPlus_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "purple_background": { "file": "ui/realmsPlus_screen.json", "type": "image", "children": [ "bottom_left_particles", "top_right_particles" ] }, "purple_background/bottom_left_particles": { "file": "ui/realmsPlus_screen.json", "type": "image" }, "purple_background/top_right_particles": { "file": "ui/realmsPlus_screen.json", "type": "image" }, "main_background": { "file": "ui/realmsPlus_screen.json", "type": "panel", "children": [ "dark_blue", "grey_gradient" ] }, "main_background/dark_blue": { "file": "ui/realmsPlus_screen.json", "type": "image", "extend": { "name": "dark_blue_background", "namespace": "realmsPlus" } }, "main_background/grey_gradient": { "file": "ui/realmsPlus_screen.json", "type": "image", "extend": { "name": "csb_background", "namespace": "csb" } }, "dark_blue_background": { "file": "ui/realmsPlus_screen.json", "type": "image" }, "gradient_image_stack": { "file": "ui/realmsPlus_screen.json", "type": "stack_panel", "children": [ "solid_pink", "gradient" ] }, "gradient_image_stack/solid_pink": { "file": "ui/realmsPlus_screen.json", "type": "image" }, "gradient_image_stack/gradient": { "file": "ui/realmsPlus_screen.json", "type": "image" }, "gradient_content_panel": { "file": "ui/realmsPlus_screen.json", "type": "panel", "children": [ "gradient", "content_panel" ] }, "gradient_content_panel/gradient": { "file": "ui/realmsPlus_screen.json", "type": "stack_panel", "extend": { "name": "gradient_image_stack", "namespace": "realmsPlus" } }, "gradient_content_panel/content_panel": { "file": "ui/realmsPlus_screen.json", "type": "unknown" }, "realmsPlus_screen_main_panel": { "file": "ui/realmsPlus_screen.json", "type": "input_panel", "extend": { "name": "sidebar_view", "namespace": "sidebar_navigation" } }, "realmsPlus_main_panel": { "file": "ui/realmsPlus_screen.json", "type": "panel", "children": [ "root_panel", "popup_dialog_factory" ] }, "realmsPlus_main_panel/root_panel": { "file": "ui/realmsPlus_screen.json", "type": "panel", "children": [ "main_panel" ] }, "realmsPlus_main_panel/root_panel/main_panel": { "file": "ui/realmsPlus_screen.json", "type": "stack_panel", "extend": { "name": "store_header_with_coins", "namespace": "common_store" } }, "realmsPlus_main_panel/popup_dialog_factory": { "file": "ui/realmsPlus_screen.json", "type": "factory" }, "dialog_content": { "file": "ui/realmsPlus_screen.json", "type": "panel", "children": [ "selector_area", "content_area", "left_right_pane_divider" ] }, "dialog_content/selector_area": { "file": "ui/realmsPlus_screen.json", "type": "panel", "extend": { "name": "selector_area", "namespace": "realmsPlus" } }, "dialog_content/content_area": { "file": "ui/realmsPlus_screen.json", "type": "panel", "extend": { "name": "content_area", "namespace": "realmsPlus" } }, "dialog_content/left_right_pane_divider": { "file": "ui/realmsPlus_screen.json", "type": "image", "extend": { "name": "left_right_pane_divider", "namespace": "realmsPlus" } }, "selector_area": { "file": "ui/realmsPlus_screen.json", "type": "panel", "children": [ "scrolling_panel" ] }, "selector_area/scrolling_panel": { "file": "ui/realmsPlus_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "scrollable_selector_area_content": { "file": "ui/realmsPlus_screen.json", "type": "stack_panel", "children": [ "realmsPlus_toggle", "content_toggle", "faq_toggle", "toggle_section_divider", "buy_now_toggle", "xbl_btn_panel", "focus_reset_input_panel" ] }, "scrollable_selector_area_content/realmsPlus_toggle": { "file": "ui/realmsPlus_screen.json", "type": "stack_panel", "extend": { "name": "realmsPlus_toggle", "namespace": "realmsPlus" } }, "scrollable_selector_area_content/content_toggle": { "file": "ui/realmsPlus_screen.json", "type": "stack_panel", "extend": { "name": "content_toggle", "namespace": "realmsPlus" } }, "scrollable_selector_area_content/faq_toggle": { "file": "ui/realmsPlus_screen.json", "type": "stack_panel", "extend": { "name": "faq_toggle", "namespace": "realmsPlus" } }, "scrollable_selector_area_content/toggle_section_divider": { "file": "ui/realmsPlus_screen.json", "type": "stack_panel", "extend": { "name": "section_divider", "namespace": "common" } }, "scrollable_selector_area_content/buy_now_toggle": { "file": "ui/realmsPlus_screen.json", "type": "stack_panel", "extend": { "name": "buy_now_toggle", "namespace": "realmsPlus" } }, "scrollable_selector_area_content/xbl_btn_panel": { "file": "ui/realmsPlus_screen.json", "type": "panel", "children": [ "xbl_btn" ] }, "scrollable_selector_area_content/xbl_btn_panel/xbl_btn": { "file": "ui/realmsPlus_screen.json", "type": "button", "extend": { "name": "dark_text_button", "namespace": "common_buttons" } }, "scrollable_selector_area_content/focus_reset_input_panel": { "file": "ui/realmsPlus_screen.json", "type": "input_panel" }, "section_toggle_base": { "file": "ui/realmsPlus_screen.json", "type": "panel", "extend": { "name": "light_text_toggle_collection", "namespace": "common_toggles" } }, "tab_button_text": { "file": "ui/realmsPlus_screen.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "toggle_base": { "file": "ui/realmsPlus_screen.json", "type": "stack_panel", "children": [ "toggle", "padding" ] }, "toggle_base/toggle": { "file": "ui/realmsPlus_screen.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "realmsPlus" } }, "toggle_base/padding": { "file": "ui/realmsPlus_screen.json", "type": "panel" }, "realmsPlus_toggle": { "file": "ui/realmsPlus_screen.json", "type": "stack_panel", "extend": { "name": "toggle_base", "namespace": "realmsPlus" } }, "content_toggle": { "file": "ui/realmsPlus_screen.json", "type": "stack_panel", "extend": { "name": "toggle_base", "namespace": "realmsPlus" } }, "faq_toggle": { "file": "ui/realmsPlus_screen.json", "type": "stack_panel", "extend": { "name": "toggle_base", "namespace": "realmsPlus" } }, "buy_now_toggle": { "file": "ui/realmsPlus_screen.json", "type": "stack_panel", "extend": { "name": "toggle_base", "namespace": "realmsPlus" } }, "left_right_pane_divider": { "file": "ui/realmsPlus_screen.json", "type": "image" }, "content_area": { "file": "ui/realmsPlus_screen.json", "type": "panel", "children": [ "control" ] }, "content_area/control": { "file": "ui/realmsPlus_screen.json", "type": "stack_panel", "children": [ "scrolling_panel" ] }, "content_area/control/scrolling_panel": { "file": "ui/realmsPlus_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "section_content_panels": { "file": "ui/realmsPlus_screen.json", "type": "stack_panel" }, "content_section_top_padding": { "file": "ui/realmsPlus_screen.json", "type": "panel" }, "section_base": { "file": "ui/realmsPlus_screen.json", "type": "stack_panel" }, "buy_now_content_section": { "file": "ui/realmsPlus_screen.json", "type": "stack_panel", "extend": { "name": "section_base", "namespace": "realmsPlus" }, "children": [ "content_section_top_padding", "content" ] }, "buy_now_content_section/content_section_top_padding": { "file": "ui/realmsPlus_screen.json", "type": "panel", "extend": { "name": "content_section_top_padding", "namespace": "realmsPlus" } }, "buy_now_content_section/content": { "file": "ui/realmsPlus_screen.json", "type": "stack_panel", "extend": { "name": "buy_now_content", "namespace": "realmsPlus_buy" } }, "markdown_background_animated": { "file": "ui/realmsPlus_screen.json", "type": "panel", "children": [ "realms_banner", "realms_plus_normal", "realms_plus_hover" ] }, "markdown_background_animated/realms_banner": { "file": "ui/realmsPlus_screen.json", "type": "stack_panel", "extend": { "name": "markdown_background", "namespace": "realmsPlus" } }, "markdown_background_animated/realms_plus_normal": { "file": "ui/realmsPlus_screen.json", "type": "image" }, "markdown_background_animated/realms_plus_hover": { "file": "ui/realmsPlus_screen.json", "type": "image" }, "markdown_background": { "file": "ui/realmsPlus_screen.json", "type": "stack_panel", "children": [ "banner_panel", "triangle_panel" ] }, "markdown_background/banner_panel": { "file": "ui/realmsPlus_screen.json", "type": "panel", "children": [ "banner" ] }, "markdown_background/banner_panel/banner": { "file": "ui/realmsPlus_screen.json", "type": "image", "extend": { "name": "markdown_banner", "namespace": "common_store" }, "children": [ "banner_stack_panel" ] }, "markdown_background/banner_panel/banner/banner_stack_panel": { "file": "ui/realmsPlus_screen.json", "type": "stack_panel", "children": [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ] }, "markdown_background/banner_panel/banner/banner_stack_panel/0": { "file": "ui/realmsPlus_screen.json", "type": "unknown" }, "markdown_background/triangle_panel": { "file": "ui/realmsPlus_screen.json", "type": "panel", "children": [ "triangle" ] }, "markdown_background/triangle_panel/triangle": { "file": "ui/realmsPlus_screen.json", "type": "image", "extend": { "name": "markdown_triangle", "namespace": "common_store" } }, "empty_label": { "file": "ui/realmsPlus_screen.json", "type": "panel" }, "full_width_section_divider": { "file": "ui/realmsPlus_screen.json", "type": "stack_panel", "extend": { "name": "section_divider", "namespace": "common" } } }, "realmsPlus_content": { "realmsPlus_content_section": { "file": "ui/realmsPlus_sections/content_section.json", "type": "stack_panel", "extend": { "name": "section_base", "namespace": "realmsPlus" }, "children": [ "content_section_top_padding", "content_sections", "content_section_bottom_padding" ] }, "realmsPlus_content_section/content_section_top_padding": { "file": "ui/realmsPlus_sections/content_section.json", "type": "panel", "extend": { "name": "content_section_top_padding", "namespace": "realmsPlus" } }, "realmsPlus_content_section/content_sections": { "file": "ui/realmsPlus_sections/content_section.json", "type": "stack_panel" }, "realmsPlus_content_section/content_section_bottom_padding": { "file": "ui/realmsPlus_sections/content_section.json", "type": "panel", "extend": { "name": "content_section_top_padding", "namespace": "realmsPlus" } }, "content_pack_types_section": { "file": "ui/realmsPlus_sections/content_section.json", "type": "stack_panel", "children": [ "includes_marketplace_pass_wrapper", "padding_contentSub", "pack_types_wrapper" ] }, "content_pack_types_section/includes_marketplace_pass_wrapper": { "file": "ui/realmsPlus_sections/content_section.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "content_pack_types_section/padding_contentSub": { "file": "ui/realmsPlus_sections/content_section.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "content_pack_types_section/pack_types_wrapper": { "file": "ui/realmsPlus_sections/content_section.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "content_packs_included_section": { "file": "ui/realmsPlus_sections/content_section.json", "type": "stack_panel", "children": [ "popular_packs", "section_divider" ] }, "content_packs_included_section/popular_packs": { "file": "ui/realmsPlus_sections/content_section.json", "type": "stack_panel", "extend": { "name": "popular_packs", "namespace": "realmsPlus_content" } }, "content_packs_included_section/section_divider": { "file": "ui/realmsPlus_sections/content_section.json", "type": "stack_panel", "extend": { "name": "full_width_section_divider", "namespace": "realmsPlus" } }, "persona_row": { "file": "ui/realmsPlus_sections/content_section.json", "type": "panel", "extend": { "name": "pack_type_row_panel", "namespace": "realmsPlus_content" }, "children": [ "persona" ] }, "persona_row/persona": { "file": "ui/realmsPlus_sections/content_section.json", "type": "stack_panel", "extend": { "name": "pack_type_description", "namespace": "realmsPlus_content" } }, "worlds_row": { "file": "ui/realmsPlus_sections/content_section.json", "type": "stack_panel", "extend": { "name": "pack_type_description", "namespace": "realmsPlus_content" } }, "pack_types": { "file": "ui/realmsPlus_sections/content_section.json", "type": "stack_panel", "children": [ "middle_row", "bottom_row", "bottom_contentSub" ] }, "pack_types/middle_row": { "file": "ui/realmsPlus_sections/content_section.json", "type": "panel", "extend": { "name": "pack_type_row_panel", "namespace": "realmsPlus_content" }, "children": [ "worlds_contentSub", "textures" ] }, "pack_types/middle_row/worlds_contentSub": { "file": "ui/realmsPlus_sections/content_section.json", "type": "stack_panel", "extend": { "name": "worlds_row", "namespace": "realmsPlus_content" } }, "pack_types/middle_row/textures": { "file": "ui/realmsPlus_sections/content_section.json", "type": "stack_panel", "extend": { "name": "pack_type_description", "namespace": "realmsPlus_content" } }, "pack_types/bottom_row": { "file": "ui/realmsPlus_sections/content_section.json", "type": "panel", "extend": { "name": "pack_type_row_panel", "namespace": "realmsPlus_content" }, "children": [ "skins_persona_contentSub", "mashups" ] }, "pack_types/bottom_row/skins_persona_contentSub": { "file": "ui/realmsPlus_sections/content_section.json", "type": "stack_panel", "extend": { "name": "skins", "namespace": "realmsPlus_content" } }, "pack_types/bottom_row/mashups": { "file": "ui/realmsPlus_sections/content_section.json", "type": "stack_panel", "extend": { "name": "pack_type_description", "namespace": "realmsPlus_content" } }, "pack_types/bottom_contentSub": { "file": "ui/realmsPlus_sections/content_section.json", "type": "panel", "extend": { "name": "persona_row", "namespace": "realmsPlus_content" } }, "skins": { "file": "ui/realmsPlus_sections/content_section.json", "type": "stack_panel", "extend": { "name": "pack_type_description", "namespace": "realmsPlus_content" } }, "friends_get_access": { "file": "ui/realmsPlus_sections/content_section.json", "type": "label" }, "pack_type_row_panel": { "file": "ui/realmsPlus_sections/content_section.json", "type": "panel" }, "pack_type_description": { "file": "ui/realmsPlus_sections/content_section.json", "type": "stack_panel", "children": [ "image_nesting_panel", "padding_0", "description_nesting_panel" ] }, "pack_type_description/image_nesting_panel": { "file": "ui/realmsPlus_sections/content_section.json", "type": "panel", "children": [ "texture" ] }, "pack_type_description/image_nesting_panel/texture": { "file": "ui/realmsPlus_sections/content_section.json", "type": "unknown" }, "pack_type_description/padding_0": { "file": "ui/realmsPlus_sections/content_section.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "pack_type_description/description_nesting_panel": { "file": "ui/realmsPlus_sections/content_section.json", "type": "panel", "children": [ "description_label" ] }, "pack_type_description/description_nesting_panel/description_label": { "file": "ui/realmsPlus_sections/content_section.json", "type": "label" }, "popular_packs": { "file": "ui/realmsPlus_sections/content_section.json", "type": "stack_panel", "children": [ "padding_0", "pack_grid", "view_all_packs_panel", "padding_1", "view_character_creator_items_button", "padding_2" ] }, "popular_packs/padding_0": { "file": "ui/realmsPlus_sections/content_section.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "popular_packs/pack_grid": { "file": "ui/realmsPlus_sections/content_section.json", "type": "stack_panel", "extend": { "name": "packs_collection", "namespace": "realmsPlus_content" } }, "popular_packs/view_all_packs_panel": { "file": "ui/realmsPlus_sections/content_section.json", "type": "panel", "children": [ "view_all_packs_button" ] }, "popular_packs/view_all_packs_panel/view_all_packs_button": { "file": "ui/realmsPlus_sections/content_section.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "popular_packs/padding_1": { "file": "ui/realmsPlus_sections/content_section.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "popular_packs/view_character_creator_items_button": { "file": "ui/realmsPlus_sections/content_section.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "popular_packs/padding_2": { "file": "ui/realmsPlus_sections/content_section.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "popular_packs_label": { "file": "ui/realmsPlus_sections/content_section.json", "type": "label" }, "includes_marketplace_pass": { "file": "ui/realmsPlus_sections/content_section.json", "type": "panel", "extend": { "name": "gradient_content_panel", "namespace": "csb" } }, "includes_marketplace_pass_label": { "file": "ui/realmsPlus_sections/content_section.json", "type": "label" }, "packs_collection": { "file": "ui/realmsPlus_sections/content_section.json", "type": "stack_panel", "children": [ "row_1", "padding_1", "row_2", "padding_2" ] }, "packs_collection/row_1": { "file": "ui/realmsPlus_sections/content_section.json", "type": "stack_panel", "children": [ "pack_image_grid_item_0", "padding", "pack_image_grid_item_1" ] }, "packs_collection/row_1/pack_image_grid_item_0": { "file": "ui/realmsPlus_sections/content_section.json", "type": "panel", "extend": { "name": "pack_image_grid_item", "namespace": "realmsPlus_content" } }, "packs_collection/row_1/padding": { "file": "ui/realmsPlus_sections/content_section.json", "type": "panel" }, "packs_collection/row_1/pack_image_grid_item_1": { "file": "ui/realmsPlus_sections/content_section.json", "type": "panel", "extend": { "name": "pack_image_grid_item", "namespace": "realmsPlus_content" } }, "packs_collection/padding_1": { "file": "ui/realmsPlus_sections/content_section.json", "type": "panel" }, "packs_collection/row_2": { "file": "ui/realmsPlus_sections/content_section.json", "type": "stack_panel", "children": [ "pack_image_grid_item_0", "padding", "pack_image_grid_item_1" ] }, "packs_collection/row_2/pack_image_grid_item_0": { "file": "ui/realmsPlus_sections/content_section.json", "type": "panel", "extend": { "name": "pack_image_grid_item", "namespace": "realmsPlus_content" } }, "packs_collection/row_2/padding": { "file": "ui/realmsPlus_sections/content_section.json", "type": "panel" }, "packs_collection/row_2/pack_image_grid_item_1": { "file": "ui/realmsPlus_sections/content_section.json", "type": "panel", "extend": { "name": "pack_image_grid_item", "namespace": "realmsPlus_content" } }, "packs_collection/padding_2": { "file": "ui/realmsPlus_sections/content_section.json", "type": "panel" }, "pack_image_grid_item": { "file": "ui/realmsPlus_sections/content_section.json", "type": "panel", "children": [ "bg", "offer_button" ] }, "pack_image_grid_item/bg": { "file": "ui/realmsPlus_sections/content_section.json", "type": "image", "extend": { "name": "banner_fill", "namespace": "common_store" }, "children": [ "featured_key_art", "progress_loading" ] }, "pack_image_grid_item/bg/featured_key_art": { "file": "ui/realmsPlus_sections/content_section.json", "type": "image" }, "pack_image_grid_item/bg/progress_loading": { "file": "ui/realmsPlus_sections/content_section.json", "type": "panel", "extend": { "name": "progress_loading", "namespace": "common_store" } }, "pack_image_grid_item/offer_button": { "file": "ui/realmsPlus_sections/content_section.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed" ] }, "pack_image_grid_item/offer_button/default": { "file": "ui/realmsPlus_sections/content_section.json", "type": "image", "extend": { "name": "square_image_border_white", "namespace": "common" } }, "pack_image_grid_item/offer_button/hover": { "file": "ui/realmsPlus_sections/content_section.json", "type": "image", "extend": { "name": "square_image_border_white", "namespace": "common" } }, "pack_image_grid_item/offer_button/pressed": { "file": "ui/realmsPlus_sections/content_section.json", "type": "image", "extend": { "name": "square_image_border_white", "namespace": "common" } } }, "realmsPlus_faq": { "faq_image_section": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "panel", "extend": { "name": "service_repo_image_panel", "namespace": "common" } }, "faq_image_local": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "image" }, "faq_image_type": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "panel", "children": [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ] }, "faq_image_type/0": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "unknown" }, "faq_text_section_body": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "stack_panel" }, "faq_text_question": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "label" }, "faq_text_section": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "stack_panel", "extend": { "name": "faq_text_section_body", "namespace": "realmsPlus_faq" }, "children": [ "faq_text_question", "faq_text_answer" ] }, "faq_text_section/faq_text_question": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "label", "extend": { "name": "faq_text_question", "namespace": "realmsPlus_faq" } }, "faq_text_section/faq_text_answer": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "label" }, "faq_price_bound_text_section": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "stack_panel", "extend": { "name": "faq_text_section_body", "namespace": "realmsPlus_faq" }, "children": [ "faq_text_question", "faq_text_answer" ] }, "faq_price_bound_text_section/faq_text_question": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "label", "extend": { "name": "faq_text_question", "namespace": "realmsPlus_faq" } }, "faq_price_bound_text_section/faq_text_answer": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "label" }, "faq_question_body": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "stack_panel", "extend": { "name": "faq_question_body_stack", "namespace": "realmsPlus_faq" }, "children": [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ] }, "faq_question_body/0": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "unknown" }, "faq_question_body_stack": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "stack_panel" }, "faq_question_body_horz_padding": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "panel" }, "image_left_faq_question_body": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "button", "extend": { "name": "text_body_focus_border_for_controller_button", "namespace": "common_buttons" } }, "image_right_faq_question_body": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "button", "extend": { "name": "text_body_focus_border_for_controller_button", "namespace": "common_buttons" } }, "image_left_faq_question_body_flip": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "panel", "children": [ "faq_question_left" ] }, "image_left_faq_question_body_flip/faq_question_left": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "button", "extend": { "name": "image_left_faq_question_body", "namespace": "realmsPlus_faq" } }, "image_right_faq_question_body_flip": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "panel", "children": [ "faq_question_right" ] }, "image_right_faq_question_body_flip/faq_question_right": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "button", "extend": { "name": "image_right_faq_question_body", "namespace": "realmsPlus_faq" } }, "image_left_faq_price_bound": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "button", "extend": { "name": "text_body_focus_border_for_controller_button", "namespace": "common_buttons" } }, "faq_section_header_space": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "panel" }, "faq_section_divider": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "stack_panel", "extend": { "name": "section_divider", "namespace": "common" } }, "faq_content_section": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "stack_panel", "extend": { "name": "section_base", "namespace": "realmsPlus" }, "children": [ "content_section_top_padding_1", "faq_header", "content_section_top_padding_2", "faq_question_1", "faq_question_1_divider", "faq_question_2", "faq_question_2_divider", "faq_question_3", "faq_question_3_divider", "faq_question_4", "faq_question_4_divider", "faq_question_5", "faq_question_5_divider", "faq_question_6", "faq_question_6_divider", "faq_question_7", "faq_question_7_divider", "faq_question_8", "faq_question_8_divider", "faq_question_9", "faq_question_9_divider", "faq_question_10", "faq_question_10_divider", "faq_question_11", "content_section_top_padding_3" ] }, "faq_content_section/content_section_top_padding_1": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "panel", "extend": { "name": "content_section_top_padding", "namespace": "realmsPlus" } }, "faq_content_section/faq_header": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "label" }, "faq_content_section/content_section_top_padding_2": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "panel", "extend": { "name": "faq_section_header_space", "namespace": "realmsPlus_faq" } }, "faq_content_section/faq_question_1": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "button", "extend": { "name": "image_left_faq_question_body", "namespace": "realmsPlus_faq" } }, "faq_content_section/faq_question_1_divider": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "stack_panel", "extend": { "name": "faq_section_divider", "namespace": "realmsPlus_faq" } }, "faq_content_section/faq_question_2": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "button", "extend": { "name": "image_right_faq_question_body", "namespace": "realmsPlus_faq" } }, "faq_content_section/faq_question_2_divider": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "stack_panel", "extend": { "name": "faq_section_divider", "namespace": "realmsPlus_faq" } }, "faq_content_section/faq_question_3": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "button", "extend": { "name": "image_left_faq_price_bound", "namespace": "realmsPlus_faq" } }, "faq_content_section/faq_question_3_divider": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "stack_panel", "extend": { "name": "faq_section_divider", "namespace": "realmsPlus_faq" } }, "faq_content_section/faq_question_4": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "button", "extend": { "name": "image_right_faq_question_body", "namespace": "realmsPlus_faq" } }, "faq_content_section/faq_question_4_divider": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "stack_panel", "extend": { "name": "faq_section_divider", "namespace": "realmsPlus_faq" } }, "faq_content_section/faq_question_5": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "panel", "extend": { "name": "image_left_faq_question_body_flip", "namespace": "realmsPlus_faq" } }, "faq_content_section/faq_question_5_divider": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "stack_panel", "extend": { "name": "faq_section_divider", "namespace": "realmsPlus_faq" } }, "faq_content_section/faq_question_6": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "panel", "extend": { "name": "image_right_faq_question_body_flip", "namespace": "realmsPlus_faq" } }, "faq_content_section/faq_question_6_divider": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "stack_panel", "extend": { "name": "faq_section_divider", "namespace": "realmsPlus_faq" } }, "faq_content_section/faq_question_7": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "panel", "extend": { "name": "image_left_faq_question_body_flip", "namespace": "realmsPlus_faq" } }, "faq_content_section/faq_question_7_divider": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "stack_panel", "extend": { "name": "faq_section_divider", "namespace": "realmsPlus_faq" } }, "faq_content_section/faq_question_8": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "panel", "extend": { "name": "image_right_faq_question_body_flip", "namespace": "realmsPlus_faq" } }, "faq_content_section/faq_question_8_divider": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "stack_panel", "extend": { "name": "faq_section_divider", "namespace": "realmsPlus_faq" } }, "faq_content_section/faq_question_9": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "panel", "extend": { "name": "image_left_faq_question_body_flip", "namespace": "realmsPlus_faq" } }, "faq_content_section/faq_question_9_divider": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "stack_panel", "extend": { "name": "faq_section_divider", "namespace": "realmsPlus_faq" } }, "faq_content_section/faq_question_10": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "panel", "extend": { "name": "image_right_faq_question_body_flip", "namespace": "realmsPlus_faq" } }, "faq_content_section/faq_question_10_divider": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "stack_panel", "extend": { "name": "faq_section_divider", "namespace": "realmsPlus_faq" } }, "faq_content_section/faq_question_11": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "panel", "extend": { "name": "image_left_faq_question_body_flip", "namespace": "realmsPlus_faq" } }, "faq_content_section/content_section_top_padding_3": { "file": "ui/realmsPlus_sections/faq_section.json", "type": "panel", "extend": { "name": "content_section_top_padding", "namespace": "realmsPlus" } } }, "realmsPlus_landing": { "landing_content_section": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "section_base", "namespace": "realmsPlus" }, "children": [ "landing_content" ] }, "landing_content_section/landing_content": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "stack_panel", "children": [ "title_stack", "vertical_small_spacer_0", "divider_panel", "vertical_small_spacer_1", "info_stack", "vertical_small_spacer_2" ] }, "landing_content_section/landing_content/title_stack": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "title_stack", "namespace": "realmsPlus_landing" } }, "landing_content_section/landing_content/vertical_small_spacer_0": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "extend": { "name": "vertical_small_spacer", "namespace": "realmsPlus_landing" } }, "landing_content_section/landing_content/divider_panel": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "children": [ "section_divider" ] }, "landing_content_section/landing_content/divider_panel/section_divider": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "section_divider", "namespace": "common" } }, "landing_content_section/landing_content/vertical_small_spacer_1": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "extend": { "name": "vertical_small_spacer", "namespace": "realmsPlus_landing" } }, "landing_content_section/landing_content/info_stack": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "info_stack", "namespace": "realmsPlus_landing" } }, "landing_content_section/landing_content/vertical_small_spacer_2": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "extend": { "name": "vertical_small_spacer", "namespace": "realmsPlus_landing" } }, "horizontal_small_spacer": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel" }, "vertical_small_spacer": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel" }, "vertical_med_spacer": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel" }, "vertical_large_spacer": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel" }, "title_stack": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "stack_panel", "children": [ "title_image_panel", "gradient_panel", "vertical_space", "action_button", "sign_in_button", "vertical_space2" ] }, "title_stack/title_image_panel": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "extend": { "name": "title_image_panel", "namespace": "realmsPlus_landing" } }, "title_stack/gradient_panel": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "children": [ "label_with_gradient_wrapper" ] }, "title_stack/gradient_panel/label_with_gradient_wrapper": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "title_stack/vertical_space": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "extend": { "name": "vertical_small_spacer", "namespace": "realmsPlus_landing" } }, "title_stack/action_button": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "extend": { "name": "buy_button_panel", "namespace": "realmsPlus_buy" } }, "title_stack/sign_in_button": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "extend": { "name": "buy_button_panel", "namespace": "realmsPlus_buy" } }, "title_stack/vertical_space2": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "extend": { "name": "vertical_small_spacer", "namespace": "realmsPlus_landing" } }, "label_with_gradient": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "extend": { "name": "gradient_content_panel", "namespace": "realmsPlus" } }, "free_trial_text": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "label" }, "title_image_panel": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "children": [ "title_image_container", "title_image_pre_release_container" ] }, "title_image_panel/title_image_container": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "stack_panel", "children": [ "title_image", "title_art_image" ] }, "title_image_panel/title_image_container/title_image": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "image" }, "title_image_panel/title_image_container/title_art_image": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "image" }, "title_image_panel/title_image_pre_release_container": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "children": [ "title_image_pre_release" ] }, "title_image_panel/title_image_pre_release_container/title_image_pre_release": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "image" }, "info_stack": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "stack_panel", "children": [ "info_stack" ] }, "info_stack/info_stack": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "children": [ "info_description_stack_retail", "info_description_stack_preview" ] }, "info_stack/info_stack/info_description_stack_retail": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "info_description_stack_retail", "namespace": "realmsPlus_landing" } }, "info_stack/info_stack/info_description_stack_preview": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "extend": { "name": "info_description_stack_prerelease", "namespace": "realmsPlus_landing" } }, "info_description_stack_retail": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "stack_panel", "children": [ "info_section_stack_1", "vertical_med_spacer0", "divider_centering_panel", "vertical_med_spacer1", "info_section_stack_recently_added", "vertical_med_spacer2", "divider_centering_panel2", "vertical_med_spacer3", "info_section_stack_2" ] }, "info_description_stack_retail/info_section_stack_1": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "info_section_stack", "namespace": "realmsPlus_landing" }, "children": [ "horizontal_small_spacer", "info_section_text_1_wrapper" ] }, "info_description_stack_retail/info_section_stack_1/horizontal_small_spacer": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "extend": { "name": "horizontal_small_spacer", "namespace": "realmsPlus_landing" } }, "info_description_stack_retail/info_section_stack_1/info_section_text_1_wrapper": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "info_description_stack_retail/vertical_med_spacer0": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "extend": { "name": "vertical_med_spacer", "namespace": "realmsPlus_landing" } }, "info_description_stack_retail/divider_centering_panel": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "children": [ "divider" ] }, "info_description_stack_retail/divider_centering_panel/divider": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "section_divider", "namespace": "common" } }, "info_description_stack_retail/vertical_med_spacer1": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "extend": { "name": "vertical_med_spacer", "namespace": "realmsPlus_landing" } }, "info_description_stack_retail/info_section_stack_recently_added": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "info_section_stack", "namespace": "realmsPlus_landing" }, "children": [ "horizontal_small_spacer", "info_section_text_recently_added_wrapper" ] }, "info_description_stack_retail/info_section_stack_recently_added/horizontal_small_spacer": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "extend": { "name": "horizontal_small_spacer", "namespace": "realmsPlus_landing" } }, "info_description_stack_retail/info_section_stack_recently_added/info_section_text_recently_added_wrapper": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "info_description_stack_retail/vertical_med_spacer2": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "extend": { "name": "vertical_med_spacer", "namespace": "realmsPlus_landing" } }, "info_description_stack_retail/divider_centering_panel2": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "children": [ "divider2" ] }, "info_description_stack_retail/divider_centering_panel2/divider2": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "section_divider", "namespace": "common" } }, "info_description_stack_retail/vertical_med_spacer3": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "extend": { "name": "vertical_med_spacer", "namespace": "realmsPlus_landing" } }, "info_description_stack_retail/info_section_stack_2": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "info_section_stack", "namespace": "realmsPlus_landing" }, "children": [ "horizontal_small_spacer", "info_section_text_2_wrapper" ] }, "info_description_stack_retail/info_section_stack_2/horizontal_small_spacer": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "extend": { "name": "horizontal_small_spacer", "namespace": "realmsPlus_landing" } }, "info_description_stack_retail/info_section_stack_2/info_section_text_2_wrapper": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "info_description_stack_prerelease": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "children": [ "info_section_stack" ] }, "info_description_stack_prerelease/info_section_stack": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "info_section_stack", "namespace": "realmsPlus_landing" }, "children": [ "horizontal_large_spacer", "info_section_text_3_wrapper" ] }, "info_description_stack_prerelease/info_section_stack/horizontal_large_spacer": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel" }, "info_description_stack_prerelease/info_section_stack/info_section_text_3_wrapper": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "info_section_stack": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "stack_panel" }, "info_section_text_1": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "info_section_text", "namespace": "realmsPlus_landing" }, "children": [ "info_text_bullet_1", "vertical_small_spacer_0", "info_text_bullet_2", "vertical_small_spacer_1", "info_text_bullet_3" ] }, "info_section_text_1/info_text_bullet_1": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "info_text_bullet", "namespace": "realmsPlus_landing" } }, "info_section_text_1/vertical_small_spacer_0": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "extend": { "name": "vertical_small_spacer", "namespace": "realmsPlus_landing" } }, "info_section_text_1/info_text_bullet_2": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "info_text_bullet", "namespace": "realmsPlus_landing" } }, "info_section_text_1/vertical_small_spacer_1": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "extend": { "name": "vertical_small_spacer", "namespace": "realmsPlus_landing" } }, "info_section_text_1/info_text_bullet_3": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "info_text_bullet", "namespace": "realmsPlus_landing" } }, "info_section_text_recently_added": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "info_section_text", "namespace": "realmsPlus_landing" }, "children": [ "recently_added_header", "info_text_bullet_contentSub", "vertical_small_spacer_1", "info_text_bullet_1", "vertical_small_spacer_2", "info_text_bullet_2" ] }, "info_section_text_recently_added/recently_added_header": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "label" }, "info_section_text_recently_added/info_text_bullet_contentSub": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "info_section_text", "namespace": "realmsPlus_landing" }, "children": [ "vertical_small_spacer_0", "info_text_bullet_0" ] }, "info_section_text_recently_added/info_text_bullet_contentSub/vertical_small_spacer_0": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "extend": { "name": "vertical_small_spacer", "namespace": "realmsPlus_landing" } }, "info_section_text_recently_added/info_text_bullet_contentSub/info_text_bullet_0": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "info_text_bullet", "namespace": "realmsPlus_landing" } }, "info_section_text_recently_added/vertical_small_spacer_1": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "extend": { "name": "vertical_small_spacer", "namespace": "realmsPlus_landing" } }, "info_section_text_recently_added/info_text_bullet_1": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "info_text_bullet", "namespace": "realmsPlus_landing" } }, "info_section_text_recently_added/vertical_small_spacer_2": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "extend": { "name": "vertical_small_spacer", "namespace": "realmsPlus_landing" } }, "info_section_text_recently_added/info_text_bullet_2": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "info_text_bullet", "namespace": "realmsPlus_landing" } }, "info_section_text_2": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "info_section_text", "namespace": "realmsPlus_landing" }, "children": [ "info_text_bullet_2", "vertical_small_spacer_0", "info_text_bullet_3", "vertical_small_spacer_1", "info_text_bullet_4", "info_text_bullet_notFreeTrial" ] }, "info_section_text_2/info_text_bullet_2": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "info_text_bullet", "namespace": "realmsPlus_landing" } }, "info_section_text_2/vertical_small_spacer_0": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "extend": { "name": "vertical_small_spacer", "namespace": "realmsPlus_landing" } }, "info_section_text_2/info_text_bullet_3": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "info_text_bullet", "namespace": "realmsPlus_landing" } }, "info_section_text_2/vertical_small_spacer_1": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "extend": { "name": "vertical_small_spacer", "namespace": "realmsPlus_landing" } }, "info_section_text_2/info_text_bullet_4": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "info_text_bullet", "namespace": "realmsPlus_landing" } }, "info_section_text_2/info_text_bullet_notFreeTrial": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "info_section_text", "namespace": "realmsPlus_landing" }, "children": [ "vertical_small_spacer", "info_text_bullet_4" ] }, "info_section_text_2/info_text_bullet_notFreeTrial/vertical_small_spacer": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "extend": { "name": "vertical_small_spacer", "namespace": "realmsPlus_landing" } }, "info_section_text_2/info_text_bullet_notFreeTrial/info_text_bullet_4": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "info_text_bullet", "namespace": "realmsPlus_landing" } }, "info_section_text_3": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "stack_panel", "extend": { "name": "info_section_text", "namespace": "realmsPlus_landing" }, "children": [ "info_text_unbulletted_1", "vertical_large_spacer_0", "info_text_unbulletted_2", "vertical_large_spacer_1", "info_text_unbulletted_3", "vertical_large_spacer_2", "info_text_unbulletted_4" ] }, "info_section_text_3/info_text_unbulletted_1": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "extend": { "name": "info_text_unbulletted", "namespace": "realmsPlus_landing" } }, "info_section_text_3/vertical_large_spacer_0": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "extend": { "name": "vertical_large_spacer", "namespace": "realmsPlus_landing" } }, "info_section_text_3/info_text_unbulletted_2": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "extend": { "name": "info_text_unbulletted", "namespace": "realmsPlus_landing" } }, "info_section_text_3/vertical_large_spacer_1": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "extend": { "name": "vertical_large_spacer", "namespace": "realmsPlus_landing" } }, "info_section_text_3/info_text_unbulletted_3": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "extend": { "name": "info_text_unbulletted", "namespace": "realmsPlus_landing" } }, "info_section_text_3/vertical_large_spacer_2": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "extend": { "name": "vertical_large_spacer", "namespace": "realmsPlus_landing" } }, "info_section_text_3/info_text_unbulletted_4": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "extend": { "name": "info_text_unbulletted", "namespace": "realmsPlus_landing" } }, "info_section_text": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "stack_panel" }, "info_text_bullet": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "stack_panel", "children": [ "info_text_bullet_bullet", "info_text_bullet_body" ] }, "info_text_bullet/info_text_bullet_bullet": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "label" }, "info_text_bullet/info_text_bullet_body": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "label" }, "info_text_unbulletted": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "panel", "children": [ "info_text_bullet_body" ] }, "info_text_unbulletted/info_text_bullet_body": { "file": "ui/realmsPlus_sections/landing_section.json", "type": "label" } }, "realmsPlus_buy": { "buy_now_content": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "stack_panel", "children": [ "description_stack", "realm_name", "terms_and_conditions", "padding_2", "buy_button", "padding_3", "platform_terms_factory" ] }, "buy_now_content/description_stack": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "stack_panel", "extend": { "name": "description_stack", "namespace": "realmsPlus_buy" } }, "buy_now_content/realm_name": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "stack_panel", "extend": { "name": "realm_name_stack", "namespace": "realmsPlus_buy" } }, "buy_now_content/terms_and_conditions": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "panel", "extend": { "name": "terms_and_conditions", "namespace": "realmsPlus_buy" } }, "buy_now_content/padding_2": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "panel" }, "buy_now_content/buy_button": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "panel", "extend": { "name": "buy_button_panel", "namespace": "realmsPlus_buy" } }, "buy_now_content/padding_3": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "panel" }, "buy_now_content/platform_terms_factory": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "stack_panel" }, "content_text_section": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "stack_panel", "children": [ "text_description_wrapper", "padding" ] }, "content_text_section/text_description_wrapper": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "content_text_section/padding": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "panel" }, "content_description": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "panel", "children": [ "content_description_label" ] }, "content_description/content_description_label": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "label" }, "trial_image_and_description": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "stack_panel", "children": [ "realms_image", "padding", "description_text_wrapper" ] }, "trial_image_and_description/realms_image": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "image" }, "trial_image_and_description/padding": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "panel" }, "trial_image_and_description/description_text_wrapper": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "description_text": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "label" }, "title_text": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "label" }, "title_with_gradient": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "panel", "extend": { "name": "gradient_content_panel", "namespace": "realmsPlus" } }, "description_stack": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "stack_panel", "children": [ "title_with_gradient_wrapper", "padding", "image_and_description" ] }, "description_stack/title_with_gradient_wrapper": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "description_stack/padding": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "panel" }, "description_stack/image_and_description": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "stack_panel", "extend": { "name": "trial_image_and_description", "namespace": "realmsPlus_buy" } }, "realm_name_stack": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "stack_panel", "children": [ "realm_name_label", "padding_0", "realm_name_text_box" ] }, "realm_name_stack/realm_name_label": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "realm_name_stack/padding_0": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "panel" }, "realm_name_stack/realm_name_text_box": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "edit_box", "extend": { "name": "text_edit_box", "namespace": "common" } }, "terms_and_conditions": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "panel", "children": [ "terms_panel" ] }, "terms_and_conditions/terms_panel": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "panel", "extend": { "name": "terms_and_conditions_panel", "namespace": "realmsPlus_buy" } }, "terms_and_conditions_panel": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "panel", "children": [ "name_label", "terms_string_panel" ] }, "terms_and_conditions_panel/name_label": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "terms_and_conditions_panel/terms_string_panel": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "panel", "children": [ "banner_fill", "buttons_stack_panel" ] }, "terms_and_conditions_panel/terms_string_panel/banner_fill": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "image" }, "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "stack_panel", "children": [ "agree_panel", "view_terms_button", "privacy_policy_button" ] }, "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "panel", "children": [ "checkbox_control" ] }, "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/agree_panel/checkbox_control": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "toggle", "extend": { "name": "checkbox_with_highlight_and_label", "namespace": "settings_common" } }, "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/view_terms_button": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "button", "extend": { "name": "view_terms_button", "namespace": "realmsPlus_buy" } }, "terms_and_conditions_panel/terms_string_panel/buttons_stack_panel/privacy_policy_button": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "button", "extend": { "name": "privacy_policy_button", "namespace": "realmsPlus_buy" } }, "button_text": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "view_terms_button": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "privacy_policy_button": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "buy_button_panel": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "panel", "children": [ "buy_button" ] }, "buy_button_panel/buy_button": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "buy_button_content": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "panel", "children": [ "button_chevron_panel", "button_text" ] }, "buy_button_content/button_chevron_panel": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "stack_panel", "children": [ "buy_button_chevron" ] }, "buy_button_content/button_chevron_panel/buy_button_chevron": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "panel", "extend": { "name": "markdown_background_animated", "namespace": "realmsPlus" } }, "buy_button_content/button_text": { "file": "ui/realmsPlus_sections/realmsPlus_buy_now_screen.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } } }, "realmsPlus_packs": { "view_all_packs_screen": { "file": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", "type": "screen", "extend": { "name": "store_base_screen", "namespace": "common_store" } }, "view_packs_screen_content": { "file": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", "type": "panel", "children": [ "main_panel" ] }, "view_packs_screen_content/main_panel": { "file": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", "type": "stack_panel", "extend": { "name": "store_header_with_coins", "namespace": "common_store" } }, "realmsPlus_view_packs_screen_main_panel": { "file": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", "type": "input_panel", "extend": { "name": "sidebar_view", "namespace": "sidebar_navigation" } }, "main_panel": { "file": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", "type": "input_panel", "children": [ "offers", "progress_loading" ] }, "main_panel/offers": { "file": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "main_panel/progress_loading": { "file": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", "type": "panel", "extend": { "name": "progress_loading", "namespace": "common_store" } }, "scrolling_content_stack": { "file": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", "type": "stack_panel", "children": [ "padding_0", "store_factory" ] }, "scrolling_content_stack/padding_0": { "file": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", "type": "panel" }, "scrolling_content_stack/store_factory": { "file": "ui/realmsPlus_sections/realmsPlus_view_packs_screen.json", "type": "stack_panel", "extend": { "name": "store_section_factory", "namespace": "common_store" } } }, "realmsPlus_purchase_warning": { "realmsPlus_purchase_warning_screen": { "file": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "purchase_warning_screen_content": { "file": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", "type": "panel", "children": [ "main_panel" ] }, "purchase_warning_screen_content/main_panel": { "file": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", "type": "panel", "extend": { "name": "main_panel_one_button", "namespace": "common_dialogs" } }, "warning_modal_main_panel": { "file": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", "type": "stack_panel", "children": [ "art_panel", "padding", "text_panel" ] }, "warning_modal_main_panel/art_panel": { "file": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", "type": "panel", "children": [ "art" ] }, "warning_modal_main_panel/art_panel/art": { "file": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", "type": "image" }, "warning_modal_main_panel/padding": { "file": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", "type": "panel" }, "warning_modal_main_panel/text_panel": { "file": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", "type": "stack_panel", "children": [ "description_panel", "padding", "checkbox_with_label_panel" ] }, "warning_modal_main_panel/text_panel/description_panel": { "file": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", "type": "panel", "children": [ "description_text" ] }, "warning_modal_main_panel/text_panel/description_panel/description_text": { "file": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", "type": "label" }, "warning_modal_main_panel/text_panel/padding": { "file": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", "type": "panel" }, "warning_modal_main_panel/text_panel/checkbox_with_label_panel": { "file": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", "type": "stack_panel", "children": [ "checkbox_panel", "padding", "label_panel" ] }, "warning_modal_main_panel/text_panel/checkbox_with_label_panel/checkbox_panel": { "file": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", "type": "toggle", "extend": { "name": "checkbox", "namespace": "common" } }, "warning_modal_main_panel/text_panel/checkbox_with_label_panel/padding": { "file": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", "type": "panel" }, "warning_modal_main_panel/text_panel/checkbox_with_label_panel/label_panel": { "file": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", "type": "panel", "children": [ "label_text" ] }, "warning_modal_main_panel/text_panel/checkbox_with_label_panel/label_panel/label_text": { "file": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", "type": "label" }, "warning_modal_button_panel": { "file": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", "type": "stack_panel", "children": [ "back_button", "padding", "continue_button" ] }, "warning_modal_button_panel/back_button": { "file": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "warning_modal_button_panel/padding": { "file": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", "type": "panel" }, "warning_modal_button_panel/continue_button": { "file": "ui/realmsPlus_sections/realmsPlus_purchase_warning_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } } }, "realms_stories_transition": { "realms_stories_transition_screen": { "file": "ui/realms_stories_transition_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } } }, "redstone": { "item_dropper_label": { "file": "ui/redstone_screen.json", "type": "label" }, "dispenser_label": { "file": "ui/redstone_screen.json", "type": "label", "extend": { "name": "item_dropper_label", "namespace": "redstone" } }, "crafter_label": { "file": "ui/redstone_screen.json", "type": "label", "extend": { "name": "item_dropper_label", "namespace": "redstone" } }, "dropper_label": { "file": "ui/redstone_screen.json", "type": "label", "extend": { "name": "item_dropper_label", "namespace": "redstone" } }, "hopper_label": { "file": "ui/redstone_screen.json", "type": "label", "extend": { "name": "item_dropper_label", "namespace": "redstone" } }, "redstone_input_grid": { "file": "ui/redstone_screen.json", "type": "grid" }, "redstone_panel_top_half": { "file": "ui/redstone_screen.json", "type": "panel", "children": [ "redstone_input_grid" ] }, "redstone_panel_top_half/redstone_input_grid": { "file": "ui/redstone_screen.json", "type": "grid", "extend": { "name": "redstone_input_grid", "namespace": "redstone" } }, "panel": { "file": "ui/redstone_screen.json", "type": "panel", "children": [ "container_gamepad_helpers", "selected_item_details_factory", "item_lock_notification_factory", "root_panel", "flying_item_renderer" ] }, "panel/container_gamepad_helpers": { "file": "ui/redstone_screen.json", "type": "stack_panel", "extend": { "name": "container_gamepad_helpers", "namespace": "common" } }, "panel/selected_item_details_factory": { "file": "ui/redstone_screen.json", "type": "factory", "extend": { "name": "selected_item_details_factory", "namespace": "common" } }, "panel/item_lock_notification_factory": { "file": "ui/redstone_screen.json", "type": "factory", "extend": { "name": "item_lock_notification_factory", "namespace": "common" } }, "panel/root_panel": { "file": "ui/redstone_screen.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "common_panel", "redstone_screen_inventory", "red_icon", "gamepad_cursor" ] }, "panel/root_panel/common_panel": { "file": "ui/redstone_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "panel/root_panel/redstone_screen_inventory": { "file": "ui/redstone_screen.json", "type": "panel", "children": [ "red_panel", "red_bottom_half", "hotbar_grid", "red_hold_icon" ] }, "panel/root_panel/redstone_screen_inventory/red_panel": { "file": "ui/redstone_screen.json", "type": "panel", "extend": { "name": "redstone_panel_top_half", "namespace": "redstone" } }, "panel/root_panel/redstone_screen_inventory/red_bottom_half": { "file": "ui/redstone_screen.json", "type": "panel", "extend": { "name": "inventory_panel_bottom_half_with_label", "namespace": "common" } }, "panel/root_panel/redstone_screen_inventory/hotbar_grid": { "file": "ui/redstone_screen.json", "type": "grid", "extend": { "name": "hotbar_grid_template", "namespace": "common" } }, "panel/root_panel/redstone_screen_inventory/red_hold_icon": { "file": "ui/redstone_screen.json", "type": "button", "extend": { "name": "inventory_take_progress_icon_button", "namespace": "common" } }, "panel/root_panel/red_icon": { "file": "ui/redstone_screen.json", "type": "button", "extend": { "name": "inventory_selected_icon_button", "namespace": "common" } }, "panel/root_panel/gamepad_cursor": { "file": "ui/redstone_screen.json", "type": "button", "extend": { "name": "gamepad_cursor_button", "namespace": "common" } }, "panel/flying_item_renderer": { "file": "ui/redstone_screen.json", "type": "custom", "extend": { "name": "flying_item_renderer", "namespace": "common" } }, "crafter_input_grid": { "file": "ui/redstone_screen.json", "type": "grid" }, "cell_image": { "file": "ui/redstone_screen.json", "type": "image" }, "crafter_highlight_slot": { "file": "ui/redstone_screen.json", "type": "image" }, "crafter_container_slot_button_prototype": { "file": "ui/redstone_screen.json", "type": "button", "extend": { "name": "container_slot_button_prototype", "namespace": "common" } }, "crafter_highlight_slot_panel": { "file": "ui/redstone_screen.json", "type": "panel", "children": [ "highlight", "white_border" ] }, "crafter_highlight_slot_panel/highlight": { "file": "ui/redstone_screen.json", "type": "image", "extend": { "name": "crafter_highlight_slot", "namespace": "redstone" }, "children": [ "hover_text" ] }, "crafter_highlight_slot_panel/highlight/hover_text": { "file": "ui/redstone_screen.json", "type": "custom", "extend": { "name": "hover_text", "namespace": "common" } }, "crafter_highlight_slot_panel/white_border": { "file": "ui/redstone_screen.json", "type": "image", "extend": { "name": "white_border_slot", "namespace": "common" } }, "crafter_enabled_slot_template": { "file": "ui/redstone_screen.json", "type": "input_panel", "extend": { "name": "container_item", "namespace": "common" } }, "crafter_disabled_slot": { "file": "ui/redstone_screen.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed" ] }, "crafter_disabled_slot/default": { "file": "ui/redstone_screen.json", "type": "image" }, "crafter_disabled_slot/hover": { "file": "ui/redstone_screen.json", "type": "image" }, "crafter_disabled_slot/pressed": { "file": "ui/redstone_screen.json", "type": "image" }, "output_slot_hover_info": { "file": "ui/redstone_screen.json", "type": "button", "children": [ "hover", "output_slot", "output_slot_border", "output_count" ] }, "output_slot_hover_info/hover": { "file": "ui/redstone_screen.json", "type": "custom", "extend": { "name": "hover_text", "namespace": "common" } }, "output_slot_hover_info/output_slot": { "file": "ui/redstone_screen.json", "type": "custom", "extend": { "name": "item_renderer", "namespace": "common" } }, "output_slot_hover_info/output_slot_border": { "file": "ui/redstone_screen.json", "type": "image" }, "output_slot_hover_info/output_count": { "file": "ui/redstone_screen.json", "type": "label", "extend": { "name": "stack_count_label", "namespace": "common" } }, "panel_crafter": { "file": "ui/redstone_screen.json", "type": "panel", "children": [ "container_gamepad_helpers", "selected_item_details_factory", "item_lock_notification_factory", "root_panel", "flying_item_renderer" ] }, "panel_crafter/container_gamepad_helpers": { "file": "ui/redstone_screen.json", "type": "stack_panel", "extend": { "name": "container_gamepad_helpers", "namespace": "common" } }, "panel_crafter/selected_item_details_factory": { "file": "ui/redstone_screen.json", "type": "factory", "extend": { "name": "selected_item_details_factory", "namespace": "common" } }, "panel_crafter/item_lock_notification_factory": { "file": "ui/redstone_screen.json", "type": "factory", "extend": { "name": "item_lock_notification_factory", "namespace": "common" } }, "panel_crafter/root_panel": { "file": "ui/redstone_screen.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "common_panel", "disabled_slot_0_button", "disabled_slot_1_button", "disabled_slot_2_button", "disabled_slot_3_button", "disabled_slot_4_button", "disabled_slot_5_button", "disabled_slot_6_button", "disabled_slot_7_button", "disabled_slot_8_button", "redstone_screen_inventory", "red_icon", "gamepad_cursor" ] }, "panel_crafter/root_panel/common_panel": { "file": "ui/redstone_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "panel_crafter/root_panel/disabled_slot_0_button": { "file": "ui/redstone_screen.json", "type": "button", "extend": { "name": "crafter_disabled_slot", "namespace": "redstone" } }, "panel_crafter/root_panel/disabled_slot_1_button": { "file": "ui/redstone_screen.json", "type": "button", "extend": { "name": "crafter_disabled_slot", "namespace": "redstone" } }, "panel_crafter/root_panel/disabled_slot_2_button": { "file": "ui/redstone_screen.json", "type": "button", "extend": { "name": "crafter_disabled_slot", "namespace": "redstone" } }, "panel_crafter/root_panel/disabled_slot_3_button": { "file": "ui/redstone_screen.json", "type": "button", "extend": { "name": "crafter_disabled_slot", "namespace": "redstone" } }, "panel_crafter/root_panel/disabled_slot_4_button": { "file": "ui/redstone_screen.json", "type": "button", "extend": { "name": "crafter_disabled_slot", "namespace": "redstone" } }, "panel_crafter/root_panel/disabled_slot_5_button": { "file": "ui/redstone_screen.json", "type": "button", "extend": { "name": "crafter_disabled_slot", "namespace": "redstone" } }, "panel_crafter/root_panel/disabled_slot_6_button": { "file": "ui/redstone_screen.json", "type": "button", "extend": { "name": "crafter_disabled_slot", "namespace": "redstone" } }, "panel_crafter/root_panel/disabled_slot_7_button": { "file": "ui/redstone_screen.json", "type": "button", "extend": { "name": "crafter_disabled_slot", "namespace": "redstone" } }, "panel_crafter/root_panel/disabled_slot_8_button": { "file": "ui/redstone_screen.json", "type": "button", "extend": { "name": "crafter_disabled_slot", "namespace": "redstone" } }, "panel_crafter/root_panel/redstone_screen_inventory": { "file": "ui/redstone_screen.json", "type": "panel", "children": [ "crafting_grid", "red_bottom_half", "hotbar_grid", "red_hold_icon", "redstone_wire_line", "crafter_output" ] }, "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid": { "file": "ui/redstone_screen.json", "type": "panel", "children": [ "crafter_input_grid" ] }, "panel_crafter/root_panel/redstone_screen_inventory/crafting_grid/crafter_input_grid": { "file": "ui/redstone_screen.json", "type": "grid", "extend": { "name": "crafter_input_grid", "namespace": "redstone" } }, "panel_crafter/root_panel/redstone_screen_inventory/red_bottom_half": { "file": "ui/redstone_screen.json", "type": "panel", "extend": { "name": "inventory_panel_bottom_half_with_label", "namespace": "common" } }, "panel_crafter/root_panel/redstone_screen_inventory/hotbar_grid": { "file": "ui/redstone_screen.json", "type": "grid", "extend": { "name": "hotbar_grid_template", "namespace": "common" } }, "panel_crafter/root_panel/redstone_screen_inventory/red_hold_icon": { "file": "ui/redstone_screen.json", "type": "button", "extend": { "name": "inventory_take_progress_icon_button", "namespace": "common" } }, "panel_crafter/root_panel/redstone_screen_inventory/redstone_wire_line": { "file": "ui/redstone_screen.json", "type": "image" }, "panel_crafter/root_panel/redstone_screen_inventory/crafter_output": { "file": "ui/redstone_screen.json", "type": "button", "extend": { "name": "output_slot_hover_info", "namespace": "redstone" } }, "panel_crafter/root_panel/red_icon": { "file": "ui/redstone_screen.json", "type": "button", "extend": { "name": "inventory_selected_icon_button", "namespace": "common" } }, "panel_crafter/root_panel/gamepad_cursor": { "file": "ui/redstone_screen.json", "type": "button", "extend": { "name": "gamepad_cursor_button", "namespace": "common" } }, "panel_crafter/flying_item_renderer": { "file": "ui/redstone_screen.json", "type": "custom", "extend": { "name": "flying_item_renderer", "namespace": "common" } }, "hopper_screen": { "file": "ui/redstone_screen.json", "type": "screen", "extend": { "name": "inventory_screen_common", "namespace": "common" } }, "dispenser_screen": { "file": "ui/redstone_screen.json", "type": "screen", "extend": { "name": "inventory_screen_common", "namespace": "common" } }, "crafter_screen": { "file": "ui/redstone_screen.json", "type": "screen", "extend": { "name": "inventory_screen_common", "namespace": "common" } }, "dropper_screen": { "file": "ui/redstone_screen.json", "type": "screen", "extend": { "name": "inventory_screen_common", "namespace": "common" } } }, "resource_packs": { "black_image": { "file": "ui/resource_packs_screen.json", "type": "image" }, "gray_image": { "file": "ui/resource_packs_screen.json", "type": "image" }, "yellow_image": { "file": "ui/resource_packs_screen.json", "type": "image" }, "white_image": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "border" ] }, "white_image/border": { "file": "ui/resource_packs_screen.json", "type": "image" }, "icon_image": { "file": "ui/resource_packs_screen.json", "type": "image" }, "resource_packs_toggle_button_control": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "icon_border", "cycling_icon", "tab_button_text" ] }, "resource_packs_toggle_button_control/icon_border": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "white_image", "namespace": "resource_packs" } }, "resource_packs_toggle_button_control/cycling_icon": { "file": "ui/resource_packs_screen.json", "type": "image" }, "resource_packs_toggle_button_control/tab_button_text": { "file": "ui/resource_packs_screen.json", "type": "label" }, "resource_packs_section_toggle_base": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "light_ui_toggle", "namespace": "common_toggles" } }, "selected_icon_image": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "icon_image", "namespace": "resource_packs" } }, "available_icon_image": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "icon_image", "namespace": "resource_packs" } }, "realms_icon_image": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "icon_image", "namespace": "resource_packs" } }, "unowned_icon_image": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "icon_image", "namespace": "resource_packs" } }, "invalid_icon_image": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "icon_image", "namespace": "resource_packs" } }, "minus_image": { "file": "ui/resource_packs_screen.json", "type": "image" }, "plus_image": { "file": "ui/resource_packs_screen.json", "type": "image" }, "minus_text": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "gray_label", "namespace": "resource_packs" } }, "plus_text": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "gray_label", "namespace": "resource_packs" } }, "store_text": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "gray_label", "namespace": "resource_packs" } }, "error_image": { "file": "ui/resource_packs_screen.json", "type": "image" }, "error_image_hover": { "file": "ui/resource_packs_screen.json", "type": "image" }, "error_image_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "default", "hover" ] }, "error_image_panel/default": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "error_image", "namespace": "resource_packs" } }, "error_image_panel/hover": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "error_image_hover", "namespace": "resource_packs" } }, "warning_image": { "file": "ui/resource_packs_screen.json", "type": "image" }, "warning_image_hover": { "file": "ui/resource_packs_screen.json", "type": "image" }, "warning_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "default", "hover" ] }, "warning_panel/default": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "warning_image", "namespace": "resource_packs" } }, "warning_panel/hover": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "warning_image_hover", "namespace": "resource_packs" } }, "no_error_image": { "file": "ui/resource_packs_screen.json", "type": "image" }, "no_error_image_hover": { "file": "ui/resource_packs_screen.json", "type": "image" }, "no_error_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "default", "hover" ] }, "no_error_panel/default": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "no_error_image", "namespace": "resource_packs" } }, "no_error_panel/hover": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "no_error_image_hover", "namespace": "resource_packs" } }, "up_arrow_image": { "file": "ui/resource_packs_screen.json", "type": "image" }, "down_arrow_image": { "file": "ui/resource_packs_screen.json", "type": "image" }, "up_arrow_image_hover": { "file": "ui/resource_packs_screen.json", "type": "image" }, "down_arrow_image_hover": { "file": "ui/resource_packs_screen.json", "type": "image" }, "up_arrow_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "default", "hover" ] }, "up_arrow_panel/default": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "up_arrow_image", "namespace": "resource_packs" } }, "up_arrow_panel/hover": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "up_arrow_image_hover", "namespace": "resource_packs" } }, "up_arrow_wrapper": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "down_arrow", "divider_right" ] }, "up_arrow_wrapper/down_arrow": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "up_arrow_panel", "namespace": "resource_packs" } }, "up_arrow_wrapper/divider_right": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "vertical_divider", "namespace": "common" } }, "down_arrow_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "default", "hover" ] }, "down_arrow_panel/default": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "down_arrow_image", "namespace": "resource_packs" } }, "down_arrow_panel/hover": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "down_arrow_image_hover", "namespace": "resource_packs" } }, "down_arrow_wrapper": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "down_arrow", "divider_right" ] }, "down_arrow_wrapper/down_arrow": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "down_arrow_panel", "namespace": "resource_packs" } }, "down_arrow_wrapper/divider_right": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "vertical_divider", "namespace": "common" } }, "progress_loading_bars": { "file": "ui/resource_packs_screen.json", "type": "image" }, "warning_image_wrapper": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "error_image", "warning_image", "no_error_panel", "progress_loading_bars" ] }, "warning_image_wrapper/error_image": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "error_image_panel", "namespace": "resource_packs" } }, "warning_image_wrapper/warning_image": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "warning_panel", "namespace": "resource_packs" } }, "warning_image_wrapper/no_error_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "no_error_panel", "namespace": "resource_packs" } }, "warning_image_wrapper/progress_loading_bars": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "progress_loading_bars", "namespace": "resource_packs" } }, "tooltip_image_wrapper": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "error_image", "warning_image" ] }, "tooltip_image_wrapper/error_image": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "error_image", "namespace": "resource_packs" } }, "tooltip_image_wrapper/warning_image": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "warning_image", "namespace": "resource_packs" } }, "options_image": { "file": "ui/resource_packs_screen.json", "type": "image" }, "options_image_hover": { "file": "ui/resource_packs_screen.json", "type": "image" }, "options_image_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "default", "hover" ] }, "options_image_panel/default": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "options_image", "namespace": "resource_packs" } }, "options_image_panel/hover": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "image", "border" ] }, "options_image_panel/hover/image": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "options_image", "namespace": "resource_packs" } }, "options_image_panel/hover/border": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "options_image_hover", "namespace": "resource_packs" } }, "options_wrapper": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "options", "divider_right" ] }, "options_wrapper/options": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "options_image_panel", "namespace": "resource_packs" } }, "options_wrapper/divider_right": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "vertical_divider", "namespace": "common" } }, "common_pack_button": { "file": "ui/resource_packs_screen.json", "type": "button", "extend": { "name": "button", "namespace": "common" } }, "available_text_panel": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "children": [ "name_panel", "full_panel" ] }, "available_text_panel/name_panel": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "children": [ "available_pack_name_label", "available_file_size_label" ] }, "available_text_panel/name_panel/available_pack_name_label": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "available_pack_name_label", "namespace": "resource_packs" } }, "available_text_panel/name_panel/available_file_size_label": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "available_file_size_label", "namespace": "resource_packs" } }, "available_text_panel/full_panel": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "children": [ "description_panel" ] }, "available_text_panel/full_panel/description_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "available_pack_description_label" ] }, "available_text_panel/full_panel/description_panel/available_pack_description_label": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "available_pack_description_label", "namespace": "resource_packs" } }, "realms_text_panel": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "children": [ "name_panel", "description_panel" ] }, "realms_text_panel/name_panel": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "children": [ "realms_pack_name_label", "realms_file_size_label" ] }, "realms_text_panel/name_panel/realms_pack_name_label": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "realms_pack_name_label", "namespace": "resource_packs" } }, "realms_text_panel/name_panel/realms_file_size_label": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "realms_file_size_label", "namespace": "resource_packs" } }, "realms_text_panel/description_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "realms_pack_description_label" ] }, "realms_text_panel/description_panel/realms_pack_description_label": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "realms_pack_description_label", "namespace": "resource_packs" } }, "unowned_text_panel": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "children": [ "name_panel", "description_panel" ] }, "unowned_text_panel/name_panel": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "children": [ "unowned_pack_name_label", "unowned_file_size_label" ] }, "unowned_text_panel/name_panel/unowned_pack_name_label": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "unowned_pack_name_label", "namespace": "resource_packs" } }, "unowned_text_panel/name_panel/unowned_file_size_label": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "unowned_file_size_label", "namespace": "resource_packs" } }, "unowned_text_panel/description_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "unowned_pack_description_label" ] }, "unowned_text_panel/description_panel/unowned_pack_description_label": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "unowned_pack_description_label", "namespace": "resource_packs" } }, "selected_text_panel": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "children": [ "name_panel", "full_panel" ] }, "selected_text_panel/name_panel": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "children": [ "selected_pack_name_label", "selected_file_size_label", "active_dot_panel" ] }, "selected_text_panel/name_panel/selected_pack_name_label": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "selected_pack_name_label", "namespace": "resource_packs" } }, "selected_text_panel/name_panel/selected_file_size_label": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "selected_file_size_label", "namespace": "resource_packs" } }, "selected_text_panel/name_panel/active_dot_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "active_dot" ] }, "selected_text_panel/name_panel/active_dot_panel/active_dot": { "file": "ui/resource_packs_screen.json", "type": "image" }, "selected_text_panel/full_panel": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "children": [ "warning_line", "error_line", "expired_line", "description_panel" ] }, "selected_text_panel/full_panel/warning_line": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "children": [ "warning_text", "warning_number" ] }, "selected_text_panel/full_panel/warning_line/warning_text": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "selected_text_panel/full_panel/warning_line/warning_number": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "selected_text_panel/full_panel/error_line": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "children": [ "error_text", "error_number" ] }, "selected_text_panel/full_panel/error_line/error_text": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "selected_text_panel/full_panel/error_line/error_number": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "selected_text_panel/full_panel/expired_line": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "expired_text" ] }, "selected_text_panel/full_panel/expired_line/expired_text": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "selected_text_panel/full_panel/description_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "selected_pack_description_label" ] }, "selected_text_panel/full_panel/description_panel/selected_pack_description_label": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "selected_pack_description_label", "namespace": "resource_packs" } }, "invalid_text_panel": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "children": [ "full_panel" ] }, "invalid_text_panel/full_panel": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "children": [ "error_line" ] }, "invalid_text_panel/full_panel/error_line": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "children": [ "error_text", "error_number" ] }, "invalid_text_panel/full_panel/error_line/error_text": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "invalid_text_panel/full_panel/error_line/error_number": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "available_pack_button_layout": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "available_icon_image", "text_panel_small", "text_panel_full", "read_more_button_panel", "read_less_button_panel" ] }, "available_pack_button_layout/available_icon_image": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "available_icon_image", "namespace": "resource_packs" } }, "available_pack_button_layout/text_panel_small": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "extend": { "name": "available_text_panel", "namespace": "resource_packs" } }, "available_pack_button_layout/text_panel_full": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "extend": { "name": "available_text_panel", "namespace": "resource_packs" } }, "available_pack_button_layout/read_more_button_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "read_button", "namespace": "common_buttons" } }, "available_pack_button_layout/read_less_button_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "read_button", "namespace": "common_buttons" } }, "available_pack_button_layout_hover": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "hover_small", "available_icon_image", "text_panel_small", "text_panel_full_hover", "read_more_button_panel", "read_less_button_panel" ] }, "available_pack_button_layout_hover/hover_small": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "focus_border_white", "namespace": "common" } }, "available_pack_button_layout_hover/available_icon_image": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "available_icon_image", "namespace": "resource_packs" } }, "available_pack_button_layout_hover/text_panel_small": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "extend": { "name": "available_text_panel", "namespace": "resource_packs" } }, "available_pack_button_layout_hover/text_panel_full_hover": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "text_panel_full" ] }, "available_pack_button_layout_hover/text_panel_full_hover/text_panel_full": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "extend": { "name": "available_text_panel", "namespace": "resource_packs" } }, "available_pack_button_layout_hover/read_more_button_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "read_button", "namespace": "common_buttons" } }, "available_pack_button_layout_hover/read_less_button_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "read_button", "namespace": "common_buttons" } }, "available_pack_button": { "file": "ui/resource_packs_screen.json", "type": "button", "extend": { "name": "common_pack_button", "namespace": "resource_packs" }, "children": [ "default", "pressed", "hover" ] }, "available_pack_button/default": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "available_pack_button_layout", "namespace": "resource_packs" } }, "available_pack_button/pressed": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "available_pack_button_layout_hover", "namespace": "resource_packs" } }, "available_pack_button/hover": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "available_pack_button_layout_hover", "namespace": "resource_packs" } }, "realms_pack_button_layout": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "realms_icon_image", "text_panel_small", "text_panel_full", "read_more_button_panel", "read_less_button_panel" ] }, "realms_pack_button_layout/realms_icon_image": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "realms_icon_image", "namespace": "resource_packs" } }, "realms_pack_button_layout/text_panel_small": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "extend": { "name": "realms_text_panel", "namespace": "resource_packs" } }, "realms_pack_button_layout/text_panel_full": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "extend": { "name": "realms_text_panel", "namespace": "resource_packs" } }, "realms_pack_button_layout/read_more_button_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "read_button", "namespace": "common_buttons" } }, "realms_pack_button_layout/read_less_button_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "read_button", "namespace": "common_buttons" } }, "realms_pack_button_layout_hover": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "hover_small", "realms_icon_image", "text_panel_small", "text_panel_full_hover", "read_more_button_panel", "read_less_button_panel" ] }, "realms_pack_button_layout_hover/hover_small": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "focus_border_white", "namespace": "common" } }, "realms_pack_button_layout_hover/realms_icon_image": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "realms_icon_image", "namespace": "resource_packs" } }, "realms_pack_button_layout_hover/text_panel_small": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "extend": { "name": "realms_text_panel", "namespace": "resource_packs" } }, "realms_pack_button_layout_hover/text_panel_full_hover": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "text_panel_full" ] }, "realms_pack_button_layout_hover/text_panel_full_hover/text_panel_full": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "extend": { "name": "realms_text_panel", "namespace": "resource_packs" } }, "realms_pack_button_layout_hover/read_more_button_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "read_button", "namespace": "common_buttons" } }, "realms_pack_button_layout_hover/read_less_button_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "read_button", "namespace": "common_buttons" } }, "realms_pack_button": { "file": "ui/resource_packs_screen.json", "type": "button", "extend": { "name": "common_pack_button", "namespace": "resource_packs" }, "children": [ "default", "pressed", "hover" ] }, "realms_pack_button/default": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "realms_pack_button_layout", "namespace": "resource_packs" } }, "realms_pack_button/pressed": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "realms_pack_button_layout_hover", "namespace": "resource_packs" } }, "realms_pack_button/hover": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "realms_pack_button_layout_hover", "namespace": "resource_packs" } }, "unowned_pack_button_layout": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "unowned_icon_image", "text_panel_small", "text_panel_full", "read_more_button_panel", "read_less_button_panel" ] }, "unowned_pack_button_layout/unowned_icon_image": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "unowned_icon_image", "namespace": "resource_packs" } }, "unowned_pack_button_layout/text_panel_small": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "extend": { "name": "unowned_text_panel", "namespace": "resource_packs" } }, "unowned_pack_button_layout/text_panel_full": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "extend": { "name": "unowned_text_panel", "namespace": "resource_packs" } }, "unowned_pack_button_layout/read_more_button_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "read_button", "namespace": "common_buttons" } }, "unowned_pack_button_layout/read_less_button_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "read_button", "namespace": "common_buttons" } }, "unowned_pack_button_layout_hover": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "hover_small", "unowned_icon_image", "text_panel_small", "text_panel_full_hover", "read_more_button_panel", "read_less_button_panel" ] }, "unowned_pack_button_layout_hover/hover_small": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "focus_border_white", "namespace": "common" } }, "unowned_pack_button_layout_hover/unowned_icon_image": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "unowned_icon_image", "namespace": "resource_packs" } }, "unowned_pack_button_layout_hover/text_panel_small": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "extend": { "name": "unowned_text_panel", "namespace": "resource_packs" } }, "unowned_pack_button_layout_hover/text_panel_full_hover": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "text_panel_full" ] }, "unowned_pack_button_layout_hover/text_panel_full_hover/text_panel_full": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "extend": { "name": "unowned_text_panel", "namespace": "resource_packs" } }, "unowned_pack_button_layout_hover/read_more_button_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "read_button", "namespace": "common_buttons" } }, "unowned_pack_button_layout_hover/read_less_button_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "read_button", "namespace": "common_buttons" } }, "unowned_pack_button": { "file": "ui/resource_packs_screen.json", "type": "button", "extend": { "name": "common_pack_button", "namespace": "resource_packs" }, "children": [ "default", "pressed", "hover" ] }, "unowned_pack_button/default": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "unowned_pack_button_layout", "namespace": "resource_packs" } }, "unowned_pack_button/pressed": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "unowned_pack_button_layout_hover", "namespace": "resource_packs" } }, "unowned_pack_button/hover": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "unowned_pack_button_layout_hover", "namespace": "resource_packs" } }, "invalid_pack_button_layout": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "invalid_icon_image", "text_panel" ] }, "invalid_pack_button_layout/invalid_icon_image": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "invalid_icon_image", "namespace": "resource_packs" } }, "invalid_pack_button_layout/text_panel": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "extend": { "name": "invalid_text_panel", "namespace": "resource_packs" } }, "invalid_pack_button_layout_hover": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "hover_small", "invalid_icon_image", "text_panel_full_hover" ] }, "invalid_pack_button_layout_hover/hover_small": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "focus_border_white", "namespace": "common" } }, "invalid_pack_button_layout_hover/invalid_icon_image": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "invalid_icon_image", "namespace": "resource_packs" } }, "invalid_pack_button_layout_hover/text_panel_full_hover": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "text_panel" ] }, "invalid_pack_button_layout_hover/text_panel_full_hover/text_panel": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "extend": { "name": "invalid_text_panel", "namespace": "resource_packs" } }, "invalid_pack_button": { "file": "ui/resource_packs_screen.json", "type": "button", "extend": { "name": "common_pack_button", "namespace": "resource_packs" }, "children": [ "default", "pressed", "hover" ] }, "invalid_pack_button/default": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "invalid_pack_button_layout", "namespace": "resource_packs" } }, "invalid_pack_button/pressed": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "invalid_pack_button_layout_hover", "namespace": "resource_packs" } }, "invalid_pack_button/hover": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "invalid_pack_button_layout_hover", "namespace": "resource_packs" } }, "empty_resource_pack_button": { "file": "ui/resource_packs_screen.json", "type": "panel" }, "resource_pack_button_padding": { "file": "ui/resource_packs_screen.json", "type": "panel" }, "input_button_panel": { "file": "ui/resource_packs_screen.json", "type": "input_panel", "children": [ "border_image", "background" ] }, "input_button_panel/border_image": { "file": "ui/resource_packs_screen.json", "type": "image", "children": [ "button_panel" ] }, "input_button_panel/border_image/button_panel": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "children": [ "padding_0", "padding_1", "padding_2", "padding_3", "padding_4" ] }, "input_button_panel/border_image/button_panel/padding_0": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "resource_pack_button_padding", "namespace": "resource_packs" } }, "input_button_panel/border_image/button_panel/padding_1": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "resource_pack_button_padding", "namespace": "resource_packs" } }, "input_button_panel/border_image/button_panel/padding_2": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "resource_pack_button_padding", "namespace": "resource_packs" } }, "input_button_panel/border_image/button_panel/padding_3": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "resource_pack_button_padding", "namespace": "resource_packs" } }, "input_button_panel/border_image/button_panel/padding_4": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "resource_pack_button_padding", "namespace": "resource_packs" } }, "input_button_panel/background": { "file": "ui/resource_packs_screen.json", "type": "image" }, "selected_pack_button_layout": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "selected_icon_image", "text_panel_small", "text_panel_full", "read_more_button_panel", "read_less_button_panel" ] }, "selected_pack_button_layout/selected_icon_image": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "selected_icon_image", "namespace": "resource_packs" } }, "selected_pack_button_layout/text_panel_small": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "extend": { "name": "selected_text_panel", "namespace": "resource_packs" } }, "selected_pack_button_layout/text_panel_full": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "extend": { "name": "selected_text_panel", "namespace": "resource_packs" } }, "selected_pack_button_layout/read_more_button_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "read_button", "namespace": "common_buttons" } }, "selected_pack_button_layout/read_less_button_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "read_button", "namespace": "common_buttons" } }, "selected_pack_button_layout_hover": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "hover_small", "selected_icon_image", "text_panel_small", "text_panel_full_hover", "read_more_button_panel", "read_less_button_panel" ] }, "selected_pack_button_layout_hover/hover_small": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "focus_border_white", "namespace": "common" } }, "selected_pack_button_layout_hover/selected_icon_image": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "selected_icon_image", "namespace": "resource_packs" } }, "selected_pack_button_layout_hover/text_panel_small": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "extend": { "name": "selected_text_panel", "namespace": "resource_packs" } }, "selected_pack_button_layout_hover/text_panel_full_hover": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "text_panel_full" ] }, "selected_pack_button_layout_hover/text_panel_full_hover/text_panel_full": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "extend": { "name": "selected_text_panel", "namespace": "resource_packs" } }, "selected_pack_button_layout_hover/read_more_button_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "read_button", "namespace": "common_buttons" } }, "selected_pack_button_layout_hover/read_less_button_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "read_button", "namespace": "common_buttons" } }, "selected_pack_button": { "file": "ui/resource_packs_screen.json", "type": "button", "extend": { "name": "common_pack_button", "namespace": "resource_packs" }, "children": [ "default", "pressed", "hover" ] }, "selected_pack_button/default": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "selected_pack_button_layout", "namespace": "resource_packs" } }, "selected_pack_button/pressed": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "selected_pack_button_layout_hover", "namespace": "resource_packs" } }, "selected_pack_button/hover": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "selected_pack_button_layout_hover", "namespace": "resource_packs" } }, "selected_pack_movement_button": { "file": "ui/resource_packs_screen.json", "type": "button", "extend": { "name": "light_glyph_button", "namespace": "common_buttons" } }, "selected_pack_transparent_movement_button": { "file": "ui/resource_packs_screen.json", "type": "button", "extend": { "name": "transparent_content_button", "namespace": "common_buttons" } }, "selected_pack_minus_button": { "file": "ui/resource_packs_screen.json", "type": "button", "extend": { "name": "selected_pack_movement_button", "namespace": "resource_packs" } }, "selected_pack_plus_button": { "file": "ui/resource_packs_screen.json", "type": "button", "extend": { "name": "selected_pack_movement_button", "namespace": "resource_packs" } }, "selected_pack_store_button": { "file": "ui/resource_packs_screen.json", "type": "button", "extend": { "name": "selected_pack_movement_button", "namespace": "resource_packs" } }, "selected_pack_store_button_fill": { "file": "ui/resource_packs_screen.json", "type": "button", "extend": { "name": "selected_pack_movement_button", "namespace": "resource_packs" } }, "selected_pack_up_button": { "file": "ui/resource_packs_screen.json", "type": "button", "extend": { "name": "selected_pack_transparent_movement_button", "namespace": "resource_packs" } }, "selected_pack_down_button": { "file": "ui/resource_packs_screen.json", "type": "button", "extend": { "name": "selected_pack_transparent_movement_button", "namespace": "resource_packs" } }, "selected_pack_warning_button": { "file": "ui/resource_packs_screen.json", "type": "button", "extend": { "name": "transparent_content_button", "namespace": "common_buttons" } }, "selected_pack_options_button": { "file": "ui/resource_packs_screen.json", "type": "button", "extend": { "name": "transparent_content_button", "namespace": "common_buttons" } }, "white_label": { "file": "ui/resource_packs_screen.json", "type": "label" }, "gray_label": { "file": "ui/resource_packs_screen.json", "type": "label" }, "suggested_content_offers_title_label": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "white_label", "namespace": "resource_packs" } }, "available_packs_title_content": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "extend": { "name": "selected_packs_title_content", "namespace": "resource_packs" } }, "realms_packs_title_content": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "extend": { "name": "selected_packs_title_content", "namespace": "resource_packs" } }, "unowned_packs_title_content": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "extend": { "name": "selected_packs_title_content", "namespace": "resource_packs" } }, "selected_packs_title_content": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "children": [ "selected_packs_title_label", "fill_pad", "icon_panel", "pad_0", "count", "pad_1", "plus_panel", "minus_panel" ] }, "selected_packs_title_content/selected_packs_title_label": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "selected_packs_title_content/fill_pad": { "file": "ui/resource_packs_screen.json", "type": "panel" }, "selected_packs_title_content/icon_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "block_icon" ] }, "selected_packs_title_content/icon_panel/block_icon": { "file": "ui/resource_packs_screen.json", "type": "image" }, "selected_packs_title_content/pad_0": { "file": "ui/resource_packs_screen.json", "type": "panel" }, "selected_packs_title_content/count": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "selected_packs_title_content/pad_1": { "file": "ui/resource_packs_screen.json", "type": "panel" }, "selected_packs_title_content/plus_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "plus" ] }, "selected_packs_title_content/plus_panel/plus": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "plus_image", "namespace": "resource_packs" } }, "selected_packs_title_content/minus_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "minus" ] }, "selected_packs_title_content/minus_panel/minus": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "minus_image", "namespace": "resource_packs" } }, "available_packs_title_button": { "file": "ui/resource_packs_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "realms_packs_title_button": { "file": "ui/resource_packs_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "unowned_packs_title_button": { "file": "ui/resource_packs_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "selected_packs_title_button": { "file": "ui/resource_packs_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "name_label": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "white_label", "namespace": "resource_packs" } }, "size_label": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "white_label", "namespace": "resource_packs" } }, "description_label": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "white_label", "namespace": "resource_packs" } }, "pack_label": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "white_label", "namespace": "resource_packs" } }, "selected_pack_description_label": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "pack_label", "namespace": "resource_packs" } }, "available_pack_description_label": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "selected_pack_description_label", "namespace": "resource_packs" } }, "realms_pack_description_label": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "selected_pack_description_label", "namespace": "resource_packs" } }, "unowned_pack_description_label": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "selected_pack_description_label", "namespace": "resource_packs" } }, "selected_pack_name_label": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "name_label", "namespace": "resource_packs" } }, "selected_file_size_label": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "size_label", "namespace": "resource_packs" } }, "available_pack_name_label": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "selected_pack_name_label", "namespace": "resource_packs" } }, "available_file_size_label": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "selected_file_size_label", "namespace": "resource_packs" } }, "realms_pack_name_label": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "selected_pack_name_label", "namespace": "resource_packs" } }, "realms_file_size_label": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "selected_file_size_label", "namespace": "resource_packs" } }, "unowned_pack_name_label": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "selected_pack_name_label", "namespace": "resource_packs" } }, "unowned_file_size_label": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "selected_file_size_label", "namespace": "resource_packs" } }, "invalid_pack_name_label": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "selected_pack_name_label", "namespace": "resource_packs" } }, "invalid_pack_description_label": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "selected_pack_description_label", "namespace": "resource_packs" } }, "available_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "selected_packs" ] }, "available_panel/selected_packs": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "checkbox_visuals": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "toggle_visuals", "namespace": "common" } }, "header_control": { "file": "ui/resource_packs_screen.json", "type": "toggle", "extend": { "name": "checkbox", "namespace": "common" }, "children": [ "header_description_stack_panel" ] }, "header_control/header_description_stack_panel": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "children": [ "checkbox_visuals", "buffer_panel" ] }, "header_control/header_description_stack_panel/checkbox_visuals": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "checkbox_visuals", "namespace": "resource_packs" } }, "header_control/header_description_stack_panel/buffer_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "label" ] }, "header_control/header_description_stack_panel/buffer_panel/label": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "description_label", "namespace": "resource_packs" } }, "addon_header_control": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "header_description_stack_panel" ] }, "addon_header_control/header_description_stack_panel": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "children": [ "padding_0", "description_center_panel", "padding_1", "link_center_panel", "padding_2" ] }, "addon_header_control/header_description_stack_panel/padding_0": { "file": "ui/resource_packs_screen.json", "type": "panel" }, "addon_header_control/header_description_stack_panel/description_center_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "label" ] }, "addon_header_control/header_description_stack_panel/description_center_panel/label": { "file": "ui/resource_packs_screen.json", "type": "label" }, "addon_header_control/header_description_stack_panel/padding_1": { "file": "ui/resource_packs_screen.json", "type": "panel" }, "addon_header_control/header_description_stack_panel/link_center_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "addon_link_button" ] }, "addon_header_control/header_description_stack_panel/link_center_panel/addon_link_button": { "file": "ui/resource_packs_screen.json", "type": "button", "extend": { "name": "underline_button", "namespace": "common_buttons" } }, "addon_header_control/header_description_stack_panel/padding_2": { "file": "ui/resource_packs_screen.json", "type": "panel" }, "panel_bg": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "black_background", "gray" ] }, "panel_bg/black_background": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "black_image", "namespace": "resource_packs" } }, "panel_bg/gray": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "gray_image", "namespace": "resource_packs" } }, "addon_panel_bg": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "black_background", "yellow" ] }, "addon_panel_bg/black_background": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "black_image", "namespace": "resource_packs" } }, "addon_panel_bg/yellow": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "yellow_image", "namespace": "resource_packs" } }, "error_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "black_background" ] }, "error_panel/black_background": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "black_image", "namespace": "resource_packs" }, "children": [ "gray" ] }, "error_panel/black_background/gray": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "gray_image", "namespace": "resource_packs" }, "children": [ "panel" ] }, "error_panel/black_background/gray/panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "error_label" ] }, "error_panel/black_background/gray/panel/error_label": { "file": "ui/resource_packs_screen.json", "type": "label" }, "selected_stack_panel": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "children": [ "world_template_option_lock_panel", "top_panel", "offset_0", "addon_stacking_warning_panel", "offset_1", "selected_packs_title_panel", "selected_pack_section", "offset_2", "available_packs_title_panel", "available_packs_section", "offset_3", "realms_packs_title_button", "realms_packs_section", "offset_4", "unowned_packs_title_button", "unowned_packs_section" ] }, "selected_stack_panel/world_template_option_lock_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "option_info_label" ] }, "selected_stack_panel/world_template_option_lock_panel/option_info_label": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "option_info_label", "namespace": "settings_common" } }, "selected_stack_panel/top_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "panel_bg", "header_control" ] }, "selected_stack_panel/top_panel/panel_bg": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "panel_bg", "namespace": "resource_packs" } }, "selected_stack_panel/top_panel/header_control": { "file": "ui/resource_packs_screen.json", "type": "toggle", "extend": { "name": "header_control", "namespace": "resource_packs" } }, "selected_stack_panel/offset_0": { "file": "ui/resource_packs_screen.json", "type": "panel" }, "selected_stack_panel/addon_stacking_warning_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "addon_panel_bg", "header_control" ] }, "selected_stack_panel/addon_stacking_warning_panel/addon_panel_bg": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "addon_panel_bg", "namespace": "resource_packs" } }, "selected_stack_panel/addon_stacking_warning_panel/header_control": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "addon_header_control", "namespace": "resource_packs" } }, "selected_stack_panel/offset_1": { "file": "ui/resource_packs_screen.json", "type": "panel" }, "selected_stack_panel/selected_packs_title_panel": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "children": [ "selected_packs_title_button", "tooltip" ] }, "selected_stack_panel/selected_packs_title_panel/selected_packs_title_button": { "file": "ui/resource_packs_screen.json", "type": "button", "extend": { "name": "selected_packs_title_button", "namespace": "resource_packs" } }, "selected_stack_panel/selected_packs_title_panel/tooltip": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "button" ] }, "selected_stack_panel/selected_packs_title_panel/tooltip/button": { "file": "ui/resource_packs_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "selected_stack_panel/selected_pack_section": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "children": [ "offset", "selected_pack_grid", "default_item", "filler_panel" ] }, "selected_stack_panel/selected_pack_section/offset": { "file": "ui/resource_packs_screen.json", "type": "panel" }, "selected_stack_panel/selected_pack_section/selected_pack_grid": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "extend": { "name": "selected_pack_grid", "namespace": "resource_packs" } }, "selected_stack_panel/selected_pack_section/default_item": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "icon_image", "name_panel", "description_panel" ] }, "selected_stack_panel/selected_pack_section/default_item/icon_image": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "icon_image", "namespace": "resource_packs" } }, "selected_stack_panel/selected_pack_section/default_item/name_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "white_label" ] }, "selected_stack_panel/selected_pack_section/default_item/name_panel/white_label": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "white_label", "namespace": "resource_packs" } }, "selected_stack_panel/selected_pack_section/default_item/description_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "white_label" ] }, "selected_stack_panel/selected_pack_section/default_item/description_panel/white_label": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "white_label", "namespace": "resource_packs" } }, "selected_stack_panel/selected_pack_section/filler_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "description_label" ] }, "selected_stack_panel/selected_pack_section/filler_panel/description_label": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "description_label", "namespace": "resource_packs" } }, "selected_stack_panel/offset_2": { "file": "ui/resource_packs_screen.json", "type": "panel" }, "selected_stack_panel/available_packs_title_panel": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "children": [ "available_packs_title_button", "tooltip" ] }, "selected_stack_panel/available_packs_title_panel/available_packs_title_button": { "file": "ui/resource_packs_screen.json", "type": "button", "extend": { "name": "available_packs_title_button", "namespace": "resource_packs" } }, "selected_stack_panel/available_packs_title_panel/tooltip": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "button" ] }, "selected_stack_panel/available_packs_title_panel/tooltip/button": { "file": "ui/resource_packs_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "selected_stack_panel/available_packs_section": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "children": [ "offset", "empty_panel", "available_pack_grid", "invalid_pack_grid" ] }, "selected_stack_panel/available_packs_section/offset": { "file": "ui/resource_packs_screen.json", "type": "panel" }, "selected_stack_panel/available_packs_section/empty_panel": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "children": [ "no_packs_panel", "to_store_button" ] }, "selected_stack_panel/available_packs_section/empty_panel/no_packs_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "no_packs_text" ] }, "selected_stack_panel/available_packs_section/empty_panel/no_packs_panel/no_packs_text": { "file": "ui/resource_packs_screen.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "selected_stack_panel/available_packs_section/empty_panel/to_store_button": { "file": "ui/resource_packs_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "selected_stack_panel/available_packs_section/available_pack_grid": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "extend": { "name": "available_pack_grid", "namespace": "resource_packs" } }, "selected_stack_panel/available_packs_section/invalid_pack_grid": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "extend": { "name": "invalid_pack_grid", "namespace": "resource_packs" } }, "selected_stack_panel/offset_3": { "file": "ui/resource_packs_screen.json", "type": "panel" }, "selected_stack_panel/realms_packs_title_button": { "file": "ui/resource_packs_screen.json", "type": "button", "extend": { "name": "realms_packs_title_button", "namespace": "resource_packs" } }, "selected_stack_panel/realms_packs_section": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "children": [ "offset", "realms_pack_grid", "offset_4" ] }, "selected_stack_panel/realms_packs_section/offset": { "file": "ui/resource_packs_screen.json", "type": "panel" }, "selected_stack_panel/realms_packs_section/realms_pack_grid": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "extend": { "name": "realms_pack_grid", "namespace": "resource_packs" } }, "selected_stack_panel/realms_packs_section/offset_4": { "file": "ui/resource_packs_screen.json", "type": "panel" }, "selected_stack_panel/offset_4": { "file": "ui/resource_packs_screen.json", "type": "panel" }, "selected_stack_panel/unowned_packs_title_button": { "file": "ui/resource_packs_screen.json", "type": "button", "extend": { "name": "unowned_packs_title_button", "namespace": "resource_packs" } }, "selected_stack_panel/unowned_packs_section": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "children": [ "offset", "unowned_pack_grid", "to_store_button", "offset_4" ] }, "selected_stack_panel/unowned_packs_section/offset": { "file": "ui/resource_packs_screen.json", "type": "panel" }, "selected_stack_panel/unowned_packs_section/unowned_pack_grid": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "extend": { "name": "unowned_pack_grid", "namespace": "resource_packs" } }, "selected_stack_panel/unowned_packs_section/to_store_button": { "file": "ui/resource_packs_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "selected_stack_panel/unowned_packs_section/offset_4": { "file": "ui/resource_packs_screen.json", "type": "panel" }, "available_stack_panel": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "children": [ "available_packs_title_button", "available_pack_grid" ] }, "available_stack_panel/available_packs_title_button": { "file": "ui/resource_packs_screen.json", "type": "button", "extend": { "name": "available_packs_title_button", "namespace": "resource_packs" } }, "available_stack_panel/available_pack_grid": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "extend": { "name": "available_pack_grid", "namespace": "resource_packs" } }, "pack_background": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "white_image", "gray_image" ] }, "pack_background/white_image": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "white_image", "namespace": "resource_packs" } }, "pack_background/gray_image": { "file": "ui/resource_packs_screen.json", "type": "image", "extend": { "name": "gray_image", "namespace": "resource_packs" } }, "selected_pack_panel": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "children": [ "selected_pack_button", "pad_0", "center_panel", "divider", "pad_1" ] }, "selected_pack_panel/selected_pack_button": { "file": "ui/resource_packs_screen.json", "type": "button", "extend": { "name": "selected_pack_button", "namespace": "resource_packs" } }, "selected_pack_panel/pad_0": { "file": "ui/resource_packs_screen.json", "type": "panel" }, "selected_pack_panel/center_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "visibility_panel" ] }, "selected_pack_panel/center_panel/visibility_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "selected_pack_direction_buttons" ] }, "selected_pack_panel/center_panel/visibility_panel/selected_pack_direction_buttons": { "file": "ui/resource_packs_screen.json", "type": "input_panel", "extend": { "name": "input_button_panel", "namespace": "resource_packs" } }, "selected_pack_panel/divider": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "horizontal_divider", "namespace": "common" } }, "selected_pack_panel/pad_1": { "file": "ui/resource_packs_screen.json", "type": "panel" }, "available_pack_panel": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "children": [ "available_pack_button", "pad_0", "center_panel", "divider", "pad_1" ] }, "available_pack_panel/available_pack_button": { "file": "ui/resource_packs_screen.json", "type": "button", "extend": { "name": "available_pack_button", "namespace": "resource_packs" } }, "available_pack_panel/pad_0": { "file": "ui/resource_packs_screen.json", "type": "panel" }, "available_pack_panel/center_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "available_pack_direction_buttons" ] }, "available_pack_panel/center_panel/available_pack_direction_buttons": { "file": "ui/resource_packs_screen.json", "type": "input_panel", "extend": { "name": "input_button_panel", "namespace": "resource_packs" } }, "available_pack_panel/divider": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "horizontal_divider", "namespace": "common" } }, "available_pack_panel/pad_1": { "file": "ui/resource_packs_screen.json", "type": "panel" }, "realms_pack_panel": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "children": [ "realms_pack_button", "pad_0", "center_panel", "divider", "pad_1" ] }, "realms_pack_panel/realms_pack_button": { "file": "ui/resource_packs_screen.json", "type": "button", "extend": { "name": "realms_pack_button", "namespace": "resource_packs" } }, "realms_pack_panel/pad_0": { "file": "ui/resource_packs_screen.json", "type": "panel" }, "realms_pack_panel/center_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "realms_pack_direction_buttons" ] }, "realms_pack_panel/center_panel/realms_pack_direction_buttons": { "file": "ui/resource_packs_screen.json", "type": "input_panel", "extend": { "name": "input_button_panel", "namespace": "resource_packs" } }, "realms_pack_panel/divider": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "horizontal_divider", "namespace": "common" } }, "realms_pack_panel/pad_1": { "file": "ui/resource_packs_screen.json", "type": "panel" }, "unowned_pack_panel": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "children": [ "unowned_pack_button", "pad_0", "center_panel", "divider", "pad_1" ] }, "unowned_pack_panel/unowned_pack_button": { "file": "ui/resource_packs_screen.json", "type": "button", "extend": { "name": "unowned_pack_button", "namespace": "resource_packs" } }, "unowned_pack_panel/pad_0": { "file": "ui/resource_packs_screen.json", "type": "panel" }, "unowned_pack_panel/center_panel": { "file": "ui/resource_packs_screen.json", "type": "panel", "children": [ "realms_pack_direction_buttons" ] }, "unowned_pack_panel/center_panel/realms_pack_direction_buttons": { "file": "ui/resource_packs_screen.json", "type": "input_panel", "extend": { "name": "input_button_panel", "namespace": "resource_packs" } }, "unowned_pack_panel/divider": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "horizontal_divider", "namespace": "common" } }, "unowned_pack_panel/pad_1": { "file": "ui/resource_packs_screen.json", "type": "panel" }, "invalid_pack_panel": { "file": "ui/resource_packs_screen.json", "type": "stack_panel", "children": [ "invalid_pack_button", "pad_0", "divider", "pad_1" ] }, "invalid_pack_panel/invalid_pack_button": { "file": "ui/resource_packs_screen.json", "type": "button", "extend": { "name": "invalid_pack_button", "namespace": "resource_packs" } }, "invalid_pack_panel/pad_0": { "file": "ui/resource_packs_screen.json", "type": "panel" }, "invalid_pack_panel/divider": { "file": "ui/resource_packs_screen.json", "type": "panel", "extend": { "name": "horizontal_divider", "namespace": "common" } }, "invalid_pack_panel/pad_1": { "file": "ui/resource_packs_screen.json", "type": "panel" }, "selected_pack_grid": { "file": "ui/resource_packs_screen.json", "type": "stack_panel" }, "available_pack_grid": { "file": "ui/resource_packs_screen.json", "type": "stack_panel" }, "realms_pack_grid": { "file": "ui/resource_packs_screen.json", "type": "stack_panel" }, "unowned_pack_grid": { "file": "ui/resource_packs_screen.json", "type": "stack_panel" }, "invalid_pack_grid": { "file": "ui/resource_packs_screen.json", "type": "stack_panel" } }, "safe_zone": { "corner_image_common": { "file": "ui/safe_zone_screen.json", "type": "image" }, "corner_bl": { "file": "ui/safe_zone_screen.json", "type": "image", "extend": { "name": "corner_image_common", "namespace": "safe_zone" } }, "corner_br": { "file": "ui/safe_zone_screen.json", "type": "image", "extend": { "name": "corner_image_common", "namespace": "safe_zone" } }, "corner_tr": { "file": "ui/safe_zone_screen.json", "type": "image", "extend": { "name": "corner_image_common", "namespace": "safe_zone" } }, "corner_tl": { "file": "ui/safe_zone_screen.json", "type": "image", "extend": { "name": "corner_image_common", "namespace": "safe_zone" } }, "confirm_button": { "file": "ui/safe_zone_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "title_text": { "file": "ui/safe_zone_screen.json", "type": "label" }, "instructions_text": { "file": "ui/safe_zone_screen.json", "type": "panel", "children": [ "inner_label" ] }, "instructions_text/inner_label": { "file": "ui/safe_zone_screen.json", "type": "label" }, "label_button": { "file": "ui/safe_zone_screen.json", "type": "button", "extend": { "name": "button", "namespace": "common" } }, "label_button_hover": { "file": "ui/safe_zone_screen.json", "type": "panel", "children": [ "hover" ] }, "label_button_hover/hover": { "file": "ui/safe_zone_screen.json", "type": "image", "extend": { "name": "focus_border_white", "namespace": "common" }, "children": [ "button_hover_text" ] }, "label_button_hover/hover/button_hover_text": { "file": "ui/safe_zone_screen.json", "type": "panel", "extend": { "name": "instructions_text", "namespace": "safe_zone" } }, "content_panel": { "file": "ui/safe_zone_screen.json", "type": "stack_panel", "children": [ "safe_zone_slider_all", "safe_zone_slider_x", "safe_zone_slider_y", "screen_position_slider_x", "screen_position_slider_y", "instruction_text_button" ] }, "content_panel/safe_zone_slider_all": { "file": "ui/safe_zone_screen.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "content_panel/safe_zone_slider_x": { "file": "ui/safe_zone_screen.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "content_panel/safe_zone_slider_y": { "file": "ui/safe_zone_screen.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "content_panel/screen_position_slider_x": { "file": "ui/safe_zone_screen.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "content_panel/screen_position_slider_y": { "file": "ui/safe_zone_screen.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "content_panel/instruction_text_button": { "file": "ui/safe_zone_screen.json", "type": "button", "extend": { "name": "label_button", "namespace": "safe_zone" }, "children": [ "default", "pressed", "hover" ] }, "content_panel/instruction_text_button/default": { "file": "ui/safe_zone_screen.json", "type": "panel", "extend": { "name": "instructions_text", "namespace": "safe_zone" } }, "content_panel/instruction_text_button/pressed": { "file": "ui/safe_zone_screen.json", "type": "panel", "extend": { "name": "label_button_hover", "namespace": "safe_zone" } }, "content_panel/instruction_text_button/hover": { "file": "ui/safe_zone_screen.json", "type": "panel", "extend": { "name": "label_button_hover", "namespace": "safe_zone" } }, "safe_zone_screen": { "file": "ui/safe_zone_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" }, "children": [ "safe_zone_bounds_markers", "main_content_panel" ] }, "safe_zone_screen/safe_zone_bounds_markers": { "file": "ui/safe_zone_screen.json", "type": "panel", "children": [ "top_left_marker", "top_right_marker", "bottom_left_marker", "bottom_right_marker" ] }, "safe_zone_screen/safe_zone_bounds_markers/top_left_marker": { "file": "ui/safe_zone_screen.json", "type": "image", "extend": { "name": "corner_tl", "namespace": "safe_zone" } }, "safe_zone_screen/safe_zone_bounds_markers/top_right_marker": { "file": "ui/safe_zone_screen.json", "type": "image", "extend": { "name": "corner_tr", "namespace": "safe_zone" } }, "safe_zone_screen/safe_zone_bounds_markers/bottom_left_marker": { "file": "ui/safe_zone_screen.json", "type": "image", "extend": { "name": "corner_bl", "namespace": "safe_zone" } }, "safe_zone_screen/safe_zone_bounds_markers/bottom_right_marker": { "file": "ui/safe_zone_screen.json", "type": "image", "extend": { "name": "corner_br", "namespace": "safe_zone" } }, "safe_zone_screen/main_content_panel": { "file": "ui/safe_zone_screen.json", "type": "panel", "children": [ "common_panel", "title_text", "scrolling_panel", "confirm_button" ] }, "safe_zone_screen/main_content_panel/common_panel": { "file": "ui/safe_zone_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "safe_zone_screen/main_content_panel/title_text": { "file": "ui/safe_zone_screen.json", "type": "label", "extend": { "name": "title_text", "namespace": "safe_zone" } }, "safe_zone_screen/main_content_panel/scrolling_panel": { "file": "ui/safe_zone_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "safe_zone_screen/main_content_panel/confirm_button": { "file": "ui/safe_zone_screen.json", "type": "button", "extend": { "name": "confirm_button", "namespace": "safe_zone" } } }, "storage_migration_common": { "progress_panel": { "file": "ui/storage_migration_common.json", "type": "panel", "children": [ "common_panel", "base_content", "inside_content" ] }, "progress_panel/common_panel": { "file": "ui/storage_migration_common.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "progress_panel/base_content": { "file": "ui/storage_migration_common.json", "type": "panel", "children": [ "progress_title_text", "progress_bar_text" ] }, "progress_panel/base_content/progress_title_text": { "file": "ui/storage_migration_common.json", "type": "label", "extend": { "name": "progress_title_text", "namespace": "progress" } }, "progress_panel/base_content/progress_bar_text": { "file": "ui/storage_migration_common.json", "type": "label", "extend": { "name": "progress_bar_text", "namespace": "progress" } }, "progress_panel/inside_content": { "file": "ui/storage_migration_common.json", "type": "stack_panel", "children": [ "size_label", "padding_1", "loading_bar_panel", "padding_3" ] }, "progress_panel/inside_content/size_label": { "file": "ui/storage_migration_common.json", "type": "label" }, "progress_panel/inside_content/padding_1": { "file": "ui/storage_migration_common.json", "type": "panel" }, "progress_panel/inside_content/loading_bar_panel": { "file": "ui/storage_migration_common.json", "type": "panel", "children": [ "fancy_progress_loading_bars", "progress_loading_bars" ] }, "progress_panel/inside_content/loading_bar_panel/fancy_progress_loading_bars": { "file": "ui/storage_migration_common.json", "type": "panel", "extend": { "name": "fancy_progress_loading_bars", "namespace": "progress" } }, "progress_panel/inside_content/loading_bar_panel/progress_loading_bars": { "file": "ui/storage_migration_common.json", "type": "image", "extend": { "name": "progress_loading_bars", "namespace": "progress" } }, "progress_panel/inside_content/padding_3": { "file": "ui/storage_migration_common.json", "type": "panel" }, "label": { "file": "ui/storage_migration_common.json", "type": "label" }, "base_button": { "file": "ui/storage_migration_common.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "retry_button": { "file": "ui/storage_migration_common.json", "type": "button", "extend": { "name": "base_button", "namespace": "storage_migration_common" } }, "go_to_faq_button": { "file": "ui/storage_migration_common.json", "type": "button", "extend": { "name": "base_button", "namespace": "storage_migration_common" } }, "next_button": { "file": "ui/storage_migration_common.json", "type": "button", "extend": { "name": "base_button", "namespace": "storage_migration_common" } }, "get_started_button": { "file": "ui/storage_migration_common.json", "type": "button", "extend": { "name": "base_button", "namespace": "storage_migration_common" } }, "start_transfer_button": { "file": "ui/storage_migration_common.json", "type": "button", "extend": { "name": "base_button", "namespace": "storage_migration_common" } }, "finished_main_menu_button": { "file": "ui/storage_migration_common.json", "type": "button", "extend": { "name": "base_button", "namespace": "storage_migration_common" } }, "start_transfer_out_of_space_button": { "file": "ui/storage_migration_common.json", "type": "button", "extend": { "name": "base_button", "namespace": "storage_migration_common" } }, "continue_out_of_space_button": { "file": "ui/storage_migration_common.json", "type": "button", "extend": { "name": "base_button", "namespace": "storage_migration_common" } }, "resume_transfer_button": { "file": "ui/storage_migration_common.json", "type": "button", "extend": { "name": "base_button", "namespace": "storage_migration_common" } }, "exit_button": { "file": "ui/storage_migration_common.json", "type": "button", "extend": { "name": "base_button", "namespace": "storage_migration_common" } }, "retry_help_button_panel": { "file": "ui/storage_migration_common.json", "type": "stack_panel", "children": [ "retry", "padding", "help" ] }, "retry_help_button_panel/retry": { "file": "ui/storage_migration_common.json", "type": "button", "extend": { "name": "retry_button", "namespace": "storage_migration_common" } }, "retry_help_button_panel/padding": { "file": "ui/storage_migration_common.json", "type": "panel" }, "retry_help_button_panel/help": { "file": "ui/storage_migration_common.json", "type": "button", "extend": { "name": "go_to_faq_button", "namespace": "storage_migration_common" } }, "modal_no_buttons": { "file": "ui/storage_migration_common.json", "type": "panel", "extend": { "name": "main_panel_no_buttons", "namespace": "common_dialogs" } }, "modal_one_button": { "file": "ui/storage_migration_common.json", "type": "panel", "extend": { "name": "main_panel_one_button", "namespace": "common_dialogs" } }, "modal_two_buttons": { "file": "ui/storage_migration_common.json", "type": "panel", "extend": { "name": "main_panel_two_buttons", "namespace": "common_dialogs" } }, "base_child_control": { "file": "ui/storage_migration_common.json", "type": "panel", "children": [ "scrolling_panel" ] }, "base_child_control/scrolling_panel": { "file": "ui/storage_migration_common.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "file_size_description": { "file": "ui/storage_migration_common.json", "type": "stack_panel", "children": [ "description", "padding", "size_stack", "file_location" ] }, "file_size_description/description": { "file": "ui/storage_migration_common.json", "type": "label", "extend": { "name": "label", "namespace": "storage_migration_common" } }, "file_size_description/padding": { "file": "ui/storage_migration_common.json", "type": "panel" }, "file_size_description/size_stack": { "file": "ui/storage_migration_common.json", "type": "stack_panel", "children": [ "file_text", "padding_1", "file_size_total", "padding_2", "file_size_available" ] }, "file_size_description/size_stack/file_text": { "file": "ui/storage_migration_common.json", "type": "label", "extend": { "name": "label", "namespace": "storage_migration_common" } }, "file_size_description/size_stack/padding_1": { "file": "ui/storage_migration_common.json", "type": "panel" }, "file_size_description/size_stack/file_size_total": { "file": "ui/storage_migration_common.json", "type": "label", "extend": { "name": "label", "namespace": "storage_migration_common" } }, "file_size_description/size_stack/padding_2": { "file": "ui/storage_migration_common.json", "type": "panel" }, "file_size_description/size_stack/file_size_available": { "file": "ui/storage_migration_common.json", "type": "label", "extend": { "name": "label", "namespace": "storage_migration_common" } }, "file_size_description/file_location": { "file": "ui/storage_migration_common.json", "type": "label", "extend": { "name": "label", "namespace": "storage_migration_common" } }, "error_icon_and_description": { "file": "ui/storage_migration_common.json", "type": "stack_panel", "children": [ "error_image", "description" ] }, "error_icon_and_description/error_image": { "file": "ui/storage_migration_common.json", "type": "image" }, "error_icon_and_description/description": { "file": "ui/storage_migration_common.json", "type": "label", "extend": { "name": "label", "namespace": "storage_migration_common" } }, "file_size_description_with_error": { "file": "ui/storage_migration_common.json", "type": "stack_panel", "children": [ "file_size", "padding", "error_icon_and_description" ] }, "file_size_description_with_error/file_size": { "file": "ui/storage_migration_common.json", "type": "stack_panel", "extend": { "name": "file_size_description", "namespace": "storage_migration_common" } }, "file_size_description_with_error/padding": { "file": "ui/storage_migration_common.json", "type": "panel" }, "file_size_description_with_error/error_icon_and_description": { "file": "ui/storage_migration_common.json", "type": "stack_panel", "extend": { "name": "error_icon_and_description", "namespace": "storage_migration_common" } }, "start_transfer": { "file": "ui/storage_migration_common.json", "type": "panel", "extend": { "name": "modal_one_button", "namespace": "storage_migration_common" } }, "start_transfer_content": { "file": "ui/storage_migration_common.json", "type": "stack_panel", "extend": { "name": "file_size_description", "namespace": "storage_migration_common" } }, "resume_transfer": { "file": "ui/storage_migration_common.json", "type": "panel", "extend": { "name": "modal_one_button", "namespace": "storage_migration_common" } }, "resume_transfer_content": { "file": "ui/storage_migration_common.json", "type": "stack_panel", "children": [ "file_size" ] }, "resume_transfer_content/file_size": { "file": "ui/storage_migration_common.json", "type": "stack_panel", "extend": { "name": "file_size_description", "namespace": "storage_migration_common" } }, "transfer_error_out_of_space": { "file": "ui/storage_migration_common.json", "type": "panel", "extend": { "name": "modal_one_button", "namespace": "storage_migration_common" } }, "transfer_error_out_of_space_content": { "file": "ui/storage_migration_common.json", "type": "stack_panel", "extend": { "name": "file_size_description_with_error", "namespace": "storage_migration_common" } } }, "storage_migration_generic": { "storage_migration_generic_screen": { "file": "ui/storage_migration_generic_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "modal_screen_content": { "file": "ui/storage_migration_generic_screen.json", "type": "panel", "children": [ "modal_progress_panel_no_cancel", "popup_dialog_factory" ] }, "modal_screen_content/modal_progress_panel_no_cancel": { "file": "ui/storage_migration_generic_screen.json", "type": "panel", "extend": { "name": "progress_panel", "namespace": "storage_migration_common" } }, "modal_screen_content/popup_dialog_factory": { "file": "ui/storage_migration_generic_screen.json", "type": "factory" }, "start_transfer": { "file": "ui/storage_migration_generic_screen.json", "type": "panel", "extend": { "name": "start_transfer", "namespace": "storage_migration_common" } }, "start_transfer_out_of_space": { "file": "ui/storage_migration_generic_screen.json", "type": "panel", "extend": { "name": "start_transfer", "namespace": "storage_migration_common" } }, "start_transfer_out_of_space_content": { "file": "ui/storage_migration_generic_screen.json", "type": "stack_panel", "children": [ "base_start_content", "padding", "error_icon_and_description" ] }, "start_transfer_out_of_space_content/base_start_content": { "file": "ui/storage_migration_generic_screen.json", "type": "stack_panel", "extend": { "name": "start_transfer_content", "namespace": "storage_migration_common" } }, "start_transfer_out_of_space_content/padding": { "file": "ui/storage_migration_generic_screen.json", "type": "panel" }, "start_transfer_out_of_space_content/error_icon_and_description": { "file": "ui/storage_migration_generic_screen.json", "type": "stack_panel", "extend": { "name": "error_icon_and_description", "namespace": "storage_migration_common" } }, "finished": { "file": "ui/storage_migration_generic_screen.json", "type": "panel", "extend": { "name": "modal_one_button", "namespace": "storage_migration_common" } }, "finished_content": { "file": "ui/storage_migration_generic_screen.json", "type": "stack_panel", "children": [ "description" ] }, "finished_content/description": { "file": "ui/storage_migration_generic_screen.json", "type": "label", "extend": { "name": "label", "namespace": "storage_migration_common" } }, "resume_transfer_out_of_space": { "file": "ui/storage_migration_generic_screen.json", "type": "panel", "extend": { "name": "modal_one_button", "namespace": "storage_migration_common" } }, "resume_transfer_out_of_space_content": { "file": "ui/storage_migration_generic_screen.json", "type": "stack_panel", "extend": { "name": "file_size_description_with_error", "namespace": "storage_migration_common" } }, "transfer_error": { "file": "ui/storage_migration_generic_screen.json", "type": "panel", "extend": { "name": "modal_one_button", "namespace": "storage_migration_common" } }, "transfer_error_content": { "file": "ui/storage_migration_generic_screen.json", "type": "stack_panel", "children": [ "description" ] }, "transfer_error_content/description": { "file": "ui/storage_migration_generic_screen.json", "type": "label", "extend": { "name": "label", "namespace": "storage_migration_common" } }, "transfer_error_out_of_space": { "file": "ui/storage_migration_generic_screen.json", "type": "panel", "extend": { "name": "transfer_error_out_of_space", "namespace": "storage_migration_common" } } }, "scoreboard": { "scoreboard_sidebar_score": { "file": "ui/scoreboards.json", "type": "label" }, "scoreboard_sidebar_player": { "file": "ui/scoreboards.json", "type": "label" }, "scoreboard_sidebar": { "file": "ui/scoreboards.json", "type": "panel", "children": [ "main", "displayed_objective_background" ] }, "scoreboard_sidebar/main": { "file": "ui/scoreboards.json", "type": "image", "children": [ "displayed_objective", "lists" ] }, "scoreboard_sidebar/main/displayed_objective": { "file": "ui/scoreboards.json", "type": "label" }, "scoreboard_sidebar/main/lists": { "file": "ui/scoreboards.json", "type": "panel", "children": [ "players", "horizontal_padding", "scores" ] }, "scoreboard_sidebar/main/lists/players": { "file": "ui/scoreboards.json", "type": "stack_panel" }, "scoreboard_sidebar/main/lists/horizontal_padding": { "file": "ui/scoreboards.json", "type": "panel" }, "scoreboard_sidebar/main/lists/scores": { "file": "ui/scoreboards.json", "type": "stack_panel" }, "scoreboard_sidebar/displayed_objective_background": { "file": "ui/scoreboards.json", "type": "image" }, "scoreboard_player_list": { "file": "ui/scoreboards.json", "type": "stack_panel", "children": [ "vertical_padding_0", "social_buttons_panel", "vertical_padding_1", "permissions_button", "vertical_padding_2", "players_label", "vertical_padding_3", "scored_players_grid_panel", "vertical_padding_4", "unscored_players_grid_panel", "vertical_padding_5", "invite_players_button_panel", "vertical_padding_6", "disconnected_from_multiplayer_label_panel", "vertical_padding_7" ] }, "scoreboard_player_list/vertical_padding_0": { "file": "ui/scoreboards.json", "type": "panel", "extend": { "name": "vertical_padding", "namespace": "pause" } }, "scoreboard_player_list/social_buttons_panel": { "file": "ui/scoreboards.json", "type": "stack_panel", "extend": { "name": "social_buttons_panel", "namespace": "pause" } }, "scoreboard_player_list/vertical_padding_1": { "file": "ui/scoreboards.json", "type": "panel", "extend": { "name": "vertical_padding", "namespace": "pause" } }, "scoreboard_player_list/permissions_button": { "file": "ui/scoreboards.json", "type": "button", "extend": { "name": "dark_text_button", "namespace": "common_buttons" } }, "scoreboard_player_list/vertical_padding_2": { "file": "ui/scoreboards.json", "type": "panel", "extend": { "name": "vertical_padding", "namespace": "pause" } }, "scoreboard_player_list/players_label": { "file": "ui/scoreboards.json", "type": "label", "extend": { "name": "list_objective_label", "namespace": "scoreboard" } }, "scoreboard_player_list/vertical_padding_3": { "file": "ui/scoreboards.json", "type": "panel", "extend": { "name": "vertical_padding", "namespace": "pause" } }, "scoreboard_player_list/scored_players_grid_panel": { "file": "ui/scoreboards.json", "type": "stack_panel", "extend": { "name": "players_scored_grid_list", "namespace": "scoreboard" } }, "scoreboard_player_list/vertical_padding_4": { "file": "ui/scoreboards.json", "type": "panel", "extend": { "name": "vertical_padding", "namespace": "pause" } }, "scoreboard_player_list/unscored_players_grid_panel": { "file": "ui/scoreboards.json", "type": "stack_panel", "extend": { "name": "players_unscored_grid_list", "namespace": "scoreboard" } }, "scoreboard_player_list/vertical_padding_5": { "file": "ui/scoreboards.json", "type": "panel", "extend": { "name": "vertical_padding", "namespace": "pause" } }, "scoreboard_player_list/invite_players_button_panel": { "file": "ui/scoreboards.json", "type": "panel", "extend": { "name": "invite_players_button_panel", "namespace": "pause" } }, "scoreboard_player_list/vertical_padding_6": { "file": "ui/scoreboards.json", "type": "panel", "extend": { "name": "vertical_padding", "namespace": "pause" } }, "scoreboard_player_list/disconnected_from_multiplayer_label_panel": { "file": "ui/scoreboards.json", "type": "stack_panel", "extend": { "name": "disconnected_from_multiplayer_label_panel", "namespace": "pause" } }, "scoreboard_player_list/vertical_padding_7": { "file": "ui/scoreboards.json", "type": "panel", "extend": { "name": "vertical_padding", "namespace": "pause" } }, "list_objective_label": { "file": "ui/scoreboards.json", "type": "label" }, "player_rank_panel": { "file": "ui/scoreboards.json", "type": "panel", "children": [ "player_rank_bg" ] }, "player_rank_panel/player_rank_bg": { "file": "ui/scoreboards.json", "type": "image", "children": [ "player_rank" ] }, "player_rank_panel/player_rank_bg/player_rank": { "file": "ui/scoreboards.json", "type": "label" }, "player_icon_panel": { "file": "ui/scoreboards.json", "type": "panel", "children": [ "player_icon", "permission_icon" ] }, "player_icon_panel/player_icon": { "file": "ui/scoreboards.json", "type": "image", "children": [ "player_panel_black_border" ] }, "player_icon_panel/player_icon/player_panel_black_border": { "file": "ui/scoreboards.json", "type": "image", "extend": { "name": "pause_screen_border", "namespace": "pause" } }, "player_icon_panel/permission_icon": { "file": "ui/scoreboards.json", "type": "image" }, "player_name": { "file": "ui/scoreboards.json", "type": "label" }, "player_score": { "file": "ui/scoreboards.json", "type": "label" }, "player_details": { "file": "ui/scoreboards.json", "type": "stack_panel", "children": [ "name_panel", "score_panel" ] }, "player_details/name_panel": { "file": "ui/scoreboards.json", "type": "panel", "children": [ "name" ] }, "player_details/name_panel/name": { "file": "ui/scoreboards.json", "type": "label", "extend": { "name": "player_name", "namespace": "scoreboard" } }, "player_details/score_panel": { "file": "ui/scoreboards.json", "type": "panel", "children": [ "score" ] }, "player_details/score_panel/score": { "file": "ui/scoreboards.json", "type": "label", "extend": { "name": "player_score", "namespace": "scoreboard" } }, "player_content": { "file": "ui/scoreboards.json", "type": "stack_panel", "children": [ "icon", "padding", "details" ] }, "player_content/icon": { "file": "ui/scoreboards.json", "type": "panel", "extend": { "name": "player_icon_panel", "namespace": "scoreboard" } }, "player_content/padding": { "file": "ui/scoreboards.json", "type": "panel" }, "player_content/details": { "file": "ui/scoreboards.json", "type": "stack_panel", "extend": { "name": "player_details", "namespace": "scoreboard" } }, "base_player_button": { "file": "ui/scoreboards.json", "type": "button", "extend": { "name": "dark_content_button", "namespace": "common_buttons" } }, "player_panel": { "file": "ui/scoreboards.json", "type": "stack_panel", "children": [ "rank_base", "player_button" ] }, "player_panel/rank_base": { "file": "ui/scoreboards.json", "type": "panel", "children": [ "player_rank" ] }, "player_panel/rank_base/player_rank": { "file": "ui/scoreboards.json", "type": "panel", "extend": { "name": "player_rank_panel", "namespace": "scoreboard" } }, "player_panel/player_button": { "file": "ui/scoreboards.json", "type": "button", "extend": { "name": "base_player_button", "namespace": "scoreboard" } }, "players_grid_list": { "file": "ui/scoreboards.json", "type": "stack_panel" }, "players_unscored_grid_list": { "file": "ui/scoreboards.json", "type": "stack_panel", "extend": { "name": "players_grid_list", "namespace": "scoreboard" } }, "players_scored_grid_list": { "file": "ui/scoreboards.json", "type": "stack_panel", "extend": { "name": "players_grid_list", "namespace": "scoreboard" } } }, "screenshot": { "screenshot_flash_image": { "file": "ui/screenshot_screen.json", "type": "image" }, "screenshot_screen": { "file": "ui/screenshot_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "screenshot_screen_content": { "file": "ui/screenshot_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" }, "children": [ "transparent_background", "screenshot_flash" ] }, "screenshot_screen_content/transparent_background": { "file": "ui/screenshot_screen.json", "type": "image", "extend": { "name": "transparent_background", "namespace": "feed_common" } }, "screenshot_screen_content/screenshot_flash": { "file": "ui/screenshot_screen.json", "type": "image", "extend": { "name": "screenshot_flash_image", "namespace": "screenshot" } } }, "select_world": { "popup_dialog__add_on_common": { "file": "ui/select_world_screen.json", "type": "input_panel", "extend": { "name": "popup_dialog", "namespace": "popup_dialog" } }, "popup_dialog__add_on_common_no_buttons": { "file": "ui/select_world_screen.json", "type": "input_panel", "extend": { "name": "popup_dialog__add_on_common", "namespace": "select_world" }, "children": [ "popup_dialog_bg", "popup_dialog_message", "close_button", "add_on_popup_content_panel" ] }, "popup_dialog__add_on_common_no_buttons/popup_dialog_bg": { "file": "ui/select_world_screen.json", "type": "image", "extend": { "name": "dialog_background_hollow_3", "namespace": "common" } }, "popup_dialog__add_on_common_no_buttons/popup_dialog_message": { "file": "ui/select_world_screen.json", "type": "label", "extend": { "name": "popup_dialog_message", "namespace": "popup_dialog" } }, "popup_dialog__add_on_common_no_buttons/close_button": { "file": "ui/select_world_screen.json", "type": "button", "extend": { "name": "close_button", "namespace": "common" } }, "popup_dialog__add_on_common_no_buttons/add_on_popup_content_panel": { "file": "ui/select_world_screen.json", "type": "panel", "extend": { "name": "add_on_popup_content_panel", "namespace": "select_world" } }, "popup_dialog__add_on_common_two_buttons": { "file": "ui/select_world_screen.json", "type": "input_panel", "extend": { "name": "popup_dialog__add_on_common", "namespace": "select_world" }, "children": [ "popup_dialog_bg", "popup_dialog_message", "close_button", "add_on_popup_content_panel", "button_copy", "button_continue" ] }, "popup_dialog__add_on_common_two_buttons/popup_dialog_bg": { "file": "ui/select_world_screen.json", "type": "image", "extend": { "name": "dialog_background_hollow_1", "namespace": "common" } }, "popup_dialog__add_on_common_two_buttons/popup_dialog_message": { "file": "ui/select_world_screen.json", "type": "label", "extend": { "name": "popup_dialog_message", "namespace": "popup_dialog" } }, "popup_dialog__add_on_common_two_buttons/close_button": { "file": "ui/select_world_screen.json", "type": "button", "extend": { "name": "close_button", "namespace": "common" } }, "popup_dialog__add_on_common_two_buttons/add_on_popup_content_panel": { "file": "ui/select_world_screen.json", "type": "panel", "extend": { "name": "add_on_popup_content_panel", "namespace": "select_world" } }, "popup_dialog__add_on_common_two_buttons/button_copy": { "file": "ui/select_world_screen.json", "type": "button", "extend": { "name": "add_on_button_copy", "namespace": "select_world" } }, "popup_dialog__add_on_common_two_buttons/button_continue": { "file": "ui/select_world_screen.json", "type": "button", "extend": { "name": "add_on_button_continue", "namespace": "select_world" } }, "add_on_button_copy": { "file": "ui/select_world_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "add_on_button_continue": { "file": "ui/select_world_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "add_on_popup_content_panel": { "file": "ui/select_world_screen.json", "type": "panel", "children": [ "popup_content" ] }, "add_on_popup_content_panel/popup_content": { "file": "ui/select_world_screen.json", "type": "unknown" }, "popup_dialog__activate_add_on": { "file": "ui/select_world_screen.json", "type": "input_panel", "extend": { "name": "popup_dialog__add_on_common_no_buttons", "namespace": "select_world" } }, "popup_dialog__activate_add_on_select_world": { "file": "ui/select_world_screen.json", "type": "input_panel", "extend": { "name": "popup_dialog__add_on_common_no_buttons", "namespace": "select_world" } }, "popup_dialog__copy_local_world": { "file": "ui/select_world_screen.json", "type": "input_panel", "extend": { "name": "popup_dialog__add_on_common_two_buttons", "namespace": "select_world" } }, "popup_dialog__copy_realms_world": { "file": "ui/select_world_screen.json", "type": "input_panel", "extend": { "name": "popup_dialog__add_on_common_two_buttons", "namespace": "select_world" } }, "copy_local_world_panel": { "file": "ui/select_world_screen.json", "type": "stack_panel", "extend": { "name": "vertical_stack_panel", "namespace": "common" }, "children": [ "padding_top", "text_box", "padding_middle", "text_box2" ] }, "copy_local_world_panel/padding_top": { "file": "ui/select_world_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "copy_local_world_panel/text_box": { "file": "ui/select_world_screen.json", "type": "label" }, "copy_local_world_panel/padding_middle": { "file": "ui/select_world_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "copy_local_world_panel/text_box2": { "file": "ui/select_world_screen.json", "type": "label" }, "copy_realms_world_panel": { "file": "ui/select_world_screen.json", "type": "stack_panel", "extend": { "name": "vertical_stack_panel", "namespace": "common" }, "children": [ "padding_top", "text_box", "padding_middle", "text_box2" ] }, "copy_realms_world_panel/padding_top": { "file": "ui/select_world_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "copy_realms_world_panel/text_box": { "file": "ui/select_world_screen.json", "type": "label" }, "copy_realms_world_panel/padding_middle": { "file": "ui/select_world_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "copy_realms_world_panel/text_box2": { "file": "ui/select_world_screen.json", "type": "label" }, "new_or_existing_world_panel": { "file": "ui/select_world_screen.json", "type": "stack_panel", "extend": { "name": "horizontal_stack_panel", "namespace": "common" }, "children": [ "padding_left", "world_icon_existing", "padding_middle", "world_icon_new", "padding_right" ] }, "new_or_existing_world_panel/padding_left": { "file": "ui/select_world_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "new_or_existing_world_panel/world_icon_existing": { "file": "ui/select_world_screen.json", "type": "stack_panel", "extend": { "name": "world_icon_with_button", "namespace": "select_world" } }, "new_or_existing_world_panel/padding_middle": { "file": "ui/select_world_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "new_or_existing_world_panel/world_icon_new": { "file": "ui/select_world_screen.json", "type": "stack_panel", "extend": { "name": "world_icon_with_button", "namespace": "select_world" } }, "new_or_existing_world_panel/padding_right": { "file": "ui/select_world_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "world_icon_with_button": { "file": "ui/select_world_screen.json", "type": "stack_panel", "extend": { "name": "vertical_stack_panel", "namespace": "common" }, "children": [ "padding_top", "world_icon", "button", "padding_bottom" ] }, "world_icon_with_button/padding_top": { "file": "ui/select_world_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "world_icon_with_button/world_icon": { "file": "ui/select_world_screen.json", "type": "panel", "extend": { "name": "vert_stack_centering_panel", "namespace": "common" } }, "world_icon_with_button/button": { "file": "ui/select_world_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "world_icon_with_button/padding_bottom": { "file": "ui/select_world_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "world_icon_new": { "file": "ui/select_world_screen.json", "type": "image", "children": [ "plus_button" ] }, "world_icon_new/plus_button": { "file": "ui/select_world_screen.json", "type": "image" }, "world_icon_existing": { "file": "ui/select_world_screen.json", "type": "image" }, "select_world_panel": { "file": "ui/select_world_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "select_world_list": { "file": "ui/select_world_screen.json", "type": "stack_panel", "extend": { "name": "vertical_stack_panel", "namespace": "common" }, "children": [ "realms_world_label", "realms_world_list", "padding_middle", "local_world_label", "local_world_list", "padding_end" ] }, "select_world_list/realms_world_label": { "file": "ui/select_world_screen.json", "type": "label", "extend": { "name": "standard_title_label", "namespace": "common_dialogs" } }, "select_world_list/realms_world_list": { "file": "ui/select_world_screen.json", "type": "grid", "extend": { "name": "realms_world_item_grid", "namespace": "play" } }, "select_world_list/padding_middle": { "file": "ui/select_world_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "select_world_list/local_world_label": { "file": "ui/select_world_screen.json", "type": "label", "extend": { "name": "standard_title_label", "namespace": "common_dialogs" } }, "select_world_list/local_world_list": { "file": "ui/select_world_screen.json", "type": "grid", "extend": { "name": "local_world_item_grid", "namespace": "play" } }, "select_world_list/padding_end": { "file": "ui/select_world_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "local_world_item_button": { "file": "ui/select_world_screen.json", "type": "button", "extend": { "name": "dark_content_button", "namespace": "common_buttons" } }, "realms_world_item_button": { "file": "ui/select_world_screen.json", "type": "button", "extend": { "name": "dark_content_button", "namespace": "common_buttons" } }, "select_world_screen_content": { "file": "ui/select_world_screen.json", "type": "panel", "children": [ "popup_dialog_factory" ] }, "select_world_screen_content/popup_dialog_factory": { "file": "ui/select_world_screen.json", "type": "factory" }, "select_world_popup_screen": { "file": "ui/select_world_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } } }, "server_form": { "third_party_server_screen": { "file": "ui/server_form.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "main_screen_content": { "file": "ui/server_form.json", "type": "panel", "children": [ "server_form_factory" ] }, "main_screen_content/server_form_factory": { "file": "ui/server_form.json", "type": "factory" }, "long_form": { "file": "ui/server_form.json", "type": "panel", "extend": { "name": "main_panel_no_buttons", "namespace": "common_dialogs" } }, "long_form_panel": { "file": "ui/server_form.json", "type": "stack_panel", "children": [ "scrolling_panel" ] }, "long_form_panel/scrolling_panel": { "file": "ui/server_form.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "long_form_scrolling_content": { "file": "ui/server_form.json", "type": "stack_panel", "children": [ "label_offset_panel", "padding", "wrapping_panel" ] }, "long_form_scrolling_content/label_offset_panel": { "file": "ui/server_form.json", "type": "panel", "children": [ "main_label" ] }, "long_form_scrolling_content/label_offset_panel/main_label": { "file": "ui/server_form.json", "type": "label" }, "long_form_scrolling_content/padding": { "file": "ui/server_form.json", "type": "panel" }, "long_form_scrolling_content/wrapping_panel": { "file": "ui/server_form.json", "type": "panel", "children": [ "long_form_dynamic_buttons_panel" ] }, "long_form_scrolling_content/wrapping_panel/long_form_dynamic_buttons_panel": { "file": "ui/server_form.json", "type": "stack_panel", "extend": { "name": "long_form_dynamic_buttons_panel", "namespace": "server_form" } }, "long_form_dynamic_buttons_panel": { "file": "ui/server_form.json", "type": "stack_panel" }, "dynamic_button": { "file": "ui/server_form.json", "type": "stack_panel", "children": [ "panel_name", "form_button" ] }, "dynamic_button/panel_name": { "file": "ui/server_form.json", "type": "panel", "children": [ "image", "progress" ] }, "dynamic_button/panel_name/image": { "file": "ui/server_form.json", "type": "image" }, "dynamic_button/panel_name/progress": { "file": "ui/server_form.json", "type": "image", "extend": { "name": "progress_loading_bars", "namespace": "progress" } }, "dynamic_button/form_button": { "file": "ui/server_form.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "dynamic_label": { "file": "ui/server_form.json", "type": "panel", "extend": { "name": "option_group_spaced_label", "namespace": "settings_common" } }, "dynamic_header": { "file": "ui/server_form.json", "type": "panel", "extend": { "name": "option_group_spaced_header", "namespace": "settings_common" } }, "custom_form": { "file": "ui/server_form.json", "type": "panel", "extend": { "name": "main_panel_no_buttons", "namespace": "common_dialogs" } }, "custom_form_panel": { "file": "ui/server_form.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "generated_contents": { "file": "ui/server_form.json", "type": "stack_panel" }, "custom_form_scrolling_content": { "file": "ui/server_form.json", "type": "stack_panel", "children": [ "generated_form", "submit_button" ] }, "custom_form_scrolling_content/generated_form": { "file": "ui/server_form.json", "type": "stack_panel", "extend": { "name": "generated_contents", "namespace": "server_form" } }, "custom_form_scrolling_content/submit_button": { "file": "ui/server_form.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "custom_label": { "file": "ui/server_form.json", "type": "panel", "extend": { "name": "option_group_label", "namespace": "settings_common" } }, "custom_header": { "file": "ui/server_form.json", "type": "panel", "extend": { "name": "option_group_header", "namespace": "settings_common" } }, "custom_toggle": { "file": "ui/server_form.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "custom_slider": { "file": "ui/server_form.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "custom_step_slider": { "file": "ui/server_form.json", "type": "panel", "extend": { "name": "custom_slider", "namespace": "server_form" } }, "custom_dropdown": { "file": "ui/server_form.json", "type": "panel", "children": [ "dropdown" ] }, "custom_dropdown/dropdown": { "file": "ui/server_form.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "custom_dropdown_content": { "file": "ui/server_form.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "custom_dropdown_radio": { "file": "ui/server_form.json", "type": "panel", "extend": { "name": "radio_with_label", "namespace": "settings_common" } }, "custom_input": { "file": "ui/server_form.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } } }, "settings": { "settings_screen_base": { "file": "ui/settings_screen.json", "type": "screen", "extend": { "name": "screen_base", "namespace": "settings_common" } }, "settings_screen_base_fullscreen": { "file": "ui/settings_screen.json", "type": "screen", "extend": { "name": "screen_base_fullscreen", "namespace": "settings_common" } }, "screen_world_create": { "file": "ui/settings_screen.json", "type": "screen", "extend": { "name": "settings_screen_base", "namespace": "settings" } }, "screen_template_create": { "file": "ui/settings_screen.json", "type": "screen", "extend": { "name": "settings_screen_base", "namespace": "settings" } }, "screen_world_edit": { "file": "ui/settings_screen.json", "type": "screen", "extend": { "name": "settings_screen_base", "namespace": "settings" } }, "screen_controls_and_settings": { "file": "ui/settings_screen.json", "type": "screen", "extend": { "name": "settings_screen_base", "namespace": "settings" } }, "screen_controls_and_settings_fullscreen": { "file": "ui/settings_screen.json", "type": "screen", "extend": { "name": "settings_screen_base_fullscreen", "namespace": "settings" } }, "screen_world_controls_and_settings": { "file": "ui/settings_screen.json", "type": "screen", "extend": { "name": "settings_screen_base", "namespace": "settings" } }, "screen_world_controls_and_settings_fullscreen": { "file": "ui/settings_screen.json", "type": "screen", "extend": { "name": "settings_screen_base_fullscreen", "namespace": "settings" } }, "screen_realm_controls_and_settings": { "file": "ui/settings_screen.json", "type": "screen", "extend": { "name": "settings_screen_base", "namespace": "settings" } }, "screen_realm_controls_and_settings_fullscreen": { "file": "ui/settings_screen.json", "type": "screen", "extend": { "name": "settings_screen_base_fullscreen", "namespace": "settings" } }, "screen_realm_member_controls_and_settings": { "file": "ui/settings_screen.json", "type": "screen", "extend": { "name": "settings_screen_base", "namespace": "settings" } }, "screen_realm_member_controls_and_settings_fullscreen": { "file": "ui/settings_screen.json", "type": "screen", "extend": { "name": "settings_screen_base_fullscreen", "namespace": "settings" } }, "screen_realm_settings": { "file": "ui/settings_screen.json", "type": "screen", "extend": { "name": "settings_screen_base", "namespace": "settings" } }, "screen_world_slot_edit": { "file": "ui/settings_screen.json", "type": "screen", "extend": { "name": "settings_screen_base", "namespace": "settings" } }, "screen_realm_manage": { "file": "ui/settings_screen.json", "type": "screen", "extend": { "name": "settings_screen_base", "namespace": "settings" } }, "screen_realm_invite_link_settings": { "file": "ui/settings_screen.json", "type": "screen", "extend": { "name": "settings_screen_base", "namespace": "settings" } }, "selector_stack_panel": { "file": "ui/settings_screen.json", "type": "stack_panel", "children": [ "spacer_0", "accessibility_button", "spacer_01", "world_selector_pane", "realm_selector_pane", "controls_and_settings_selector_pane", "spacer_24", "addons_selector_panel", "realms_invite_link_settings_pane" ] }, "selector_stack_panel/spacer_0": { "file": "ui/settings_screen.json", "type": "panel" }, "selector_stack_panel/accessibility_button": { "file": "ui/settings_screen.json", "type": "panel", "extend": { "name": "accessibility_button", "namespace": "general_section" } }, "selector_stack_panel/spacer_01": { "file": "ui/settings_screen.json", "type": "panel" }, "selector_stack_panel/world_selector_pane": { "file": "ui/settings_screen.json", "type": "stack_panel", "extend": { "name": "selector_pane_content", "namespace": "world_section" } }, "selector_stack_panel/realm_selector_pane": { "file": "ui/settings_screen.json", "type": "stack_panel", "extend": { "name": "selector_panel", "namespace": "realms_settings" } }, "selector_stack_panel/controls_and_settings_selector_pane": { "file": "ui/settings_screen.json", "type": "stack_panel", "children": [ "spacer_1", "spacer_1_no_spatial", "selector_group_label_1", "keyboard_and_mouse_button", "spacer_01", "controller_button", "spacer_02", "switch_controller_button", "spacer_03", "touch_button", "spacer_04", "spacer_04_no_spatial", "selector_group_label_2", "party_button", "spacer_05", "spacer_05_no_spatial", "selector_group_label_3", "general_button", "spacer_06", "video_button", "spacer_07", "sound_button", "spacer_08", "account_button", "spacer_09", "view_subscriptions_button", "spacer_10", "global_texture_pack_button", "spacer_11", "storage_management_button", "spacer_12", "edu_cloud_storage_button", "spacer_13", "language_button", "spacer_14", "creator_button", "spacer_15", "preview_button", "spacer_4", "spacer_4_no_spatial", "selector_group_label_4", "debug_button", "spacer_16", "discovery_debug_button", "spacer_17", "ui_debug_button", "spacer_18", "edu_debug_button", "spacer_19", "marketplace_debug_button", "spacer_20", "gatherings_debug_button", "spacer_21", "flighting_debug_button", "spacer_22", "realms_debug_button", "spacer_23", "automation_button" ] }, "selector_stack_panel/controls_and_settings_selector_pane/spacer_1": { "file": "ui/settings_screen.json", "type": "panel" }, "selector_stack_panel/controls_and_settings_selector_pane/spacer_1_no_spatial": { "file": "ui/settings_screen.json", "type": "panel" }, "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_1": { "file": "ui/settings_screen.json", "type": "label", "extend": { "name": "selector_group_label", "namespace": "settings_common" } }, "selector_stack_panel/controls_and_settings_selector_pane/keyboard_and_mouse_button": { "file": "ui/settings_screen.json", "type": "panel", "extend": { "name": "keyboard_and_mouse_button", "namespace": "controls_section" } }, "selector_stack_panel/controls_and_settings_selector_pane/spacer_01": { "file": "ui/settings_screen.json", "type": "panel" }, "selector_stack_panel/controls_and_settings_selector_pane/controller_button": { "file": "ui/settings_screen.json", "type": "panel", "extend": { "name": "controller_button", "namespace": "controls_section" } }, "selector_stack_panel/controls_and_settings_selector_pane/spacer_02": { "file": "ui/settings_screen.json", "type": "panel" }, "selector_stack_panel/controls_and_settings_selector_pane/switch_controller_button": { "file": "ui/settings_screen.json", "type": "panel", "extend": { "name": "controller_button", "namespace": "controls_section" } }, "selector_stack_panel/controls_and_settings_selector_pane/spacer_03": { "file": "ui/settings_screen.json", "type": "panel" }, "selector_stack_panel/controls_and_settings_selector_pane/touch_button": { "file": "ui/settings_screen.json", "type": "panel", "extend": { "name": "touch_button", "namespace": "controls_section" } }, "selector_stack_panel/controls_and_settings_selector_pane/spacer_04": { "file": "ui/settings_screen.json", "type": "panel" }, "selector_stack_panel/controls_and_settings_selector_pane/spacer_04_no_spatial": { "file": "ui/settings_screen.json", "type": "panel" }, "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_2": { "file": "ui/settings_screen.json", "type": "label", "extend": { "name": "selector_group_label", "namespace": "settings_common" } }, "selector_stack_panel/controls_and_settings_selector_pane/party_button": { "file": "ui/settings_screen.json", "type": "panel", "extend": { "name": "party_button", "namespace": "social_section" } }, "selector_stack_panel/controls_and_settings_selector_pane/spacer_05": { "file": "ui/settings_screen.json", "type": "panel" }, "selector_stack_panel/controls_and_settings_selector_pane/spacer_05_no_spatial": { "file": "ui/settings_screen.json", "type": "panel" }, "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_3": { "file": "ui/settings_screen.json", "type": "label", "extend": { "name": "selector_group_label", "namespace": "settings_common" } }, "selector_stack_panel/controls_and_settings_selector_pane/general_button": { "file": "ui/settings_screen.json", "type": "panel", "extend": { "name": "general_button", "namespace": "general_section" } }, "selector_stack_panel/controls_and_settings_selector_pane/spacer_06": { "file": "ui/settings_screen.json", "type": "panel" }, "selector_stack_panel/controls_and_settings_selector_pane/video_button": { "file": "ui/settings_screen.json", "type": "panel", "extend": { "name": "video_button", "namespace": "general_section" } }, "selector_stack_panel/controls_and_settings_selector_pane/spacer_07": { "file": "ui/settings_screen.json", "type": "panel" }, "selector_stack_panel/controls_and_settings_selector_pane/sound_button": { "file": "ui/settings_screen.json", "type": "panel", "extend": { "name": "sound_button", "namespace": "general_section" } }, "selector_stack_panel/controls_and_settings_selector_pane/spacer_08": { "file": "ui/settings_screen.json", "type": "panel" }, "selector_stack_panel/controls_and_settings_selector_pane/account_button": { "file": "ui/settings_screen.json", "type": "panel", "extend": { "name": "account_button", "namespace": "general_section" } }, "selector_stack_panel/controls_and_settings_selector_pane/spacer_09": { "file": "ui/settings_screen.json", "type": "panel" }, "selector_stack_panel/controls_and_settings_selector_pane/view_subscriptions_button": { "file": "ui/settings_screen.json", "type": "panel", "extend": { "name": "view_subscriptions_button", "namespace": "general_section" } }, "selector_stack_panel/controls_and_settings_selector_pane/spacer_10": { "file": "ui/settings_screen.json", "type": "panel" }, "selector_stack_panel/controls_and_settings_selector_pane/global_texture_pack_button": { "file": "ui/settings_screen.json", "type": "panel", "extend": { "name": "global_texture_pack_button", "namespace": "general_section" } }, "selector_stack_panel/controls_and_settings_selector_pane/spacer_11": { "file": "ui/settings_screen.json", "type": "panel" }, "selector_stack_panel/controls_and_settings_selector_pane/storage_management_button": { "file": "ui/settings_screen.json", "type": "panel", "extend": { "name": "storage_management_button", "namespace": "general_section" } }, "selector_stack_panel/controls_and_settings_selector_pane/spacer_12": { "file": "ui/settings_screen.json", "type": "panel" }, "selector_stack_panel/controls_and_settings_selector_pane/edu_cloud_storage_button": { "file": "ui/settings_screen.json", "type": "panel", "extend": { "name": "edu_cloud_storage_button", "namespace": "general_section" } }, "selector_stack_panel/controls_and_settings_selector_pane/spacer_13": { "file": "ui/settings_screen.json", "type": "panel" }, "selector_stack_panel/controls_and_settings_selector_pane/language_button": { "file": "ui/settings_screen.json", "type": "panel", "extend": { "name": "language_button", "namespace": "general_section" } }, "selector_stack_panel/controls_and_settings_selector_pane/spacer_14": { "file": "ui/settings_screen.json", "type": "panel" }, "selector_stack_panel/controls_and_settings_selector_pane/creator_button": { "file": "ui/settings_screen.json", "type": "panel", "extend": { "name": "creator_button", "namespace": "general_section" } }, "selector_stack_panel/controls_and_settings_selector_pane/spacer_15": { "file": "ui/settings_screen.json", "type": "panel" }, "selector_stack_panel/controls_and_settings_selector_pane/preview_button": { "file": "ui/settings_screen.json", "type": "panel", "extend": { "name": "preview_button", "namespace": "general_section" } }, "selector_stack_panel/controls_and_settings_selector_pane/spacer_4": { "file": "ui/settings_screen.json", "type": "panel" }, "selector_stack_panel/controls_and_settings_selector_pane/spacer_4_no_spatial": { "file": "ui/settings_screen.json", "type": "panel" }, "selector_stack_panel/controls_and_settings_selector_pane/selector_group_label_4": { "file": "ui/settings_screen.json", "type": "label", "extend": { "name": "selector_group_label", "namespace": "settings_common" } }, "selector_stack_panel/controls_and_settings_selector_pane/debug_button": { "file": "ui/settings_screen.json", "type": "panel", "extend": { "name": "debug_button", "namespace": "general_section" } }, "selector_stack_panel/controls_and_settings_selector_pane/spacer_16": { "file": "ui/settings_screen.json", "type": "panel" }, "selector_stack_panel/controls_and_settings_selector_pane/discovery_debug_button": { "file": "ui/settings_screen.json", "type": "panel", "extend": { "name": "discovery_debug_button", "namespace": "general_section" } }, "selector_stack_panel/controls_and_settings_selector_pane/spacer_17": { "file": "ui/settings_screen.json", "type": "panel" }, "selector_stack_panel/controls_and_settings_selector_pane/ui_debug_button": { "file": "ui/settings_screen.json", "type": "panel", "extend": { "name": "ui_debug_button", "namespace": "general_section" } }, "selector_stack_panel/controls_and_settings_selector_pane/spacer_18": { "file": "ui/settings_screen.json", "type": "panel" }, "selector_stack_panel/controls_and_settings_selector_pane/edu_debug_button": { "file": "ui/settings_screen.json", "type": "panel", "extend": { "name": "edu_debug_button", "namespace": "general_section" } }, "selector_stack_panel/controls_and_settings_selector_pane/spacer_19": { "file": "ui/settings_screen.json", "type": "panel" }, "selector_stack_panel/controls_and_settings_selector_pane/marketplace_debug_button": { "file": "ui/settings_screen.json", "type": "panel", "extend": { "name": "marketplace_debug_button", "namespace": "general_section" } }, "selector_stack_panel/controls_and_settings_selector_pane/spacer_20": { "file": "ui/settings_screen.json", "type": "panel" }, "selector_stack_panel/controls_and_settings_selector_pane/gatherings_debug_button": { "file": "ui/settings_screen.json", "type": "panel", "extend": { "name": "gatherings_debug_button", "namespace": "general_section" } }, "selector_stack_panel/controls_and_settings_selector_pane/spacer_21": { "file": "ui/settings_screen.json", "type": "panel" }, "selector_stack_panel/controls_and_settings_selector_pane/flighting_debug_button": { "file": "ui/settings_screen.json", "type": "panel", "extend": { "name": "flighting_debug_button", "namespace": "general_section" } }, "selector_stack_panel/controls_and_settings_selector_pane/spacer_22": { "file": "ui/settings_screen.json", "type": "panel" }, "selector_stack_panel/controls_and_settings_selector_pane/realms_debug_button": { "file": "ui/settings_screen.json", "type": "panel", "extend": { "name": "realms_debug_button", "namespace": "general_section" } }, "selector_stack_panel/controls_and_settings_selector_pane/spacer_23": { "file": "ui/settings_screen.json", "type": "panel" }, "selector_stack_panel/controls_and_settings_selector_pane/automation_button": { "file": "ui/settings_screen.json", "type": "panel", "extend": { "name": "automation_button", "namespace": "general_section" } }, "selector_stack_panel/spacer_24": { "file": "ui/settings_screen.json", "type": "panel" }, "selector_stack_panel/addons_selector_panel": { "file": "ui/settings_screen.json", "type": "stack_panel", "extend": { "name": "addons_selector_panel", "namespace": "world_section" } }, "selector_stack_panel/realms_invite_link_settings_pane": { "file": "ui/settings_screen.json", "type": "stack_panel", "extend": { "name": "selector_panel", "namespace": "realms_invite_link_settings" } }, "section_content_panels": { "file": "ui/settings_screen.json", "type": "panel", "children": [ "realm_invite_link_settings_content_panels", "world_sections", "packs_sections", "section_content_panels", "general_and_controls_sections" ] }, "section_content_panels/realm_invite_link_settings_content_panels": { "file": "ui/settings_screen.json", "type": "panel", "extend": { "name": "section_content_panels", "namespace": "realms_invite_link_settings" } }, "section_content_panels/world_sections": { "file": "ui/settings_screen.json", "type": "stack_panel", "children": [ "game_section", "classroom_section_panel", "server_section", "multiplayer_section", "edu_cloud_section", "debug_section" ] }, "section_content_panels/world_sections/game_section": { "file": "ui/settings_screen.json", "type": "stack_panel", "extend": { "name": "game_section", "namespace": "world_section" } }, "section_content_panels/world_sections/classroom_section_panel": { "file": "ui/settings_screen.json", "type": "panel", "children": [ "classroom_section" ] }, "section_content_panels/world_sections/classroom_section_panel/classroom_section": { "file": "ui/settings_screen.json", "type": "unknown", "extend": { "name": "classroom_section", "namespace": "classroom_settings" } }, "section_content_panels/world_sections/server_section": { "file": "ui/settings_screen.json", "type": "stack_panel", "extend": { "name": "server_section", "namespace": "world_section" } }, "section_content_panels/world_sections/multiplayer_section": { "file": "ui/settings_screen.json", "type": "stack_panel", "extend": { "name": "multiplayer_section", "namespace": "world_section" } }, "section_content_panels/world_sections/edu_cloud_section": { "file": "ui/settings_screen.json", "type": "stack_panel", "extend": { "name": "edu_cloud_section", "namespace": "world_section" } }, "section_content_panels/world_sections/debug_section": { "file": "ui/settings_screen.json", "type": "stack_panel", "extend": { "name": "debug_section", "namespace": "world_section" } }, "section_content_panels/packs_sections": { "file": "ui/settings_screen.json", "type": "stack_panel", "children": [ "level_texture_pack_section", "addon_section" ] }, "section_content_panels/packs_sections/level_texture_pack_section": { "file": "ui/settings_screen.json", "type": "stack_panel", "extend": { "name": "level_texture_pack_section", "namespace": "world_section" } }, "section_content_panels/packs_sections/addon_section": { "file": "ui/settings_screen.json", "type": "stack_panel", "extend": { "name": "addon_section", "namespace": "world_section" } }, "section_content_panels/section_content_panels": { "file": "ui/settings_screen.json", "type": "panel", "extend": { "name": "section_content_panels", "namespace": "realms_settings" } }, "section_content_panels/general_and_controls_sections": { "file": "ui/settings_screen.json", "type": "stack_panel", "children": [ "accessibility_section", "keyboard_and_mouse_section", "controller_section", "touch_section", "party_section", "general_tab_section", "account_section", "global_texture_pack_section", "storage_management_header", "storage_management_section", "edu_cloud_storage_section", "creator_section", "video_section", "view_subscriptions_prerelease_section", "view_subscriptions_section", "sound_section", "language_section", "preview_section", "debug_section", "ui_debug_section", "edu_debug_section", "marketplace_debug_section", "gatherings_debug_section", "flighting_debug_section", "realms_debug_section", "automation_section", "discovery_debug_section" ] }, "section_content_panels/general_and_controls_sections/accessibility_section": { "file": "ui/settings_screen.json", "type": "stack_panel", "extend": { "name": "accessibility_section", "namespace": "general_section" } }, "section_content_panels/general_and_controls_sections/keyboard_and_mouse_section": { "file": "ui/settings_screen.json", "type": "stack_panel", "extend": { "name": "keyboard_and_mouse_section", "namespace": "controls_section" } }, "section_content_panels/general_and_controls_sections/controller_section": { "file": "ui/settings_screen.json", "type": "stack_panel", "extend": { "name": "controller_section", "namespace": "controls_section" } }, "section_content_panels/general_and_controls_sections/touch_section": { "file": "ui/settings_screen.json", "type": "stack_panel", "extend": { "name": "touch_section", "namespace": "controls_section" } }, "section_content_panels/general_and_controls_sections/party_section": { "file": "ui/settings_screen.json", "type": "stack_panel", "extend": { "name": "party_section", "namespace": "social_section" } }, "section_content_panels/general_and_controls_sections/general_tab_section": { "file": "ui/settings_screen.json", "type": "stack_panel", "extend": { "name": "general_tab_section", "namespace": "general_section" } }, "section_content_panels/general_and_controls_sections/account_section": { "file": "ui/settings_screen.json", "type": "stack_panel", "extend": { "name": "account_section", "namespace": "general_section" } }, "section_content_panels/general_and_controls_sections/global_texture_pack_section": { "file": "ui/settings_screen.json", "type": "stack_panel", "extend": { "name": "global_texture_pack_section", "namespace": "general_section" } }, "section_content_panels/general_and_controls_sections/storage_management_header": { "file": "ui/settings_screen.json", "type": "panel", "extend": { "name": "storage_management_header", "namespace": "general_section" } }, "section_content_panels/general_and_controls_sections/storage_management_section": { "file": "ui/settings_screen.json", "type": "panel", "extend": { "name": "storage_management_section", "namespace": "general_section" } }, "section_content_panels/general_and_controls_sections/edu_cloud_storage_section": { "file": "ui/settings_screen.json", "type": "stack_panel", "extend": { "name": "edu_cloud_storage_section", "namespace": "general_section" } }, "section_content_panels/general_and_controls_sections/creator_section": { "file": "ui/settings_screen.json", "type": "stack_panel", "extend": { "name": "creator_section", "namespace": "general_section" } }, "section_content_panels/general_and_controls_sections/video_section": { "file": "ui/settings_screen.json", "type": "stack_panel", "extend": { "name": "video_section", "namespace": "general_section" } }, "section_content_panels/general_and_controls_sections/view_subscriptions_prerelease_section": { "file": "ui/settings_screen.json", "type": "panel", "extend": { "name": "view_subscriptions_prerelease_section", "namespace": "general_section" } }, "section_content_panels/general_and_controls_sections/view_subscriptions_section": { "file": "ui/settings_screen.json", "type": "stack_panel", "extend": { "name": "view_subscriptions_section", "namespace": "general_section" } }, "section_content_panels/general_and_controls_sections/sound_section": { "file": "ui/settings_screen.json", "type": "stack_panel", "extend": { "name": "sound_section", "namespace": "general_section" } }, "section_content_panels/general_and_controls_sections/language_section": { "file": "ui/settings_screen.json", "type": "stack_panel", "extend": { "name": "language_section", "namespace": "general_section" } }, "section_content_panels/general_and_controls_sections/preview_section": { "file": "ui/settings_screen.json", "type": "stack_panel", "extend": { "name": "preview_section", "namespace": "general_section" } }, "section_content_panels/general_and_controls_sections/debug_section": { "file": "ui/settings_screen.json", "type": "stack_panel", "extend": { "name": "debug_section", "namespace": "general_section" } }, "section_content_panels/general_and_controls_sections/ui_debug_section": { "file": "ui/settings_screen.json", "type": "stack_panel", "extend": { "name": "ui_debug_section", "namespace": "general_section" } }, "section_content_panels/general_and_controls_sections/edu_debug_section": { "file": "ui/settings_screen.json", "type": "stack_panel", "extend": { "name": "edu_debug_section", "namespace": "general_section" } }, "section_content_panels/general_and_controls_sections/marketplace_debug_section": { "file": "ui/settings_screen.json", "type": "stack_panel", "extend": { "name": "marketplace_debug_section", "namespace": "general_section" } }, "section_content_panels/general_and_controls_sections/gatherings_debug_section": { "file": "ui/settings_screen.json", "type": "stack_panel", "extend": { "name": "gatherings_debug_section", "namespace": "general_section" } }, "section_content_panels/general_and_controls_sections/flighting_debug_section": { "file": "ui/settings_screen.json", "type": "stack_panel", "extend": { "name": "flighting_debug_section", "namespace": "general_section" } }, "section_content_panels/general_and_controls_sections/realms_debug_section": { "file": "ui/settings_screen.json", "type": "stack_panel", "extend": { "name": "realms_debug_section", "namespace": "general_section" } }, "section_content_panels/general_and_controls_sections/automation_section": { "file": "ui/settings_screen.json", "type": "stack_panel", "extend": { "name": "automation_section", "namespace": "general_section" } }, "section_content_panels/general_and_controls_sections/discovery_debug_section": { "file": "ui/settings_screen.json", "type": "stack_panel", "extend": { "name": "discovery_debug_section", "namespace": "general_section" } }, "section_header_panels": { "file": "ui/settings_screen.json", "type": "panel", "children": [ "world_sections", "general_and_controls_sections" ] }, "section_header_panels/world_sections": { "file": "ui/settings_screen.json", "type": "stack_panel" }, "section_header_panels/general_and_controls_sections": { "file": "ui/settings_screen.json", "type": "stack_panel" }, "section_footer_panels": { "file": "ui/settings_screen.json", "type": "panel", "children": [ "world_sections", "general_and_controls_sections" ] }, "section_footer_panels/world_sections": { "file": "ui/settings_screen.json", "type": "stack_panel" }, "section_footer_panels/general_and_controls_sections": { "file": "ui/settings_screen.json", "type": "stack_panel", "children": [ "storage_management_footer" ] }, "section_footer_panels/general_and_controls_sections/storage_management_footer": { "file": "ui/settings_screen.json", "type": "panel", "extend": { "name": "storage_management_footer", "namespace": "general_section" } } }, "controls_section": { "binding_button": { "file": "ui/settings_sections/controls_section.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "binding_button_content": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "button_content_panel", "namespace": "common_buttons" }, "children": [ "default_label" ] }, "binding_button_content/default_label": { "file": "ui/settings_sections/controls_section.json", "type": "label", "extend": { "name": "new_button_label", "namespace": "common" } }, "image_binding_button": { "file": "ui/settings_sections/controls_section.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "image_binding_button_content": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "button_content_panel", "namespace": "common_buttons" }, "children": [ "base_icon_image", "default_label" ] }, "image_binding_button_content/base_icon_image": { "file": "ui/settings_sections/controls_section.json", "type": "image" }, "image_binding_button_content/default_label": { "file": "ui/settings_sections/controls_section.json", "type": "label", "extend": { "name": "new_button_label", "namespace": "common" } }, "arrow_reset": { "file": "ui/settings_sections/controls_section.json", "type": "image" }, "reset_binding_button": { "file": "ui/settings_sections/controls_section.json", "type": "button", "extend": { "name": "light_glyph_button", "namespace": "common_buttons" } }, "keymapping_item_parent": { "file": "ui/settings_sections/controls_section.json", "type": "stack_panel", "children": [ "keymapping_row" ] }, "keymapping_item_parent/keymapping_row": { "file": "ui/settings_sections/controls_section.json", "type": "stack_panel", "extend": { "name": "keymapping_item_frame", "namespace": "controls_section" } }, "keymapping_item_frame": { "file": "ui/settings_sections/controls_section.json", "type": "stack_panel", "children": [ "keymap", "command_macro_command" ] }, "keymapping_item_frame/keymap": { "file": "ui/settings_sections/controls_section.json", "type": "stack_panel", "extend": { "name": "keymapping_item", "namespace": "controls_section" } }, "keymapping_item_frame/command_macro_command": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "command_macro_command_textbox", "namespace": "controls_section" } }, "command_macro_command_textbox": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "children": [ "text_box" ] }, "command_macro_command_textbox/text_box": { "file": "ui/settings_sections/controls_section.json", "type": "edit_box", "extend": { "name": "text_edit_box", "namespace": "common" } }, "keymapping_item": { "file": "ui/settings_sections/controls_section.json", "type": "stack_panel", "children": [ "option_info_label_control", "keymapping_button_0", "keymapping_button_1" ] }, "keymapping_item/option_info_label_control": { "file": "ui/settings_sections/controls_section.json", "type": "image", "children": [ "keymapping_label_control" ] }, "keymapping_item/option_info_label_control/keymapping_label_control": { "file": "ui/settings_sections/controls_section.json", "type": "label" }, "keymapping_item/keymapping_button_0": { "file": "ui/settings_sections/controls_section.json", "type": "button", "extend": { "name": "binding_button", "namespace": "controls_section" } }, "keymapping_item/keymapping_button_1": { "file": "ui/settings_sections/controls_section.json", "type": "button", "extend": { "name": "reset_binding_button", "namespace": "controls_section" } }, "keymapping_grid": { "file": "ui/settings_sections/controls_section.json", "type": "grid" }, "full_keymapping_grid": { "file": "ui/settings_sections/controls_section.json", "type": "grid", "extend": { "name": "keymapping_grid", "namespace": "controls_section" } }, "gamepad_mapping_item": { "file": "ui/settings_sections/controls_section.json", "type": "stack_panel", "children": [ "option_info_label_control", "keymapping_button_0", "keymapping_button_1" ] }, "gamepad_mapping_item/option_info_label_control": { "file": "ui/settings_sections/controls_section.json", "type": "image", "children": [ "keymapping_label_control" ] }, "gamepad_mapping_item/option_info_label_control/keymapping_label_control": { "file": "ui/settings_sections/controls_section.json", "type": "label" }, "gamepad_mapping_item/keymapping_button_0": { "file": "ui/settings_sections/controls_section.json", "type": "button", "extend": { "name": "image_binding_button", "namespace": "controls_section" } }, "gamepad_mapping_item/keymapping_button_1": { "file": "ui/settings_sections/controls_section.json", "type": "button", "extend": { "name": "reset_binding_button", "namespace": "controls_section" } }, "gamepad_mapping_grid": { "file": "ui/settings_sections/controls_section.json", "type": "grid" }, "keyboard_command_macros_grid": { "file": "ui/settings_sections/controls_section.json", "type": "stack_panel", "children": [ "divider_before", "divider_before_padding", "command_macro_title", "command_macro_title_desc", "command_macro_title_padding", "command_macro_keymapping_grid", "divider_after", "divider_after_padding" ] }, "keyboard_command_macros_grid/divider_before": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "children": [ "section_divider" ] }, "keyboard_command_macros_grid/divider_before/section_divider": { "file": "ui/settings_sections/controls_section.json", "type": "image" }, "keyboard_command_macros_grid/divider_before_padding": { "file": "ui/settings_sections/controls_section.json", "type": "panel" }, "keyboard_command_macros_grid/command_macro_title": { "file": "ui/settings_sections/controls_section.json", "type": "label" }, "keyboard_command_macros_grid/command_macro_title_desc": { "file": "ui/settings_sections/controls_section.json", "type": "label" }, "keyboard_command_macros_grid/command_macro_title_padding": { "file": "ui/settings_sections/controls_section.json", "type": "panel" }, "keyboard_command_macros_grid/command_macro_keymapping_grid": { "file": "ui/settings_sections/controls_section.json", "type": "grid", "extend": { "name": "keymapping_grid", "namespace": "controls_section" } }, "keyboard_command_macros_grid/divider_after": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "children": [ "section_divider" ] }, "keyboard_command_macros_grid/divider_after/section_divider": { "file": "ui/settings_sections/controls_section.json", "type": "image" }, "keyboard_command_macros_grid/divider_after_padding": { "file": "ui/settings_sections/controls_section.json", "type": "panel" }, "keyboard_and_mouse_button": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "settings_common" } }, "keyboard_and_mouse_section": { "file": "ui/settings_sections/controls_section.json", "type": "stack_panel", "children": [ "option_slider_0", "option_slider_damen", "option_toggle_0", "option_toggle_1", "option_toggle_2", "option_toggle_full_keyboard_gameplay", "option_toggle_show_keyboard_prompts", "option_toggle_show_learning_prompts", "keyboard_section", "full_keyboard_section", "reset_button" ] }, "keyboard_and_mouse_section/option_slider_0": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "keyboard_and_mouse_section/option_slider_damen": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "keyboard_and_mouse_section/option_toggle_0": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "keyboard_and_mouse_section/option_toggle_1": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "keyboard_and_mouse_section/option_toggle_2": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "keyboard_and_mouse_section/option_toggle_full_keyboard_gameplay": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "keyboard_and_mouse_section/option_toggle_show_keyboard_prompts": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "keyboard_and_mouse_section/option_toggle_show_learning_prompts": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "keyboard_and_mouse_section/keyboard_section": { "file": "ui/settings_sections/controls_section.json", "type": "stack_panel", "children": [ "option_group_label", "keyboard_keymapping_grid", "control_alt_chords_standard_keyboard_section", "command_macros" ] }, "keyboard_and_mouse_section/keyboard_section/option_group_label": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_group_label", "namespace": "settings_common" } }, "keyboard_and_mouse_section/keyboard_section/keyboard_keymapping_grid": { "file": "ui/settings_sections/controls_section.json", "type": "grid", "extend": { "name": "keymapping_grid", "namespace": "controls_section" } }, "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section": { "file": "ui/settings_sections/controls_section.json", "type": "stack_panel", "children": [ "option_group_label", "control_alt_chord_keymapping_grid" ] }, "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section/option_group_label": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_group_label", "namespace": "settings_common" } }, "keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section/control_alt_chord_keymapping_grid": { "file": "ui/settings_sections/controls_section.json", "type": "grid", "extend": { "name": "keymapping_grid", "namespace": "controls_section" } }, "keyboard_and_mouse_section/keyboard_section/command_macros": { "file": "ui/settings_sections/controls_section.json", "type": "stack_panel", "extend": { "name": "keyboard_command_macros_grid", "namespace": "controls_section" } }, "keyboard_and_mouse_section/full_keyboard_section": { "file": "ui/settings_sections/controls_section.json", "type": "stack_panel", "children": [ "option_slider_smooth_rotation_speed", "full_keyboard_label", "keyboard_full_keymapping_grid", "control_alt_chords_full_keyboard_section", "command_macros" ] }, "keyboard_and_mouse_section/full_keyboard_section/option_slider_smooth_rotation_speed": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "keyboard_and_mouse_section/full_keyboard_section/full_keyboard_label": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_group_label", "namespace": "settings_common" } }, "keyboard_and_mouse_section/full_keyboard_section/keyboard_full_keymapping_grid": { "file": "ui/settings_sections/controls_section.json", "type": "grid", "extend": { "name": "full_keymapping_grid", "namespace": "controls_section" } }, "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section": { "file": "ui/settings_sections/controls_section.json", "type": "stack_panel", "children": [ "option_group_label", "control_alt_chord_keymapping_grid" ] }, "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section/option_group_label": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_group_label", "namespace": "settings_common" } }, "keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section/control_alt_chord_keymapping_grid": { "file": "ui/settings_sections/controls_section.json", "type": "grid", "extend": { "name": "keymapping_grid", "namespace": "controls_section" } }, "keyboard_and_mouse_section/full_keyboard_section/command_macros": { "file": "ui/settings_sections/controls_section.json", "type": "stack_panel", "extend": { "name": "keyboard_command_macros_grid", "namespace": "controls_section" } }, "keyboard_and_mouse_section/reset_button": { "file": "ui/settings_sections/controls_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "controller_button": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "settings_common" } }, "controller_section": { "file": "ui/settings_sections/controls_section.json", "type": "stack_panel", "children": [ "option_slider_0", "option_slider_damen", "option_toggle_0", "option_toggle_1", "option_toggle9", "option_toggle10", "option_toggle_11", "gamepad_swap_ab", "gamepad_swap_xy", "gamepad_cursor_sensitivity_option_slider", "option_toggle_3", "option_toggle_4", "option_toggle_5", "option_group_label", "gamepad_keymapping_grid", "reset_button" ] }, "controller_section/option_slider_0": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "controller_section/option_slider_damen": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "controller_section/option_toggle_0": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "controller_section/option_toggle_1": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "controller_section/option_toggle9": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "controller_section/option_toggle10": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "controller_section/option_toggle_11": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "controller_section/gamepad_swap_ab": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "controller_section/gamepad_swap_xy": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "controller_section/gamepad_cursor_sensitivity_option_slider": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "controller_section/option_toggle_3": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "controller_section/option_toggle_4": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "controller_section/option_toggle_5": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "controller_section/option_group_label": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_group_label", "namespace": "settings_common" } }, "controller_section/gamepad_keymapping_grid": { "file": "ui/settings_sections/controls_section.json", "type": "grid", "extend": { "name": "gamepad_mapping_grid", "namespace": "controls_section" } }, "controller_section/reset_button": { "file": "ui/settings_sections/controls_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "touch_button": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "settings_common" } }, "touch_section": { "file": "ui/settings_sections/controls_section.json", "type": "stack_panel", "children": [ "common_touch_settings", "reset_button" ] }, "touch_section/common_touch_settings": { "file": "ui/settings_sections/controls_section.json", "type": "stack_panel", "children": [ "option_enable_new_touch_control_schemes_button", "control_scheme_section", "modify_control_layout_section", "option_slider_0", "option_slider_damen", "option_show_action_button", "option_show_block_select_button", "option_toggle_left_handed", "option_toggle_auto_jump", "option_bool_sprint_on_movement", "option_show_toggle_camera_perspective_button", "joystick_visibility_dropdown", "top_button_scale", "sneak_dropdown", "option_toggle_destroy_vibration", "option_toggle_split_vibration", "option_creative_delayed_block_breaking", "option_toggle_invert_y", "option_always_highlight_hovering_box_in_crosshair", "option_toggle_use_touchpad", "option_toggle_swap_jump_and_sneak", "hotbar_only_touch_toggle" ] }, "touch_section/common_touch_settings/option_enable_new_touch_control_schemes_button": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "touch_section/common_touch_settings/control_scheme_section": { "file": "ui/settings_sections/controls_section.json", "type": "stack_panel", "children": [ "section_label", "padding_0", "image_and_button", "padding_1", "select_control_mode", "padding_2" ] }, "touch_section/common_touch_settings/control_scheme_section/section_label": { "file": "ui/settings_sections/controls_section.json", "type": "label" }, "touch_section/common_touch_settings/control_scheme_section/padding_0": { "file": "ui/settings_sections/controls_section.json", "type": "panel" }, "touch_section/common_touch_settings/control_scheme_section/image_and_button": { "file": "ui/settings_sections/controls_section.json", "type": "stack_panel", "children": [ "images", "padding", "scheme_button_section" ] }, "touch_section/common_touch_settings/control_scheme_section/image_and_button/images": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "children": [ "touch_image", "crosshair_image", "classic_image" ] }, "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/touch_image": { "file": "ui/settings_sections/controls_section.json", "type": "image" }, "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/crosshair_image": { "file": "ui/settings_sections/controls_section.json", "type": "image" }, "touch_section/common_touch_settings/control_scheme_section/image_and_button/images/classic_image": { "file": "ui/settings_sections/controls_section.json", "type": "image" }, "touch_section/common_touch_settings/control_scheme_section/image_and_button/padding": { "file": "ui/settings_sections/controls_section.json", "type": "panel" }, "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "children": [ "caption" ] }, "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption": { "file": "ui/settings_sections/controls_section.json", "type": "stack_panel", "children": [ "selected_label", "selected_control" ] }, "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption/selected_label": { "file": "ui/settings_sections/controls_section.json", "type": "label" }, "touch_section/common_touch_settings/control_scheme_section/image_and_button/scheme_button_section/caption/selected_control": { "file": "ui/settings_sections/controls_section.json", "type": "label" }, "touch_section/common_touch_settings/control_scheme_section/padding_1": { "file": "ui/settings_sections/controls_section.json", "type": "panel" }, "touch_section/common_touch_settings/control_scheme_section/select_control_mode": { "file": "ui/settings_sections/controls_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "touch_section/common_touch_settings/control_scheme_section/padding_2": { "file": "ui/settings_sections/controls_section.json", "type": "panel" }, "touch_section/common_touch_settings/modify_control_layout_section": { "file": "ui/settings_sections/controls_section.json", "type": "stack_panel", "children": [ "modify_control_layout_button", "customize_tooltip_option", "padding" ] }, "touch_section/common_touch_settings/modify_control_layout_section/modify_control_layout_button": { "file": "ui/settings_sections/controls_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "touch_section/common_touch_settings/modify_control_layout_section/customize_tooltip_option": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "customize_tooltip_option", "namespace": "controls_section" } }, "touch_section/common_touch_settings/modify_control_layout_section/padding": { "file": "ui/settings_sections/controls_section.json", "type": "panel" }, "touch_section/common_touch_settings/option_slider_0": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "touch_section/common_touch_settings/option_slider_damen": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "touch_section/common_touch_settings/option_show_action_button": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "touch_section/common_touch_settings/option_show_block_select_button": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "touch_section/common_touch_settings/option_toggle_left_handed": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "touch_section/common_touch_settings/option_toggle_auto_jump": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "touch_section/common_touch_settings/option_bool_sprint_on_movement": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "touch_section/common_touch_settings/option_show_toggle_camera_perspective_button": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "touch_section/common_touch_settings/joystick_visibility_dropdown": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "touch_section/common_touch_settings/top_button_scale": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "touch_section/common_touch_settings/sneak_dropdown": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "touch_section/common_touch_settings/option_toggle_destroy_vibration": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "touch_section/common_touch_settings/option_toggle_split_vibration": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "touch_section/common_touch_settings/option_creative_delayed_block_breaking": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "touch_section/common_touch_settings/option_toggle_invert_y": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "touch_section/common_touch_settings/option_always_highlight_hovering_box_in_crosshair": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "touch_section/common_touch_settings/option_toggle_use_touchpad": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "touch_section/common_touch_settings/option_toggle_swap_jump_and_sneak": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "touch_section/common_touch_settings/hotbar_only_touch_toggle": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "touch_section/reset_button": { "file": "ui/settings_sections/controls_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "joystick_visibility_dropdown_content": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "top_button_scale_dropdown_content": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "sneak_dropdown_content": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "customize_tooltip_option_image": { "file": "ui/settings_sections/controls_section.json", "type": "image" }, "customize_tooltip_option_popup": { "file": "ui/settings_sections/controls_section.json", "type": "image", "extend": { "name": "static_tooltip_popup_with_image_and_text", "namespace": "common" } }, "customize_tooltip_option": { "file": "ui/settings_sections/controls_section.json", "type": "panel", "children": [ "customize_tooltip_option_image", "customize_tooltip_option_popup" ] }, "customize_tooltip_option/customize_tooltip_option_image": { "file": "ui/settings_sections/controls_section.json", "type": "image", "extend": { "name": "customize_tooltip_option_image", "namespace": "controls_section" }, "children": [ "hover_detection_input_panel" ] }, "customize_tooltip_option/customize_tooltip_option_image/hover_detection_input_panel": { "file": "ui/settings_sections/controls_section.json", "type": "input_panel" }, "customize_tooltip_option/customize_tooltip_option_popup": { "file": "ui/settings_sections/controls_section.json", "type": "image", "extend": { "name": "customize_tooltip_option_popup", "namespace": "controls_section" } } }, "general_section": { "general_button": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "settings_common" } }, "general_tab_section": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "option_toggle_fail_realms_purchase_fulfillment", "network_label_header", "paddingCrossPlatform", "cross_platform_enabled_toggle", "paddingCellularData", "mobile_data_option_toggle", "paddingWebSockets", "websockets_enabled_toggle", "websocket_encryption_toggle", "paddingAutoUpdate", "auto_update_mode_dropdown", "paddingAutoUpdateToggle", "auto_update_enabled_toggle", "paddingGameTipsFeature", "tutorial_toggle", "tutorial_animation_toggle", "tutorial_restart_button", "paddingTrustedSkins", "only_allow_trusted_skins_toggle", "paddingFilterProfanity", "filter_profanity_toggle", "pause_label_header", "paddingPauseFeature", "pause_toggle", "pause_menu_on_focus_lost", "paddingLinkEduSupport", "link_button", "paddingDividerSustainability", "ecomode_label_header", "paddingEcoMode", "ecomode_enabled_toggle", "paddingDividerTermsCreditsAttribution", "dividerTermsCreditsAttribution", "paddingDividerTermsCreditsAttributionAfter", "paddingTermsNConditions", "terms_and_conditions_link_button", "paddingCreditsButton", "credits_button", "paddingAttribution", "attribution_link_button", "paddingfeedback", "feedback_link_button", "paddingLicenses", "dividerLicenses", "paddingLicensesAfter", "paddingLicensesHeader", "licenses_label_header", "paddingLicensedContent", "licensed_content_link_button", "paddingFontLicense", "font_license_popup_button", "third_party_copyright_info_label_panel", "paddingSectionDividerContentLog", "build_info_label_panel", "paddingSectionDividerBuildInfo", "treatment_ids_label" ] }, "general_tab_section/option_toggle_fail_realms_purchase_fulfillment": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "general_tab_section/network_label_header": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "general_tab_section/paddingCrossPlatform": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "general_tab_section/cross_platform_enabled_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "general_tab_section/paddingCellularData": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "general_tab_section/mobile_data_option_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "general_tab_section/paddingWebSockets": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "general_tab_section/websockets_enabled_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "general_tab_section/websocket_encryption_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "general_tab_section/paddingAutoUpdate": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "general_tab_section/auto_update_mode_dropdown": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "general_tab_section/paddingAutoUpdateToggle": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "general_tab_section/auto_update_enabled_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "general_tab_section/paddingGameTipsFeature": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "general_tab_section/tutorial_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "general_tab_section/tutorial_animation_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "general_tab_section/tutorial_restart_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "general_tab_section/paddingTrustedSkins": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "general_tab_section/only_allow_trusted_skins_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "general_tab_section/paddingFilterProfanity": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "general_tab_section/filter_profanity_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" }, "children": [ "option_generic_core" ] }, "general_tab_section/filter_profanity_toggle/option_generic_core": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "option_generic_core", "namespace": "settings_common" } }, "general_tab_section/pause_label_header": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "general_tab_section/paddingPauseFeature": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "general_tab_section/pause_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "general_tab_section/pause_menu_on_focus_lost": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "general_tab_section/paddingLinkEduSupport": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "general_tab_section/link_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "link_button", "namespace": "settings_common" } }, "general_tab_section/paddingDividerSustainability": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "general_tab_section/ecomode_label_header": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "general_tab_section/paddingEcoMode": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "general_tab_section/ecomode_enabled_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "general_tab_section/paddingDividerTermsCreditsAttribution": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "general_tab_section/dividerTermsCreditsAttribution": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "section_divider" ] }, "general_tab_section/dividerTermsCreditsAttribution/section_divider": { "file": "ui/settings_sections/general_section.json", "type": "image" }, "general_tab_section/paddingDividerTermsCreditsAttributionAfter": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "general_tab_section/paddingTermsNConditions": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "general_tab_section/terms_and_conditions_link_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "link_button", "namespace": "settings_common" } }, "general_tab_section/paddingCreditsButton": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "general_tab_section/credits_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "general_tab_section/paddingAttribution": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "general_tab_section/attribution_link_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "link_button", "namespace": "settings_common" } }, "general_tab_section/paddingfeedback": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "general_tab_section/feedback_link_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "link_button", "namespace": "settings_common" } }, "general_tab_section/paddingLicenses": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "general_tab_section/dividerLicenses": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "section_divider" ] }, "general_tab_section/dividerLicenses/section_divider": { "file": "ui/settings_sections/general_section.json", "type": "image" }, "general_tab_section/paddingLicensesAfter": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "general_tab_section/paddingLicensesHeader": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "general_tab_section/licenses_label_header": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "general_tab_section/paddingLicensedContent": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "general_tab_section/licensed_content_link_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "link_button", "namespace": "settings_common" } }, "general_tab_section/paddingFontLicense": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "general_tab_section/font_license_popup_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "general_tab_section/third_party_copyright_info_label_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "spacer_0", "copyright_label", "spacer_1", "copyright_icon" ] }, "general_tab_section/third_party_copyright_info_label_panel/spacer_0": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "general_tab_section/third_party_copyright_info_label_panel/copyright_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "general_tab_section/third_party_copyright_info_label_panel/spacer_1": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "general_tab_section/third_party_copyright_info_label_panel/copyright_icon": { "file": "ui/settings_sections/general_section.json", "type": "image" }, "general_tab_section/paddingSectionDividerContentLog": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "general_tab_section/build_info_label_panel": { "file": "ui/settings_sections/general_section.json", "type": "button", "children": [ "build_info_label" ] }, "general_tab_section/build_info_label_panel/build_info_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "general_tab_section/paddingSectionDividerBuildInfo": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "general_tab_section/treatment_ids_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "account_button": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "settings_common" } }, "view_account_errors_button_content": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "switch_accounts_button_content": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "padded_icon", "padded_label" ] }, "switch_accounts_button_content/padded_icon": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "icon" ] }, "switch_accounts_button_content/padded_icon/icon": { "file": "ui/settings_sections/general_section.json", "type": "image" }, "switch_accounts_button_content/padded_label": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "label" ] }, "switch_accounts_button_content/padded_label/label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "sign_out_button_content": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "padded_label" ] }, "sign_out_button_content/padded_label": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "label" ] }, "sign_out_button_content/padded_label/label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "switch_accounts_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "name_label", "paddingSwitchAccounts", "switch_accounts" ] }, "switch_accounts_panel/name_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "switch_accounts_panel/paddingSwitchAccounts": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "switch_accounts_panel/switch_accounts": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "sign_out_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "sign_out" ] }, "sign_out_panel/sign_out": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "sign_out_fail_popup": { "file": "ui/settings_sections/general_section.json", "type": "input_panel", "extend": { "name": "form_fit_modal_dialog_popup", "namespace": "popup_dialog" } }, "sign_out_fail_body_panel": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "body_panel", "namespace": "edu_common" } }, "sign_out_fail_body_content_stack": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "body_text_centering_panel1", "body_text_centering_panel2", "padding1", "learn_more_button", "padding2", "close_button" ] }, "sign_out_fail_body_content_stack/body_text_centering_panel1": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "vertical_stack_item", "namespace": "edu_common" }, "children": [ "body_text1" ] }, "sign_out_fail_body_content_stack/body_text_centering_panel1/body_text1": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "sign_out_fail_body_content_stack/body_text_centering_panel2": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "vertical_stack_item", "namespace": "edu_common" }, "children": [ "body_text2" ] }, "sign_out_fail_body_content_stack/body_text_centering_panel2/body_text2": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "sign_out_fail_body_content_stack/padding1": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "sign_out_fail_body_content_stack/learn_more_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "underline_button", "namespace": "edu_common" } }, "sign_out_fail_body_content_stack/padding2": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "sign_out_fail_body_content_stack/close_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "account_section": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "use_edu_remember_me", "paddingUseSSO", "switch_accounts", "sign_out", "paddingNameControls", "name_controls", "paddingSignInControls", "signin_controls", "paddingGamerTagControls", "gamertag_controls", "paddingClearMSAToken", "clear_msa_token", "paddingUnlinkMSAAccount", "unlink_msa_account", "unlink_msa_account_nx", "paddingDeleteAccount", "delete_account", "paddingUseRemoteConnect", "remote_connect_toggle", "paddingInfoLabels", "account_info_buttom" ] }, "account_section/use_edu_remember_me": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "account_section/paddingUseSSO": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "account_section/switch_accounts": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "switch_accounts_panel", "namespace": "general_section" } }, "account_section/sign_out": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "sign_out_panel", "namespace": "general_section" } }, "account_section/paddingNameControls": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "account_section/name_controls": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_custom_control", "namespace": "settings_common" } }, "account_section/paddingSignInControls": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "account_section/signin_controls": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_custom_control", "namespace": "settings_common" } }, "account_section/paddingGamerTagControls": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "account_section/gamertag_controls": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_custom_control", "namespace": "settings_common" } }, "account_section/paddingClearMSAToken": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "account_section/clear_msa_token": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "clear_msa_token_button" ] }, "account_section/clear_msa_token/clear_msa_token_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "account_section/paddingUnlinkMSAAccount": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "account_section/unlink_msa_account": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "account_section/unlink_msa_account_nx": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "account_section/paddingDeleteAccount": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "account_section/delete_account": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "account_section/paddingUseRemoteConnect": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "account_section/remote_connect_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "account_section/paddingInfoLabels": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "account_section/account_info_buttom": { "file": "ui/settings_sections/general_section.json", "type": "button", "children": [ "account_info_label" ] }, "account_section/account_info_buttom/account_info_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "name_controls": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "option_text_edit_control" ] }, "name_controls/option_text_edit_control": { "file": "ui/settings_sections/general_section.json", "type": "edit_box", "extend": { "name": "option_text_edit_control", "namespace": "settings_common" } }, "signin_controls": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "sign_in" ] }, "signin_controls/sign_in": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "action_button" ] }, "signin_controls/sign_in/action_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "signin_subscription": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "sign_in" ] }, "signin_subscription/sign_in": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "please_signin_label" ] }, "signin_subscription/sign_in/please_signin_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "gamertag_controls": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "gamertag_label", "paddingXboxAccountButtons", "xboxlive_deep_link_buttons", "paddingSignOut", "realms_invites", "sign_out", "offline_token_authorization" ] }, "gamertag_controls/gamertag_label": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "panel_descriptor", "spacer", "gamerpic", "spacer_2", "panel_gamertag" ] }, "gamertag_controls/gamertag_label/panel_descriptor": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "label_descriptor" ] }, "gamertag_controls/gamertag_label/panel_descriptor/label_descriptor": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "gamertag_controls/gamertag_label/spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "gamertag_controls/gamertag_label/gamerpic": { "file": "ui/settings_sections/general_section.json", "type": "custom" }, "gamertag_controls/gamertag_label/spacer_2": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "gamertag_controls/gamertag_label/panel_gamertag": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "gamertag_label" ] }, "gamertag_controls/gamertag_label/panel_gamertag/gamertag_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "gamertag_controls/paddingXboxAccountButtons": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "gamertag_controls/xboxlive_deep_link_buttons": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "change_gamertag_button", "change_gamertag_button_mobile", "manage_account_button", "manage_account_button_mobile", "paddingXboxSettingsPrivacyControl", "link_button" ] }, "gamertag_controls/xboxlive_deep_link_buttons/change_gamertag_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "gamertag_controls/xboxlive_deep_link_buttons/change_gamertag_button_mobile": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "link_button", "namespace": "settings_common" } }, "gamertag_controls/xboxlive_deep_link_buttons/manage_account_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "gamertag_controls/xboxlive_deep_link_buttons/manage_account_button_mobile": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "link_button", "namespace": "settings_common" } }, "gamertag_controls/xboxlive_deep_link_buttons/paddingXboxSettingsPrivacyControl": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "gamertag_controls/xboxlive_deep_link_buttons/link_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "link_button", "namespace": "settings_common" } }, "gamertag_controls/paddingSignOut": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "gamertag_controls/realms_invites": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "check_realms_invites_button" ] }, "gamertag_controls/realms_invites/check_realms_invites_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "gamertag_controls/sign_out": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "action_button" ] }, "gamertag_controls/sign_out/action_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "gamertag_controls/offline_token_authorization": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "request_psn_authorization_button" ] }, "gamertag_controls/offline_token_authorization/request_psn_authorization_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "auto_update_mode_dropdown_content": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "global_texture_pack_button": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "resource_packs_section_toggle_base", "namespace": "resource_packs" } }, "global_texture_pack_section": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "selected_stack_panel", "namespace": "resource_packs" } }, "storage_management_button": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "settings_common" } }, "storage_management_section": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "storage_main_panel", "namespace": "storage_management" } }, "storage_management_header": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "storage_header_panel", "namespace": "storage_management" } }, "storage_management_footer": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "storage_footer_panel", "namespace": "storage_management" } }, "edu_cloud_storage_button": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "settings_common" } }, "edu_cloud_storage_section": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "spacing1", "edu_cloud_backup_toggle", "spacing2", "body_wrapper_panel", "spacing3", "edu_cloud_onedrive_button", "spacing4", "edu_cloud_learn_more_wrapper_panel" ] }, "edu_cloud_storage_section/spacing1": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "edu_cloud_storage_section/edu_cloud_backup_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "edu_cloud_storage_section/spacing2": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "edu_cloud_storage_section/body_wrapper_panel": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "tts_border", "edu_cloud_storage_body_label" ] }, "edu_cloud_storage_section/body_wrapper_panel/tts_border": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "non_interact_focus_border_button", "namespace": "common" } }, "edu_cloud_storage_section/body_wrapper_panel/edu_cloud_storage_body_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "edu_cloud_storage_section/spacing3": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "edu_cloud_storage_section/edu_cloud_onedrive_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "edu_cloud_storage_section/spacing4": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "learn_more_button", "padded_icon" ] }, "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/learn_more_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "underline_button", "namespace": "edu_common" } }, "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/padded_icon": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "icon" ] }, "edu_cloud_storage_section/edu_cloud_learn_more_wrapper_panel/padded_icon/icon": { "file": "ui/settings_sections/general_section.json", "type": "image" }, "edu_cloud_onedrive_button_content": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "padded_label", "padded_icon" ] }, "edu_cloud_onedrive_button_content/padded_label": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "label" ] }, "edu_cloud_onedrive_button_content/padded_label/label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "edu_cloud_onedrive_button_content/padded_icon": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "icon" ] }, "edu_cloud_onedrive_button_content/padded_icon/icon": { "file": "ui/settings_sections/general_section.json", "type": "image" }, "edu_cloud_onedrive_error_popup": { "file": "ui/settings_sections/general_section.json", "type": "input_panel", "extend": { "name": "form_fit_modal_dialog_popup", "namespace": "popup_dialog" } }, "edu_cloud_onedrive_error_content": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "body_text_centering_panel2", "padding2", "learn_more_button", "padding3", "ok_button" ] }, "edu_cloud_onedrive_error_content/body_text_centering_panel2": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "vertical_stack_item", "namespace": "edu_common" }, "children": [ "body_text2" ] }, "edu_cloud_onedrive_error_content/body_text_centering_panel2/body_text2": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "edu_cloud_onedrive_error_content/padding2": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "edu_cloud_onedrive_error_content/learn_more_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "underline_button", "namespace": "edu_common" } }, "edu_cloud_onedrive_error_content/padding3": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "edu_cloud_onedrive_error_content/ok_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "creator_button": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "settings_common" } }, "editor_toggle_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "editor_confirmation_panel", "editor_toggle_spacer", "editor_image_panel" ] }, "editor_toggle_panel/editor_confirmation_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "editor_active_label", "toggle_spacer", "editor_confirmation_section_label" ] }, "editor_toggle_panel/editor_confirmation_panel/editor_active_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "editor_toggle_panel/editor_confirmation_panel/toggle_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "editor_toggle_panel/editor_confirmation_panel/editor_confirmation_section_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "editor_toggle_panel/editor_toggle_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "editor_toggle_panel/editor_image_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "editor_icon" ] }, "editor_toggle_panel/editor_image_panel/editor_icon": { "file": "ui/settings_sections/general_section.json", "type": "image" }, "creator_toggles_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "section_panel_1", "primary_panel" ] }, "creator_toggles_panel/section_panel_1": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "section_divider" ] }, "creator_toggles_panel/section_panel_1/section_divider": { "file": "ui/settings_sections/general_section.json", "type": "image" }, "creator_toggles_panel/primary_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "content_log_section_label", "content_log_section_label_spacer", "clipboard_setting" ] }, "creator_toggles_panel/primary_panel/content_log_section_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "creator_toggles_panel/primary_panel/content_log_section_label_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "creator_toggles_panel/primary_panel/clipboard_setting": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debugger_toggles_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "section_panel_1", "primary_panel" ] }, "debugger_toggles_panel/section_panel_1": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "section_divider" ] }, "debugger_toggles_panel/section_panel_1/section_divider": { "file": "ui/settings_sections/general_section.json", "type": "image" }, "debugger_toggles_panel/primary_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "heading", "spacer", "passcode_required_toggle", "passcode_input", "auto_attach_toggle", "all_options_panel" ] }, "debugger_toggles_panel/primary_panel/heading": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "debugger_toggles_panel/primary_panel/spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "debugger_toggles_panel/primary_panel/passcode_required_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debugger_toggles_panel/primary_panel/passcode_input": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "debugger_toggles_panel/primary_panel/auto_attach_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debugger_toggles_panel/primary_panel/all_options_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "attach_mode_option", "host_and_port_panel", "auto_attach_timeout_slider" ] }, "debugger_toggles_panel/primary_panel/all_options_panel/attach_mode_option": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "host_input", "spacer", "port_input" ] }, "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/host_input": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/port_input": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "debugger_toggles_panel/primary_panel/all_options_panel/auto_attach_timeout_slider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "editor_toggles_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "section_panel_1", "primary_panel" ] }, "editor_toggles_panel/section_panel_1": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "section_divider" ] }, "editor_toggles_panel/section_panel_1/section_divider": { "file": "ui/settings_sections/general_section.json", "type": "image" }, "editor_toggles_panel/primary_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "content_log_section_label", "content_log_section_label_spacer", "clipboard_setting" ] }, "editor_toggles_panel/primary_panel/content_log_section_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "editor_toggles_panel/primary_panel/content_log_section_label_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "editor_toggles_panel/primary_panel/clipboard_setting": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "diagnostics_toggles_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "section_panel_1", "primary_panel" ] }, "diagnostics_toggles_panel/section_panel_1": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "section_divider" ] }, "diagnostics_toggles_panel/section_panel_1/section_divider": { "file": "ui/settings_sections/general_section.json", "type": "image" }, "diagnostics_toggles_panel/primary_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "heading", "spacer", "serverbound_client_diagnostics_toggle", "diagnostics_capture_buttons" ] }, "diagnostics_toggles_panel/primary_panel/heading": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "diagnostics_toggles_panel/primary_panel/spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "diagnostics_toggles_panel/primary_panel/serverbound_client_diagnostics_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "diagnostics_toggles_panel/primary_panel/diagnostics_capture_buttons": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "clear_diagnostics_capture_files" ] }, "diagnostics_toggles_panel/primary_panel/diagnostics_capture_buttons/clear_diagnostics_capture_files": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "watchdog_toggles_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "section_panel_1", "primary_panel" ] }, "watchdog_toggles_panel/section_panel_1": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "section_divider" ] }, "watchdog_toggles_panel/section_panel_1/section_divider": { "file": "ui/settings_sections/general_section.json", "type": "image" }, "watchdog_toggles_panel/primary_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "heading", "spacer", "hang_threshold_slider", "spike_warning_toggle", "spike_threshold_slider", "slow_warning_toggle", "slow_threshold_slider" ] }, "watchdog_toggles_panel/primary_panel/heading": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "watchdog_toggles_panel/primary_panel/spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "watchdog_toggles_panel/primary_panel/hang_threshold_slider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "watchdog_toggles_panel/primary_panel/spike_warning_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "watchdog_toggles_panel/primary_panel/spike_threshold_slider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "watchdog_toggles_panel/primary_panel/slow_warning_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "watchdog_toggles_panel/primary_panel/slow_threshold_slider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "device_info_toggles_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "section_panel_1", "primary_panel", "device_info_memory_tier_dropdown" ] }, "device_info_toggles_panel/section_panel_1": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "section_divider" ] }, "device_info_toggles_panel/section_panel_1/section_divider": { "file": "ui/settings_sections/general_section.json", "type": "image" }, "device_info_toggles_panel/primary_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "heading", "spacer", "device_info_memory_tier_use_override_toggle" ] }, "device_info_toggles_panel/primary_panel/heading": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "device_info_toggles_panel/primary_panel/spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "device_info_toggles_panel/primary_panel/device_info_memory_tier_use_override_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "device_info_toggles_panel/device_info_memory_tier_dropdown": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "content_memory_tier_dropdown_content": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "content_log_gui_level_content": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "content_log_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "section_panel_1", "content_log_section_label", "content_log_section_label_spacer", "option_content_file_log", "option_content_gui_log", "option_content_gui_log_show_on_errors", "option_content_log_gui_level", "content_log_buttons", "content_log_section_label_spacer_2", "content_log_location_label_header", "content_log_location_label" ] }, "content_log_panel/section_panel_1": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "section_divider" ] }, "content_log_panel/section_panel_1/section_divider": { "file": "ui/settings_sections/general_section.json", "type": "image" }, "content_log_panel/content_log_section_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "content_log_panel/content_log_section_label_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "content_log_panel/option_content_file_log": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "content_log_panel/option_content_gui_log": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "content_log_panel/option_content_gui_log_show_on_errors": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "content_log_panel/option_content_log_gui_level": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "content_log_panel/content_log_buttons": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "open_content_log_history", "content_log_section_label_spacer", "clear_content_log_files" ] }, "content_log_panel/content_log_buttons/open_content_log_history": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "content_log_panel/content_log_buttons/content_log_section_label_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "content_log_panel/content_log_buttons/clear_content_log_files": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "content_log_panel/content_log_section_label_spacer_2": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "content_log_panel/content_log_location_label_header": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "content_log_panel/content_log_location_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "creator_section": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "editor_toggle", "creator_toggles", "debugger_toggles_panel", "diagnostics_toggle_panel", "watchdog_toggles_panel", "editor_toggles_panel", "device_info_toggles_panel", "content_log_panel" ] }, "creator_section/editor_toggle": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "editor_toggle_panel", "namespace": "general_section" } }, "creator_section/creator_toggles": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "creator_toggles_panel", "namespace": "general_section" } }, "creator_section/debugger_toggles_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "debugger_toggles_panel", "namespace": "general_section" } }, "creator_section/diagnostics_toggle_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "diagnostics_toggles_panel", "namespace": "general_section" } }, "creator_section/watchdog_toggles_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "watchdog_toggles_panel", "namespace": "general_section" } }, "creator_section/editor_toggles_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "editor_toggles_panel", "namespace": "general_section" } }, "creator_section/device_info_toggles_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "device_info_toggles_panel", "namespace": "general_section" } }, "creator_section/content_log_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "content_log_panel", "namespace": "general_section" } }, "video_button": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "settings_common" } }, "advanced_video_options_toggle": { "file": "ui/settings_sections/general_section.json", "type": "toggle", "extend": { "name": "option_toggle_control", "namespace": "settings_common" } }, "video_menu_slider_step_progress": { "file": "ui/settings_sections/general_section.json", "type": "image", "extend": { "name": "slider_step", "namespace": "common" } }, "video_menu_slider_progress": { "file": "ui/settings_sections/general_section.json", "type": "image" }, "video_menu_slider_bar_default": { "file": "ui/settings_sections/general_section.json", "type": "image", "extend": { "name": "slider_bar_default", "namespace": "common" } }, "video_menu_customization_slider_control": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "slider" ] }, "video_menu_customization_slider_control/slider": { "file": "ui/settings_sections/general_section.json", "type": "slider", "extend": { "name": "slider", "namespace": "common" }, "children": [ "slider_box", "slider_bar_default", "slider_bar_hover" ] }, "video_menu_customization_slider_control/slider/slider_box": { "file": "ui/settings_sections/general_section.json", "type": "slider_box", "extend": { "name": "slider_box", "namespace": "common" } }, "video_menu_customization_slider_control/slider/slider_bar_default": { "file": "ui/settings_sections/general_section.json", "type": "image", "extend": { "name": "video_menu_slider_bar_default", "namespace": "general_section" } }, "video_menu_customization_slider_control/slider/slider_bar_hover": { "file": "ui/settings_sections/general_section.json", "type": "image", "extend": { "name": "slider_bar_hover", "namespace": "common" } }, "video_menu_customization_option_slider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_generic", "namespace": "settings_common" } }, "video_section": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "advanced_graphics_options_panel", "spacer_1", "graphics_api_dropdown", "raytracing_render_distance_slider", "deferred_render_distance_slider", "render_distance_slider", "render_distance_warning_text", "spacer_2", "brightness_slider", "spacer_3", "perspective_dropdown", "spacer_4", "fullscreen_toggle", "spacer_5", "option_toggle_hidehand", "spacer_6", "hide_paperdoll_toggle", "spacer_7", "option_toggle_hidehud", "spacer_8", "option_toggle_screen_animations", "spacer_9", "hud_opacity_slider", "spacer_10", "splitscreen_hud_opacity_slider", "spacer_11", "setup_safe_zone", "spacer_12", "fov_slider", "spacer_13", "split_screen_dropdown", "spacer_14", "auto_save_icon_toggle", "spacer_15", "outline_selection_toggle", "spacer_16", "player_names_toggle", "spacer_17", "splitscreen_player_names_toggle", "spacer_18", "view_bobbing_toggle", "spacer_19", "camera_shake_toggle", "spacer_20", "fancy_leaves_toggle", "spacer_21", "fancy_bubbles_toggle", "spacer_22", "render_clouds_toggle", "spacer_23", "fancy_clouds_toggle", "spacer_24", "smooth_lighting_toggle", "spacer_25", "rendering_profile_option_slider", "field_of_view_toggle", "spacer_26", "damage_bob_option_slider", "spacer_26.5", "super_fancy_panel", "ui_profile_dropdown", "spacer_27", "gui_scale_slider", "spacer_28", "gui_accessibility_scaling_toggle", "spacer_29", "option_toggle_improved_input_response", "spacer_30", "frame_pacing_toggle", "spacer_31", "graphics_mode_switch_toggle", "spacer_32", "upscaling_toggle", "spacer_33", "max_framerate_slider", "spacer_34", "msaa_slider", "spacer_35", "texel_anti_aliasing_toggle", "spacer_36", "texture_streaming_toggle", "spacer_37", "reset_button" ] }, "video_section/advanced_graphics_options_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "graphics_mode", "graphics_quality_preset_mode_dropdown_content", "spacer_0", "advanced_graphics_options_button", "advanced_graphics_options_section" ] }, "video_section/advanced_graphics_options_panel/graphics_mode": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "video_section/advanced_graphics_options_panel/graphics_quality_preset_mode_dropdown_content": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "video_section/advanced_graphics_options_panel/spacer_0": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "video_section/advanced_graphics_options_panel/advanced_graphics_options_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "video_section/advanced_graphics_options_panel/advanced_graphics_options_section": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "advanced_graphics_options_section", "namespace": "general_section" } }, "video_section/spacer_1": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "video_section/graphics_api_dropdown": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "video_section/raytracing_render_distance_slider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" }, "children": [ "option_generic_core" ] }, "video_section/raytracing_render_distance_slider/option_generic_core": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "option_generic_core", "namespace": "settings_common" } }, "video_section/deferred_render_distance_slider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "video_menu_customization_option_slider", "namespace": "general_section" }, "children": [ "option_generic_core" ] }, "video_section/deferred_render_distance_slider/option_generic_core": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "option_generic_core", "namespace": "settings_common" } }, "video_section/render_distance_slider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "video_menu_customization_option_slider", "namespace": "general_section" }, "children": [ "render_distance_warning", "option_generic_core" ] }, "video_section/render_distance_slider/render_distance_warning": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "render_distance_warning", "namespace": "general_section" } }, "video_section/render_distance_slider/option_generic_core": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "option_generic_core", "namespace": "settings_common" } }, "video_section/render_distance_warning_text": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "render_distance_popup" ] }, "video_section/render_distance_warning_text/render_distance_popup": { "file": "ui/settings_sections/general_section.json", "type": "image", "extend": { "name": "static_tooltip_popup_with_image_and_text", "namespace": "common" } }, "video_section/spacer_2": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "video_section/brightness_slider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "video_section/spacer_3": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "video_section/perspective_dropdown": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "video_section/spacer_4": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "video_section/fullscreen_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "video_section/spacer_5": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "video_section/option_toggle_hidehand": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "video_section/spacer_6": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "video_section/hide_paperdoll_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "video_section/spacer_7": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "video_section/option_toggle_hidehud": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "video_section/spacer_8": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "video_section/option_toggle_screen_animations": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "video_section/spacer_9": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "video_section/hud_opacity_slider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "video_section/spacer_10": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "video_section/splitscreen_hud_opacity_slider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "video_section/spacer_11": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "video_section/setup_safe_zone": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "action_button" ] }, "video_section/setup_safe_zone/action_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "video_section/spacer_12": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "video_section/fov_slider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "video_section/spacer_13": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "video_section/split_screen_dropdown": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "video_section/spacer_14": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "video_section/auto_save_icon_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "video_section/spacer_15": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "video_section/outline_selection_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "video_section/spacer_16": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "video_section/player_names_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "video_section/spacer_17": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "video_section/splitscreen_player_names_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "video_section/spacer_18": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "video_section/view_bobbing_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "video_section/spacer_19": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "video_section/camera_shake_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "video_section/spacer_20": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "video_section/fancy_leaves_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "video_section/spacer_21": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "video_section/fancy_bubbles_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "video_section/spacer_22": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "video_section/render_clouds_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "video_section/spacer_23": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "video_section/fancy_clouds_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "video_section/spacer_24": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "video_section/smooth_lighting_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "video_section/spacer_25": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "video_section/rendering_profile_option_slider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "video_section/field_of_view_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "video_section/spacer_26": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "video_section/damage_bob_option_slider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "video_section/spacer_26.5": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "video_section/super_fancy_panel": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "super_fancy_section" ] }, "video_section/super_fancy_panel/super_fancy_section": { "file": "ui/settings_sections/general_section.json", "type": "image", "children": [ "super_fancy_contents" ] }, "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "atmospherics_toggle", "edge_highlight_toggle", "bloom_toggle", "terrain_shadows_toggle", "super_fancy_water_toggle" ] }, "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/atmospherics_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/edge_highlight_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/bloom_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/terrain_shadows_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "video_section/super_fancy_panel/super_fancy_section/super_fancy_contents/super_fancy_water_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "video_section/ui_profile_dropdown": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "video_section/spacer_27": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "video_section/gui_scale_slider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" }, "children": [ "option_generic_core" ] }, "video_section/gui_scale_slider/option_generic_core": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "option_generic_core", "namespace": "settings_common" } }, "video_section/spacer_28": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "video_section/gui_accessibility_scaling_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" }, "children": [ "option_generic_core" ] }, "video_section/gui_accessibility_scaling_toggle/option_generic_core": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "option_generic_core", "namespace": "settings_common" } }, "video_section/spacer_29": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "video_section/option_toggle_improved_input_response": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" }, "children": [ "option_generic_core" ] }, "video_section/option_toggle_improved_input_response/option_generic_core": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "option_generic_core", "namespace": "settings_common" } }, "video_section/spacer_30": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "video_section/frame_pacing_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" }, "children": [ "option_generic_core" ] }, "video_section/frame_pacing_toggle/option_generic_core": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "option_generic_core", "namespace": "settings_common" } }, "video_section/spacer_31": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "video_section/graphics_mode_switch_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "video_section/spacer_32": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "video_section/upscaling_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "upscaling_toggle", "namespace": "general_section" } }, "video_section/spacer_33": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "video_section/max_framerate_slider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "max_framerate_slider", "namespace": "general_section" } }, "video_section/spacer_34": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "video_section/msaa_slider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "msaa_slider", "namespace": "general_section" } }, "video_section/spacer_35": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "video_section/texel_anti_aliasing_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "video_section/spacer_36": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "video_section/texture_streaming_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "video_section/spacer_37": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "video_section/reset_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "max_framerate_slider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" }, "children": [ "option_generic_core" ] }, "max_framerate_slider/option_generic_core": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "option_generic_core", "namespace": "settings_common" } }, "msaa_slider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "upscaling_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" }, "children": [ "option_generic_core" ] }, "upscaling_toggle/option_generic_core": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "option_generic_core", "namespace": "settings_common" } }, "render_distance_warning_image": { "file": "ui/settings_sections/general_section.json", "type": "image" }, "render_distance_warning": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "render_distance_warning_image" ] }, "render_distance_warning/render_distance_warning_image": { "file": "ui/settings_sections/general_section.json", "type": "image", "extend": { "name": "render_distance_warning_image", "namespace": "general_section" } }, "ui_profile_dropdown_content": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "split_screen_dropdown_content": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "third_person_dropdown_content": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "toast_notification_duration_dropdown_content": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "chat_message_duration_dropdown_content": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "file_storage_location_content": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "background": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "fill", "border" ] }, "background/fill": { "file": "ui/settings_sections/general_section.json", "type": "image" }, "background/border": { "file": "ui/settings_sections/general_section.json", "type": "image" }, "left_button_label": { "file": "ui/settings_sections/general_section.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "right_button_label": { "file": "ui/settings_sections/general_section.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "realms_button_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "pad_0", "left_button_panel", "pad_1", "right_button", "pad_2" ] }, "realms_button_panel/pad_0": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "realms_button_panel/left_button_panel": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "left_button", "left_button_loading" ] }, "realms_button_panel/left_button_panel/left_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "realms_button_panel/left_button_panel/left_button_loading": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "progress_loading", "namespace": "common_store" } }, "realms_button_panel/pad_1": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "realms_button_panel/right_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "realms_button_panel/pad_2": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "consumable_not_extendable": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "panel_content" ] }, "consumable_not_extendable/panel_content": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "padded_icon_0", "limited_status_image", "padded_icon_1", "label_panel" ] }, "consumable_not_extendable/panel_content/padded_icon_0": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "consumable_not_extendable/panel_content/limited_status_image": { "file": "ui/settings_sections/general_section.json", "type": "image" }, "consumable_not_extendable/panel_content/padded_icon_1": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "consumable_not_extendable/panel_content/label_panel": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "name_label2" ] }, "consumable_not_extendable/panel_content/label_panel/name_label2": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "possible_store_mismatch": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "panel_content" ] }, "possible_store_mismatch/panel_content": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "padded_icon_0", "limited_status_image", "padded_icon_1", "label_panel" ] }, "possible_store_mismatch/panel_content/padded_icon_0": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "possible_store_mismatch/panel_content/limited_status_image": { "file": "ui/settings_sections/general_section.json", "type": "image" }, "possible_store_mismatch/panel_content/padded_icon_1": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "possible_store_mismatch/panel_content/label_panel": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "name_label2" ] }, "possible_store_mismatch/panel_content/label_panel/name_label2": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "realms_subscription_stack": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "image_panel", "pad", "info" ] }, "realms_subscription_stack/image_panel": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ] }, "realms_subscription_stack/image_panel/0": { "file": "ui/settings_sections/general_section.json", "type": "unknown" }, "realms_subscription_stack/pad": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "realms_subscription_stack/info": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "realm_name", "realms_desc_label", "bottom_pad" ] }, "realms_subscription_stack/info/realm_name": { "file": "ui/settings_sections/general_section.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "realms_subscription_stack/info/realms_desc_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "realms_subscription_stack/info/bottom_pad": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "realms_subscription_main": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "black_background", "realms_plus_subscription_stack" ] }, "realms_subscription_main/black_background": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "background", "namespace": "general_section" } }, "realms_subscription_main/realms_plus_subscription_stack": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "realms_plus_subscription_top_stack", "realms_plus_bottom_button_stack" ] }, "realms_subscription_main/realms_plus_subscription_stack/realms_plus_subscription_top_stack": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "realms_subscription_stack", "namespace": "general_section" } }, "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "top_pad", "realms_plus_bottom_button_panel", "bottom_pad" ] }, "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/top_pad": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/realms_plus_bottom_button_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "realms_button_panel", "namespace": "general_section" } }, "realms_subscription_main/realms_plus_subscription_stack/realms_plus_bottom_button_stack/bottom_pad": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "realms_subscription_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "top_panel", "pad_1", "middle_panel", "pad_2", "lower_panel", "pad_3", "platform_mismatch_container", "pad_4" ] }, "realms_subscription_panel/top_panel": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "realms_subscription_main", "namespace": "general_section" } }, "realms_subscription_panel/pad_1": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "realms_subscription_panel/middle_panel": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "black_background", "renews_text" ] }, "realms_subscription_panel/middle_panel/black_background": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "background", "namespace": "general_section" } }, "realms_subscription_panel/middle_panel/renews_text": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "realms_subscription_panel/pad_2": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "realms_subscription_panel/lower_panel": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "black_background", "consumable_not_extendable" ] }, "realms_subscription_panel/lower_panel/black_background": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "background", "namespace": "general_section" } }, "realms_subscription_panel/lower_panel/consumable_not_extendable": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "consumable_not_extendable", "namespace": "general_section" } }, "realms_subscription_panel/pad_3": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "realms_subscription_panel/platform_mismatch_container": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "black_background", "possible_store_mismatch" ] }, "realms_subscription_panel/platform_mismatch_container/black_background": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "background", "namespace": "general_section" } }, "realms_subscription_panel/platform_mismatch_container/possible_store_mismatch": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "possible_store_mismatch", "namespace": "general_section" } }, "realms_subscription_panel/pad_4": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "realms_plus_subscription_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "realms_subscription_panel", "namespace": "general_section" } }, "additional_subscription_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "realms_subscription_panel", "namespace": "general_section" } }, "view_subscriptions_button": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "settings_common" } }, "view_subscriptions_prerelease_section": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "black_background", "renews_text" ] }, "view_subscriptions_prerelease_section/black_background": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "background", "namespace": "general_section" } }, "view_subscriptions_prerelease_section/renews_text": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "view_subscriptions_section": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "sunsetting_label", "failed_loading_subscriptions_label", "loading_subscriptions_label", "no_active_subscriptions_panel", "realms_plus_header_my_subscriptions", "realms_plus_subscriptions_grid", "csb_purchased_with_cancel", "csb_purchased_with_buy", "csb_purchased_padding", "platform_mismatch_container", "csb_expiration_container", "csb_expiration_and_platform_mismatch_padding", "additional_realms_subscriptions_grid", "settings_additional_subscription_offers_section", "pad_3" ] }, "view_subscriptions_section/sunsetting_label": { "file": "ui/settings_sections/general_section.json", "type": "image", "extend": { "name": "realm_warning_tip", "namespace": "play" } }, "view_subscriptions_section/failed_loading_subscriptions_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "view_subscriptions_section/loading_subscriptions_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "view_subscriptions_section/no_active_subscriptions_panel": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "header_no_active_csub_or_realms_subscriptions", "background_panel" ] }, "view_subscriptions_section/no_active_subscriptions_panel/header_no_active_csub_or_realms_subscriptions": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "text" ] }, "view_subscriptions_section/no_active_subscriptions_panel/header_no_active_csub_or_realms_subscriptions/text": { "file": "ui/settings_sections/general_section.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "view_subscriptions_section/no_active_subscriptions_panel/background_panel": { "file": "ui/settings_sections/general_section.json", "type": "image" }, "view_subscriptions_section/realms_plus_header_my_subscriptions": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "text" ] }, "view_subscriptions_section/realms_plus_header_my_subscriptions/text": { "file": "ui/settings_sections/general_section.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "view_subscriptions_section/realms_plus_subscriptions_grid": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel" }, "view_subscriptions_section/csb_purchased_with_cancel": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "csb_container", "namespace": "csb_subscription_panel" } }, "view_subscriptions_section/csb_purchased_with_buy": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "csb_container", "namespace": "csb_subscription_panel" } }, "view_subscriptions_section/csb_purchased_padding": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "view_subscriptions_section/platform_mismatch_container": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "black_background", "possible_store_mismatch" ] }, "view_subscriptions_section/platform_mismatch_container/black_background": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "background", "namespace": "general_section" } }, "view_subscriptions_section/platform_mismatch_container/possible_store_mismatch": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "possible_store_mismatch", "namespace": "general_section" } }, "view_subscriptions_section/csb_expiration_container": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "csb_expiration_text_container", "background_panel" ] }, "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "csb_expiration_text_padding", "csb_expiration" ] }, "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container/csb_expiration_text_padding": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "view_subscriptions_section/csb_expiration_container/csb_expiration_text_container/csb_expiration": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "view_subscriptions_section/csb_expiration_container/background_panel": { "file": "ui/settings_sections/general_section.json", "type": "image" }, "view_subscriptions_section/csb_expiration_and_platform_mismatch_padding": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "view_subscriptions_section/additional_realms_subscriptions_grid": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel" }, "view_subscriptions_section/settings_additional_subscription_offers_section": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "settings_additional_subscription_offers_section", "namespace": "general_section" } }, "view_subscriptions_section/pad_3": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "settings_additional_subscription_offers_section": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "active_available_divider", "realms_plus_header_label", "pad_0", "additional_realms_buy_offer", "pad_8", "csb_buy_panel" ] }, "settings_additional_subscription_offers_section/active_available_divider": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "section_divider", "namespace": "common" } }, "settings_additional_subscription_offers_section/realms_plus_header_label": { "file": "ui/settings_sections/general_section.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "settings_additional_subscription_offers_section/pad_0": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "settings_additional_subscription_offers_section/additional_realms_buy_offer": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "realms_subscription_main", "namespace": "general_section" } }, "settings_additional_subscription_offers_section/pad_8": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "settings_additional_subscription_offers_section/csb_buy_panel": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "csb_container", "namespace": "csb_subscription_panel" } }, "accessibility_button": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "settings_common" } }, "toast_notification_duration_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "toast_notification_duration_info_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "toast_notification_duration_info_edu_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "chat_message_duration_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "chat_message_duration_info_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "accessibility_section": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "option_toggle_subtitles", "option_toggle0", "option_toggle1", "option_toggle2", "option_slider_0", "option_toggle3", "hud_text_background_opacity_slider", "chat_opacity_slider", "actionbar_text_background_opacity_slider", "camera_shake_toggle", "hide_endflash_toggle", "enable_dithering_blocks_toggle", "enable_dithering_mobs_toggle", "darkness_slider", "glint_strength_slider", "glint_speed_slider", "toast_notification_duration_options_panel", "chat_message_duration_options_panel", "gui_scale_slider", "gui_accessibility_scaling_toggle", "reset_button" ] }, "accessibility_section/option_toggle_subtitles": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "accessibility_section/option_toggle0": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "accessibility_section/option_toggle1": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "accessibility_section/option_toggle2": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "accessibility_section/option_slider_0": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "accessibility_section/option_toggle3": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "accessibility_section/hud_text_background_opacity_slider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "accessibility_section/chat_opacity_slider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "accessibility_section/actionbar_text_background_opacity_slider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "accessibility_section/camera_shake_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "accessibility_section/hide_endflash_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "accessibility_section/enable_dithering_blocks_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "accessibility_section/enable_dithering_mobs_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "accessibility_section/darkness_slider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "accessibility_section/glint_strength_slider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "accessibility_section/glint_speed_slider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "accessibility_section/toast_notification_duration_options_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "toast_notification_duration_label_wrapper", "toast_notification_duration_info_label_wrapper", "toast_notification_duration_info_label_edu_wrapper", "toast_notification_duration_dropdown_spacer_pre", "toast_notification_duration_dropdown" ] }, "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_label_wrapper": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_info_label_wrapper": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_info_label_edu_wrapper": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_dropdown_spacer_pre": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "accessibility_section/toast_notification_duration_options_panel/toast_notification_duration_dropdown": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "accessibility_section/chat_message_duration_options_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "chat_message_duration_label_wrapper", "chat_message_duration_info_label_wrapper", "chat_message_duration_dropdown_spacer_pre", "chat_message_duration_dropdown" ] }, "accessibility_section/chat_message_duration_options_panel/chat_message_duration_label_wrapper": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "accessibility_section/chat_message_duration_options_panel/chat_message_duration_info_label_wrapper": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "accessibility_section/chat_message_duration_options_panel/chat_message_duration_dropdown_spacer_pre": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "accessibility_section/chat_message_duration_options_panel/chat_message_duration_dropdown": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "accessibility_section/gui_scale_slider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" }, "children": [ "option_generic_core" ] }, "accessibility_section/gui_scale_slider/option_generic_core": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "option_generic_core", "namespace": "settings_common" } }, "accessibility_section/gui_accessibility_scaling_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" }, "children": [ "option_generic_core" ] }, "accessibility_section/gui_accessibility_scaling_toggle/option_generic_core": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "option_generic_core", "namespace": "settings_common" } }, "accessibility_section/reset_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "sound_button": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "settings_common" } }, "sound_section": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "paddingMainVolume", "option_slider_0", "paddingDividerAudioSettings", "dividerAudioSettings", "paddingMusic", "option_slider_1", "paddingSound", "option_slider_2", "paddingAmbient", "option_slider_3", "paddingBlockVolume", "option_slider_4", "paddingHostile", "option_slider_5", "paddingNeutralVolume", "option_slider_6", "paddingPlayervolume", "option_slider_7", "paddingRecordVolume", "option_slider_8", "paddingWeatherVolume", "option_slider_9", "paddingTTSVolume", "option_slider_10", "paddingResetVolumes", "reset_button", "paddingEndOfList" ] }, "sound_section/paddingMainVolume": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "sound_section/option_slider_0": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "sound_section/paddingDividerAudioSettings": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "sound_section/dividerAudioSettings": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "section_divider" ] }, "sound_section/dividerAudioSettings/section_divider": { "file": "ui/settings_sections/general_section.json", "type": "image" }, "sound_section/paddingMusic": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "sound_section/option_slider_1": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "sound_section/paddingSound": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "sound_section/option_slider_2": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "sound_section/paddingAmbient": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "sound_section/option_slider_3": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "sound_section/paddingBlockVolume": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "sound_section/option_slider_4": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "sound_section/paddingHostile": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "sound_section/option_slider_5": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "sound_section/paddingNeutralVolume": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "sound_section/option_slider_6": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "sound_section/paddingPlayervolume": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "sound_section/option_slider_7": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "sound_section/paddingRecordVolume": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "sound_section/option_slider_8": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "sound_section/paddingWeatherVolume": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "sound_section/option_slider_9": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "sound_section/paddingTTSVolume": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "sound_section/option_slider_10": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "sound_section/paddingResetVolumes": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "sound_section/reset_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "sound_section/paddingEndOfList": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "language_button": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "settings_common" } }, "language_grid_item": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "radio_with_label", "namespace": "settings_common" } }, "language_section": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "language_list_grid" ] }, "language_section/language_list_grid": { "file": "ui/settings_sections/general_section.json", "type": "grid" }, "preview_button": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "settings_common" } }, "preview_section": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "spacer_0", "generic_label", "preview_store_launch_app1_button", "preview_store_launch_app2_button" ] }, "preview_section/spacer_0": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "preview_section/generic_label": { "file": "ui/settings_sections/general_section.json", "type": "label", "extend": { "name": "white_label", "namespace": "settings_common" } }, "preview_section/preview_store_launch_app1_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "preview_section/preview_store_launch_app2_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "override_date_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "year_text_box", "year_month_slash", "month_text_box", "month_day_slash", "day_text_box", "day_hour_slash", "hour_text_box", "hour_minute_slash", "minute_text_box" ] }, "override_date_panel/year_text_box": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "override_date_panel/year_month_slash": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "override_date_panel/month_text_box": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "override_date_panel/month_day_slash": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "override_date_panel/day_text_box": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "override_date_panel/day_hour_slash": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "override_date_panel/hour_text_box": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "override_date_panel/hour_minute_slash": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "override_date_panel/minute_text_box": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "timezonetype_dropdown_content": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "date_options_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "padding0", "display_override_datetime_option_toggle", "option_toggle_date_override", "override_date_options_panel" ] }, "date_options_panel/padding0": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "date_options_panel/display_override_datetime_option_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "date_options_panel/option_toggle_date_override": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "date_options_panel/override_date_options_panel": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "override_date_options_panel", "namespace": "general_section" } }, "override_date_options_panel": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "override_date_options_background_panel" ] }, "override_date_options_panel/override_date_options_background_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "load_override_date_option_toggle", "select_dropdown", "override_date_panel", "padding1", "override_time_scale_option", "reset_time_button", "padding2" ] }, "override_date_options_panel/override_date_options_background_panel/load_override_date_option_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "override_date_options_panel/override_date_options_background_panel/select_dropdown": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "override_date_options_panel/override_date_options_background_panel/override_date_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "override_date_panel", "namespace": "general_section" } }, "override_date_options_panel/override_date_options_background_panel/padding1": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "override_date_options_panel/override_date_options_background_panel/override_time_scale_option": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "override_date_options_panel/override_date_options_background_panel/reset_time_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "override_date_options_panel/override_date_options_background_panel/padding2": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "debug_display_logged_error_panel": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "debug_display_logged_error_panel_background" ] }, "debug_display_logged_error_panel/debug_display_logged_error_panel_background": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "option_dev_show_display_logged_error_marketplace", "option_dev_show_display_logged_error_ui", "option_dev_show_display_logged_error_osi", "option_dev_show_display_logged_error_other", "spacer_0" ] }, "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_marketplace": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_ui": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_osi": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_display_logged_error_panel/debug_display_logged_error_panel_background/option_dev_show_display_logged_error_other": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_display_logged_error_panel/debug_display_logged_error_panel_background/spacer_0": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "xbox_sandbox_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "padding0", "display_override_xbox_sandbox_toggle_windows", "display_override_xbox_sandbox_toggle", "override_xbox_options_panel" ] }, "xbox_sandbox_panel/padding0": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "xbox_sandbox_panel/display_override_xbox_sandbox_toggle_windows": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "xbox_sandbox_panel/display_override_xbox_sandbox_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "xbox_sandbox_panel/override_xbox_options_panel": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "override_xbox_options_panel", "namespace": "general_section" } }, "override_xbox_options_panel": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "override_xbox_options" ] }, "override_xbox_options_panel/override_xbox_options": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "option_dropdown_xbox" ] }, "override_xbox_options_panel/override_xbox_options/option_dropdown_xbox": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "override_version_options_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "override_version_panel", "override_version_button_panel", "override_date_panel_bottom_padding" ] }, "override_version_options_panel/override_version_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "override_version_panel", "namespace": "general_section" } }, "override_version_options_panel/override_version_button_panel": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "update_override_version_button" ] }, "override_version_options_panel/override_version_button_panel/update_override_version_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "override_version_options_panel/override_date_panel_bottom_padding": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "override_version_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "major_version_text_box", "first_dot", "minor_version_text_box", "second_dot", "patch_version_text_box" ] }, "override_version_panel/major_version_text_box": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "override_version_panel/first_dot": { "file": "ui/settings_sections/general_section.json", "type": "label", "extend": { "name": "dot_label", "namespace": "general_section" } }, "override_version_panel/minor_version_text_box": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "override_version_panel/second_dot": { "file": "ui/settings_sections/general_section.json", "type": "label", "extend": { "name": "dot_label", "namespace": "general_section" } }, "override_version_panel/patch_version_text_box": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "dot_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "debug_override_treatments_panel": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "override_treatments_panel_background" ] }, "debug_override_treatments_panel/override_treatments_panel_background": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "option_toggle_treatment_override", "spacer_0", "override_treatment_options_panel", "treatments_label_panel", "treatment_grid", "unused_treatments_label_panel", "unused_treatment_grid", "spacer_1" ] }, "debug_override_treatments_panel/override_treatments_panel_background/option_toggle_treatment_override": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_override_treatments_panel/override_treatments_panel_background/spacer_0": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "apply_treatments_button", "add_treatments_panel", "treatment_cache_management_panel" ] }, "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/apply_treatments_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "text_edit_treatment", "add_button_panel" ] }, "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/text_edit_treatment": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/add_button_panel": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "add_button" ] }, "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/add_treatments_panel/add_button_panel/add_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "reset_to_default", "clear_treatments" ] }, "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel/reset_to_default": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel/clear_treatments": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "debug_override_treatments_panel/override_treatments_panel_background/treatments_label_panel": { "file": "ui/settings_sections/general_section.json", "type": "image", "extend": { "name": "banner_fill", "namespace": "common_store" }, "children": [ "treatments_label" ] }, "debug_override_treatments_panel/override_treatments_panel_background/treatments_label_panel/treatments_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "debug_override_treatments_panel/override_treatments_panel_background/treatment_grid": { "file": "ui/settings_sections/general_section.json", "type": "grid" }, "debug_override_treatments_panel/override_treatments_panel_background/unused_treatments_label_panel": { "file": "ui/settings_sections/general_section.json", "type": "image", "extend": { "name": "banner_fill", "namespace": "common_store" }, "children": [ "treatments_label" ] }, "debug_override_treatments_panel/override_treatments_panel_background/unused_treatments_label_panel/treatments_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "debug_override_treatments_panel/override_treatments_panel_background/unused_treatment_grid": { "file": "ui/settings_sections/general_section.json", "type": "grid" }, "debug_override_treatments_panel/override_treatments_panel_background/spacer_1": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "debug_override_configurations_panel": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "override_configurations_panel_background" ] }, "debug_override_configurations_panel/override_configurations_panel_background": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "option_toggle_configuration_override", "spacer_0", "override_configuration_options_panel", "configuration_grid" ] }, "debug_override_configurations_panel/override_configurations_panel_background/option_toggle_configuration_override": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_override_configurations_panel/override_configurations_panel_background/spacer_0": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "add_configurations_panel", "configuration_cache_management_panel" ] }, "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "text_edit_configuration", "add_button_panel" ] }, "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/text_edit_configuration": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/add_button_panel": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "add_button" ] }, "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/add_configurations_panel/add_button_panel/add_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "reset_to_default", "clear_configurations" ] }, "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel/reset_to_default": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "debug_override_configurations_panel/override_configurations_panel_background/override_configuration_options_panel/configuration_cache_management_panel/clear_configurations": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "debug_override_configurations_panel/override_configurations_panel_background/configuration_grid": { "file": "ui/settings_sections/general_section.json", "type": "grid" }, "debug_override_realms_features_panel": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "override_realms_features_panel_background" ] }, "debug_override_realms_features_panel/override_realms_features_panel_background": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "option_toggle_realms_feature_override", "spacer_0", "override_realms_features_options_panel", "current_realms_features_label_panel", "realms_features_grid", "unused_realms_features_label_panel", "unused_realms_features_grid" ] }, "debug_override_realms_features_panel/override_realms_features_panel_background/option_toggle_realms_feature_override": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_override_realms_features_panel/override_realms_features_panel_background/spacer_0": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "add_realms_features_panel", "realms_feature_cache_management_panel" ] }, "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "text_edit_realms_features", "add_button_panel" ] }, "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel/text_edit_realms_features": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel/add_button_panel": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "add_button" ] }, "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/add_realms_features_panel/add_button_panel/add_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "reset_to_default", "clear_realms_features" ] }, "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel/reset_to_default": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "debug_override_realms_features_panel/override_realms_features_panel_background/override_realms_features_options_panel/realms_feature_cache_management_panel/clear_realms_features": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "debug_override_realms_features_panel/override_realms_features_panel_background/current_realms_features_label_panel": { "file": "ui/settings_sections/general_section.json", "type": "image", "extend": { "name": "banner_fill", "namespace": "common_store" }, "children": [ "realms_features_label" ] }, "debug_override_realms_features_panel/override_realms_features_panel_background/current_realms_features_label_panel/realms_features_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "debug_override_realms_features_panel/override_realms_features_panel_background/realms_features_grid": { "file": "ui/settings_sections/general_section.json", "type": "grid" }, "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_label_panel": { "file": "ui/settings_sections/general_section.json", "type": "image", "extend": { "name": "banner_fill", "namespace": "common_store" }, "children": [ "realms_features_label" ] }, "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_label_panel/realms_features_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "debug_override_realms_features_panel/override_realms_features_panel_background/unused_realms_features_grid": { "file": "ui/settings_sections/general_section.json", "type": "grid" }, "configuration_grid_item": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "configuration_id_panel", "remove_button" ] }, "configuration_grid_item/configuration_id_panel": { "file": "ui/settings_sections/general_section.json", "type": "image", "extend": { "name": "banner_fill", "namespace": "common_store" }, "children": [ "configuration_id" ] }, "configuration_grid_item/configuration_id_panel/configuration_id": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "configuration_grid_item/remove_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "remove_configuration_icon": { "file": "ui/settings_sections/general_section.json", "type": "image" }, "realms_feature_grid_item": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "realms_feature_id_panel", "disable_button" ] }, "realms_feature_grid_item/realms_feature_id_panel": { "file": "ui/settings_sections/general_section.json", "type": "image", "extend": { "name": "banner_fill", "namespace": "common_store" }, "children": [ "realms_feature_id" ] }, "realms_feature_grid_item/realms_feature_id_panel/realms_feature_id": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "realms_feature_grid_item/disable_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "disable_realms_feature_icon": { "file": "ui/settings_sections/general_section.json", "type": "image" }, "unused_realms_feature_grid_item": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "unused_realms_feature_id_panel", "enable_button" ] }, "unused_realms_feature_grid_item/unused_realms_feature_id_panel": { "file": "ui/settings_sections/general_section.json", "type": "image", "extend": { "name": "banner_fill", "namespace": "common_store" }, "children": [ "unused_realms_feature_id" ] }, "unused_realms_feature_grid_item/unused_realms_feature_id_panel/unused_realms_feature_id": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "unused_realms_feature_grid_item/enable_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "enable_realms_feature_icon": { "file": "ui/settings_sections/general_section.json", "type": "image" }, "treatment_grid_item": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "treatment_id_panel", "remove_button" ] }, "treatment_grid_item/treatment_id_panel": { "file": "ui/settings_sections/general_section.json", "type": "image", "extend": { "name": "banner_fill", "namespace": "common_store" }, "children": [ "treatment_id" ] }, "treatment_grid_item/treatment_id_panel/treatment_id": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "treatment_grid_item/remove_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "remove_treatment_icon": { "file": "ui/settings_sections/general_section.json", "type": "image" }, "unused_treatment_grid_item": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "unused_treatment_id_panel", "add_button" ] }, "unused_treatment_grid_item/unused_treatment_id_panel": { "file": "ui/settings_sections/general_section.json", "type": "image", "extend": { "name": "banner_fill", "namespace": "common_store" }, "children": [ "unused_treatment_id" ] }, "unused_treatment_grid_item/unused_treatment_id_panel/unused_treatment_id": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "unused_treatment_grid_item/add_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "add_treatment_icon": { "file": "ui/settings_sections/general_section.json", "type": "image" }, "debug_select_windows_store_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "select_store_dropdown", "stores_label", "sandbox_label" ] }, "debug_select_windows_store_panel/select_store_dropdown": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "debug_select_windows_store_panel/stores_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "debug_select_windows_store_panel/sandbox_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "windows_store_dropdown_content": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "mock_http_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "display_mock_http_panel_toggle", "mock_http_panel_content" ] }, "mock_http_panel/display_mock_http_panel_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "mock_http_panel/mock_http_panel_content": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "mock_http_panel_content", "namespace": "general_section" } }, "mock_http_panel_content": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "mock_http_panel_background" ] }, "mock_http_panel_content/mock_http_panel_background": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "add_mock_rules_button", "remove_all_mock_rules_button", "active_rules_label", "rule_list", "divider" ] }, "mock_http_panel_content/mock_http_panel_background/add_mock_rules_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "mock_http_panel_content/mock_http_panel_background/remove_all_mock_rules_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "mock_http_panel_content/mock_http_panel_background/active_rules_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "mock_http_panel_content/mock_http_panel_background/rule_list": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "mock_http_rule_list", "namespace": "general_section" } }, "mock_http_panel_content/mock_http_panel_background/divider": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "section_divider", "namespace": "common" } }, "mock_http_rule_list": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel" }, "mock_http_rule": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "rule_details_label", "rule_spacer" ] }, "mock_http_rule/rule_details_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "mock_http_rule/rule_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "automation_button": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "settings_common" } }, "automation_section": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "automation_tab_label", "padding", "automation_test_asset_sas_text_box", "automation_functional_test_tags_text_box", "automation_server_test_tags_text_box", "automation_unit_test_tags_text_box", "automation_broken_functional_test_tags_text_box", "automation_broken_server_test_tags_text_box", "automation_broken_unit_test_tags_text_box", "automation_repeat_count_text_box", "automation_soak_test_duration_minutes_text_box", "automation_repeat_failures_only_toggle", "automation_run_entire_server_test_group", "automation_testbuild_id_text_box", "automation_functional_test_block_input_toggle", "automation_server_test_assert_on_level_diff_toggle" ] }, "automation_section/automation_tab_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "automation_section/padding": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "automation_section/automation_test_asset_sas_text_box": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "automation_section/automation_functional_test_tags_text_box": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "automation_section/automation_server_test_tags_text_box": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "automation_section/automation_unit_test_tags_text_box": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "automation_section/automation_broken_functional_test_tags_text_box": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "automation_section/automation_broken_server_test_tags_text_box": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "automation_section/automation_broken_unit_test_tags_text_box": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "automation_section/automation_repeat_count_text_box": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "automation_section/automation_soak_test_duration_minutes_text_box": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "automation_section/automation_repeat_failures_only_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "automation_section/automation_run_entire_server_test_group": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "automation_section/automation_testbuild_id_text_box": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "automation_section/automation_functional_test_block_input_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "automation_section/automation_server_test_assert_on_level_diff_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "discovery_debug_button": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "settings_common" } }, "discovery_debug_section": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "option_discovery_environment", "debug_override_discovery_panel" ] }, "discovery_debug_section/option_discovery_environment": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "discovery_debug_section/debug_override_discovery_panel": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "override_discovery_panel_background" ] }, "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "option_toggle_discovery_override", "spacer_0", "override_discovery_options_panel" ] }, "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/option_toggle_discovery_override": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/spacer_0": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "text_edit_discovery_override_service_name", "service_override_type", "text_edit_discovery_override_service_branch", "text_edit_discovery_override_service_custom", "service_override_management_panel", "spacer_1", "active_service_overrides_label", "spacer_2", "reset_all_endpoint_overrides_button", "discovery_overrides_do_not_save_label", "spacer_3" ] }, "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_name": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_type": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_branch": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/text_edit_discovery_override_service_custom": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "reset_endpoint_override", "apply_endpoint_override" ] }, "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel/reset_endpoint_override": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/service_override_management_panel/apply_endpoint_override": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_1": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/active_service_overrides_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_2": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/reset_all_endpoint_overrides_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/discovery_overrides_do_not_save_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_3": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "debug_button": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "settings_common" } }, "feature_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "options_for_qa_convenience", "options_for_qa_convenience_spacer", "option_toggle_dev_console_button_0", "option_toggle_assertions_debug_break", "option_toggle_assertions_show_dialog", "option_dev_show_display_logged_error", "display_logged_error_panel", "option_dev_force_trial_mode", "option_dev_force_trial_mode_spacer", "debug_overlay_pages_label", "debug_overlay_button_panel", "pre_feature_toggles_label_spacer", "feature_toggles_label", "feature_toggles_label_spacer", "feature_toggles", "end_of_feature_toggles_label_spacer", "option_toggle_dev_disable_lan_signaling", "option_dropdown_nethernet_logging_verbosity", "option_dropdown_http_logging_verbosity", "option_dropdown_xsapi_logging_verbosity", "option_toggle_remote_imgui", "option_dropdown_0", "option_toggle_extra_debug_hud_info", "option_toggle_show_test_running_text", "option_toggle_0_1", "option_toggle_0_2", "option_slider_0", "option_toggle_3", "option_toggle_4", "option_toggle_5", "option_toggle_6", "option_dropdown_server_chunk_map", "option_toggle_9", "option_toggle_disable_render_terrain", "option_toggle_disable_render_entities", "option_toggle_disable_render_blockentities", "option_toggle_disable_render_particles", "option_toggle_disable_render_sky", "option_toggle_disable_render_weather", "option_toggle_disable_render_hud", "option_toggle_disable_render_item_in_hand", "option_toggle_disable_render_main_menu_cubemap", "option_toggle_disable_render_main_menu_paperdoll_animation", "leak_memory", "log_area", "log_priority", "option_toggle_build_info", "option_perf_turtle", "option_default_profiling_option", "option_toggle_7", "option_toggle_8", "option_toggle_game_tip", "option_toggle_10", "dev_disable_client_blob_cache_toggle", "dev_force_client_blob_cache_toggle", "devquality_dropdown", "dev_add_http_delay_seconds", "dev_show_latency_graph_toggle", "xbox_sandbox_panel", "multithreaded_rendering_toggle", "filewatcher_rendering_toggle", "enable_texture_hot_reloader_toggle", "mock_http_panel", "vsync_dropdown", "sunsetting_use_overrides_toggle", "padding_sunsetting", "sunseting_state_toggle", "sunsetting_tier_dropdown", "padding_sunsetting_2", "padding1", "copy_internal_settings_folder_to_external", "padding_reset_day_one", "reset_new_player_flow", "reset_day_one_experience", "option_text_edit_1", "option_text_edit_2", "option_text_edit_3", "reset_authentication_option", "reset_report_timer_option", "reset_online_safety_option", "reset_show_hardcore_warning_option", "reset_low_ping_warning_option", "reset_ip_safety_option", "padding_graphics_options", "option_shadersdk_service_ip", "option_shadersdk_service_port", "option_shadersdk_target_port", "padding_graphics_buttons", "trigger_graphics_device_loss", "allocate_texture_handles", "padding_deferred_debug", "deferred_platform_override" ] }, "debug_section/options_for_qa_convenience": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "debug_section/options_for_qa_convenience_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "debug_section/option_toggle_dev_console_button_0": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/option_toggle_assertions_debug_break": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/option_toggle_assertions_show_dialog": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/option_dev_show_display_logged_error": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/display_logged_error_panel": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "debug_display_logged_error_panel", "namespace": "general_section" } }, "debug_section/option_dev_force_trial_mode": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/option_dev_force_trial_mode_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "debug_section/debug_overlay_pages_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "debug_section/debug_overlay_button_panel": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "debug_overlay_previous_button", "debug_overlay_next_button" ] }, "debug_section/debug_overlay_button_panel/debug_overlay_previous_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "debug_section/debug_overlay_button_panel/debug_overlay_next_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "debug_section/pre_feature_toggles_label_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "debug_section/feature_toggles_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "debug_section/feature_toggles_label_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "debug_section/feature_toggles": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel" }, "debug_section/end_of_feature_toggles_label_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "debug_section/option_toggle_dev_disable_lan_signaling": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/option_dropdown_nethernet_logging_verbosity": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "debug_section/option_dropdown_http_logging_verbosity": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "debug_section/option_dropdown_xsapi_logging_verbosity": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "debug_section/option_toggle_remote_imgui": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/option_dropdown_0": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "debug_section/option_toggle_extra_debug_hud_info": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/option_toggle_show_test_running_text": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/option_toggle_0_1": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/option_toggle_0_2": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/option_slider_0": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "debug_section/option_toggle_3": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/option_toggle_4": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/option_toggle_5": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/option_toggle_6": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/option_dropdown_server_chunk_map": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "debug_section/option_toggle_9": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/option_toggle_disable_render_terrain": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/option_toggle_disable_render_entities": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/option_toggle_disable_render_blockentities": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/option_toggle_disable_render_particles": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/option_toggle_disable_render_sky": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/option_toggle_disable_render_weather": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/option_toggle_disable_render_hud": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/option_toggle_disable_render_item_in_hand": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/option_toggle_disable_render_main_menu_cubemap": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/option_toggle_disable_render_main_menu_paperdoll_animation": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/leak_memory": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_text_edit_with_text_button", "namespace": "settings_common" } }, "debug_section/log_area": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "debug_section/log_priority": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "debug_section/option_toggle_build_info": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/option_perf_turtle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/option_default_profiling_option": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "debug_section/option_toggle_7": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/option_toggle_8": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/option_toggle_game_tip": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/option_toggle_10": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/dev_disable_client_blob_cache_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/dev_force_client_blob_cache_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/devquality_dropdown": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "debug_section/dev_add_http_delay_seconds": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "debug_section/dev_show_latency_graph_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/xbox_sandbox_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "xbox_sandbox_panel", "namespace": "general_section" } }, "debug_section/multithreaded_rendering_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/filewatcher_rendering_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/enable_texture_hot_reloader_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/mock_http_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "mock_http_panel", "namespace": "general_section" } }, "debug_section/vsync_dropdown": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "debug_section/sunsetting_use_overrides_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/padding_sunsetting": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "debug_section/sunseting_state_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/sunsetting_tier_dropdown": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "debug_section/padding_sunsetting_2": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "debug_section/padding1": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "debug_section/copy_internal_settings_folder_to_external": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "debug_section/padding_reset_day_one": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "debug_section/reset_new_player_flow": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "debug_section/reset_day_one_experience": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "debug_section/option_text_edit_1": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "debug_section/option_text_edit_2": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "debug_section/option_text_edit_3": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "debug_section/reset_authentication_option": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "debug_section/reset_report_timer_option": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "debug_section/reset_online_safety_option": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "debug_section/reset_show_hardcore_warning_option": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "debug_section/reset_low_ping_warning_option": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "debug_section/reset_ip_safety_option": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "debug_section/padding_graphics_options": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "debug_section/option_shadersdk_service_ip": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "debug_section/option_shadersdk_service_port": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "debug_section/option_shadersdk_target_port": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "debug_section/padding_graphics_buttons": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "debug_section/trigger_graphics_device_loss": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "debug_section/allocate_texture_handles": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "debug_section/padding_deferred_debug": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "debug_section/deferred_platform_override": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "realms_debug_button": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "settings_common" } }, "realms_debug_section": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "realms_menu_title", "realms_title_spacer", "feature_toggles_label", "feature_toggles_label_spacer", "feature_toggles", "end_of_feature_toggles_label_spacer", "realms_dev_toggles_title", "realms_dev_toggle_spacer", "realms_without_purchase_toggle", "realms_debug_options_title", "realms_debug_options_spacer", "option_dropdown_1", "option_dropdown_2", "option_text_edit_0", "realms_features_override_panel", "realms_debug_options_spacer_2" ] }, "realms_debug_section/realms_menu_title": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "realms_debug_section/realms_title_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "realms_debug_section/feature_toggles_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "realms_debug_section/feature_toggles_label_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "realms_debug_section/feature_toggles": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel" }, "realms_debug_section/end_of_feature_toggles_label_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "realms_debug_section/realms_dev_toggles_title": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "realms_debug_section/realms_dev_toggle_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "realms_debug_section/realms_without_purchase_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "realms_debug_section/realms_debug_options_title": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "realms_debug_section/realms_debug_options_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "realms_debug_section/option_dropdown_1": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "realms_debug_section/option_dropdown_2": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "realms_debug_section/option_text_edit_0": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "realms_debug_section/realms_features_override_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "option_toggle_realms_features_override", "override_realms_features_panel" ] }, "realms_debug_section/realms_features_override_panel/option_toggle_realms_features_override": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "realms_debug_section/realms_features_override_panel/override_realms_features_panel": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "debug_override_realms_features_panel", "namespace": "general_section" } }, "realms_debug_section/realms_debug_options_spacer_2": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "realms_feature_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "marketplace_debug_button": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "settings_common" } }, "marketplace_debug_section": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "marketplace_feature_toggles_label", "marketplace_feature_toggles_label_spacer", "marketplace_feature_toggles", "playfab_token_refresh_threshold", "option_dropdown_skin_rotation_speed", "option_toggle_all_skins_rotate", "option_toggle_display_marketplace_document_id", "option_toggle_display_platform_offer_check", "version_options_panel", "select_windows_store_panel", "date_options_panel", "option_clear_store_cache_button", "option_clear_all_cache_button", "option_delete_all_personas_button", "option_delete_legacy_personas_button", "padding2", "enable_coin_debug_switch_toggle", "add_500_coins", "add_100000_coins", "padding3", "reset_entitlements", "reset_wallet" ] }, "marketplace_debug_section/marketplace_feature_toggles_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "marketplace_debug_section/marketplace_feature_toggles_label_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "marketplace_debug_section/marketplace_feature_toggles": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel" }, "marketplace_debug_section/playfab_token_refresh_threshold": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "marketplace_debug_section/option_dropdown_skin_rotation_speed": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "marketplace_debug_section/option_toggle_all_skins_rotate": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "marketplace_debug_section/option_toggle_display_marketplace_document_id": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "marketplace_debug_section/option_toggle_display_platform_offer_check": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "marketplace_debug_section/version_options_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "option_version_override", "override_version_options_panel" ] }, "marketplace_debug_section/version_options_panel/option_version_override": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "marketplace_debug_section/version_options_panel/override_version_options_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "override_version_options_panel", "namespace": "general_section" } }, "marketplace_debug_section/select_windows_store_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "debug_select_windows_store_panel", "namespace": "general_section" } }, "marketplace_debug_section/date_options_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "date_options_panel", "namespace": "general_section" } }, "marketplace_debug_section/option_clear_store_cache_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "marketplace_debug_section/option_clear_all_cache_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "marketplace_debug_section/option_delete_all_personas_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "marketplace_debug_section/option_delete_legacy_personas_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "marketplace_debug_section/padding2": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "marketplace_debug_section/enable_coin_debug_switch_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "marketplace_debug_section/add_500_coins": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "marketplace_debug_section/add_100000_coins": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "marketplace_debug_section/padding3": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "marketplace_debug_section/reset_entitlements": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "marketplace_debug_section/reset_wallet": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "marketplace_feature_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "gatherings_debug_button": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "settings_common" } }, "gatherings_debug_section": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "refresh_gatherings_button", "spacer_1", "clear_system_service_pack_cache_button", "spacer_2", "active_gathering_label", "spacer_3", "text_edit_filter_gatherings", "spacer_4", "available_gatherings_section" ] }, "gatherings_debug_section/refresh_gatherings_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "gatherings_debug_section/spacer_1": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "gatherings_debug_section/clear_system_service_pack_cache_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "gatherings_debug_section/spacer_2": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "gatherings_debug_section/active_gathering_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "gatherings_debug_section/spacer_3": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "gatherings_debug_section/text_edit_filter_gatherings": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "gatherings_debug_section/spacer_4": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "gatherings_debug_section/available_gatherings_section": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "available_gatherings_section", "namespace": "general_section" } }, "gathering_grid_item_content": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "gathering_name", "gathering_uuid" ] }, "gathering_grid_item_content/gathering_name": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "gathering_grid_item_content/gathering_uuid": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "gathering_item_template": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "gathering_item_button" ] }, "gathering_item_template/gathering_item_button": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "available_gatherings_grid": { "file": "ui/settings_sections/general_section.json", "type": "grid" }, "available_gatherings_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "available_label", "gatherings_grid", "spacing_gap" ] }, "available_gatherings_panel/available_label": { "file": "ui/settings_sections/general_section.json", "type": "label", "extend": { "name": "selector_group_label", "namespace": "settings_common" } }, "available_gatherings_panel/gatherings_grid": { "file": "ui/settings_sections/general_section.json", "type": "grid", "extend": { "name": "available_gatherings_grid", "namespace": "general_section" } }, "available_gatherings_panel/spacing_gap": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "available_gatherings_section": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "available_gatherings_panel" ] }, "available_gatherings_section/available_gatherings_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "extend": { "name": "available_gatherings_panel", "namespace": "general_section" } }, "ui_debug_button": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "settings_common" } }, "ui_feature_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "edu_debug_button": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "settings_common" } }, "edu_feature_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "new_create_world_grid_item": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "radio_with_label", "namespace": "settings_common" } }, "new_edu_create_world_screen_grid_item": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "radio_with_label", "namespace": "settings_common" } }, "new_play_screen_grid_item": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "radio_with_label", "namespace": "settings_common" } }, "new_edit_world_screen_grid_item": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "radio_with_label", "namespace": "settings_common" } }, "new_player_permissions_screen_grid_item": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "radio_with_label", "namespace": "settings_common" } }, "new_send_invites_screen_grid_item": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "radio_with_label", "namespace": "settings_common" } }, "new_death_grid_item": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "radio_with_label", "namespace": "settings_common" } }, "new_bed_grid_item": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "radio_with_label", "namespace": "settings_common" } }, "ore_ui_gameplay_ui_grid_item": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "radio_with_label", "namespace": "settings_common" } }, "new_settings_screen_grid_item": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "radio_with_label", "namespace": "settings_common" } }, "ui_debug_section": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "ui_feature_toggles_label", "ui_feature_toggles_info_label", "ui_feature_toggles_label_spacer", "ui_feature_toggles", "end_of_ui_feature_toggles_label_divider", "end_of_ui_feature_toggles_label_divider_spacer", "end_of_ui_feature_toggles_label_spacer", "screen_override_label", "screen_override_info_label", "screen_override_label_spacer", "new_edu_create_world_screen_radio_label", "new_edu_create_world_screen_radio_label_spacer", "new_edu_create_world_screen_radio_button", "new_edu_create_world_screen_radio_button_spacer", "new_play_screen_radio_label", "new_play_screen_radio_label_spacer", "new_play_screen_radio_button", "new_play_screen_radio_button_spacer", "new_edit_world_screen_radio_label", "new_edit_world_screen_radio_label_spacer", "new_edit_world_screen_radio_button", "new_edit_world_screen_radio_button_spacer", "new_send_invites_radio_label", "new_send_invites_screen_radio_label_spacer", "new_send_invites_screen_radio_button", "new_send_invites_screen_radio_button_spacer", "new_death_screen_radio_label", "new_death_screen_radio_label_spacer", "new_death_screen_radio_button", "new_death_screen_radio_button_spacer", "new_bed_screen_radio_label", "new_bed_screen_radio_label_spacer", "new_bed_screen_radio_button", "new_bed_screen_radio_button_spacer", "ore_ui_gameplay_ui_radio_label", "ore_ui_gameplay_ui_radio_label_spacer", "ore_ui_gameplay_ui_radio_button", "ore_ui_gameplay_ui_radio_button_spacer", "end_of_ui_screen_override_divider", "end_of_ui_sceen_override_divider_spacer", "new_settings_screen_radio_label", "new_settings_screen_radio_label_spacer", "new_settings_screen_radio_button", "new_settings_screen_radio_button_spacer", "screen_opt_in_options_label", "screen_opt_in_info_label", "screen_opt_in_options_label_spacer", "end_of_ui_screen_opt_in_divider", "end_of_ui_sceen_opt_in_divider_spacer", "other_ui_options_label", "other_ui_options_label_spacer", "option_toggle_default_font_override", "option_toggle_dev_show_tcui_replacement", "option_toggle_use_mobile_data_blocked_modal", "ui_feature_toggles_spacer", "option_show_touch_control_selection_screen", "option_reset_on_start", "end_of_other_options_divider", "end_of_other_options_spacer", "debug_data_label", "debug_data_label_spacer", "option_continuous_repaint", "option_show_paint_rects", "option_show_element_aabb", "option_emulate_touch_events", "end_of_debug_data_divider", "end_of_debug_data_spacer", "option_slider_drag_dwell", "option_slider_stack_splitting", "reset_render_distance_warning_modal_label", "reset_render_distance_warning_modal_label_spacer", "reset_render_distance_warning_modal", "reset_render_distance_warning_modal_spacer", "ore_ui_developer_pages_divider", "ore_ui_developer_pages_spacer", "open_ore_ui_label", "open_ore_ui_info_label", "open_ore_ui_label_spacer", "open_ore_ui_docs", "open_ore_ui_tests", "open_ore_ui_perf", "open_ore_ui_test_modal", "open_ore_ui_tests_spacer" ] }, "ui_debug_section/ui_feature_toggles_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "ui_debug_section/ui_feature_toggles_info_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "ui_debug_section/ui_feature_toggles_label_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "ui_debug_section/ui_feature_toggles": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel" }, "ui_debug_section/end_of_ui_feature_toggles_label_divider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "section_divider" ] }, "ui_debug_section/end_of_ui_feature_toggles_label_divider/section_divider": { "file": "ui/settings_sections/general_section.json", "type": "image" }, "ui_debug_section/end_of_ui_feature_toggles_label_divider_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "ui_debug_section/end_of_ui_feature_toggles_label_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "ui_debug_section/screen_override_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "ui_debug_section/screen_override_info_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "ui_debug_section/screen_override_label_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "ui_debug_section/new_edu_create_world_screen_radio_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "ui_debug_section/new_edu_create_world_screen_radio_label_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "ui_debug_section/new_edu_create_world_screen_radio_button": { "file": "ui/settings_sections/general_section.json", "type": "grid" }, "ui_debug_section/new_edu_create_world_screen_radio_button_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "ui_debug_section/new_play_screen_radio_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "ui_debug_section/new_play_screen_radio_label_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "ui_debug_section/new_play_screen_radio_button": { "file": "ui/settings_sections/general_section.json", "type": "grid" }, "ui_debug_section/new_play_screen_radio_button_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "ui_debug_section/new_edit_world_screen_radio_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "ui_debug_section/new_edit_world_screen_radio_label_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "ui_debug_section/new_edit_world_screen_radio_button": { "file": "ui/settings_sections/general_section.json", "type": "grid" }, "ui_debug_section/new_edit_world_screen_radio_button_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "ui_debug_section/new_send_invites_radio_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "ui_debug_section/new_send_invites_screen_radio_label_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "ui_debug_section/new_send_invites_screen_radio_button": { "file": "ui/settings_sections/general_section.json", "type": "grid" }, "ui_debug_section/new_send_invites_screen_radio_button_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "ui_debug_section/new_death_screen_radio_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "ui_debug_section/new_death_screen_radio_label_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "ui_debug_section/new_death_screen_radio_button": { "file": "ui/settings_sections/general_section.json", "type": "grid" }, "ui_debug_section/new_death_screen_radio_button_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "ui_debug_section/new_bed_screen_radio_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "ui_debug_section/new_bed_screen_radio_label_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "ui_debug_section/new_bed_screen_radio_button": { "file": "ui/settings_sections/general_section.json", "type": "grid" }, "ui_debug_section/new_bed_screen_radio_button_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "ui_debug_section/ore_ui_gameplay_ui_radio_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "ui_debug_section/ore_ui_gameplay_ui_radio_label_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "ui_debug_section/ore_ui_gameplay_ui_radio_button": { "file": "ui/settings_sections/general_section.json", "type": "grid" }, "ui_debug_section/ore_ui_gameplay_ui_radio_button_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "ui_debug_section/end_of_ui_screen_override_divider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "section_divider" ] }, "ui_debug_section/end_of_ui_screen_override_divider/section_divider": { "file": "ui/settings_sections/general_section.json", "type": "image" }, "ui_debug_section/end_of_ui_sceen_override_divider_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "ui_debug_section/new_settings_screen_radio_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "ui_debug_section/new_settings_screen_radio_label_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "ui_debug_section/new_settings_screen_radio_button": { "file": "ui/settings_sections/general_section.json", "type": "grid" }, "ui_debug_section/new_settings_screen_radio_button_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "ui_debug_section/screen_opt_in_options_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "ui_debug_section/screen_opt_in_info_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "ui_debug_section/screen_opt_in_options_label_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "ui_debug_section/end_of_ui_screen_opt_in_divider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "section_divider" ] }, "ui_debug_section/end_of_ui_screen_opt_in_divider/section_divider": { "file": "ui/settings_sections/general_section.json", "type": "image" }, "ui_debug_section/end_of_ui_sceen_opt_in_divider_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "ui_debug_section/other_ui_options_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "ui_debug_section/other_ui_options_label_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "ui_debug_section/option_toggle_default_font_override": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "ui_debug_section/option_toggle_dev_show_tcui_replacement": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "ui_debug_section/option_toggle_use_mobile_data_blocked_modal": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "ui_debug_section/ui_feature_toggles_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "ui_debug_section/option_show_touch_control_selection_screen": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "ui_debug_section/option_reset_on_start": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "ui_debug_section/end_of_other_options_divider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "section_divider" ] }, "ui_debug_section/end_of_other_options_divider/section_divider": { "file": "ui/settings_sections/general_section.json", "type": "image" }, "ui_debug_section/end_of_other_options_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "ui_debug_section/debug_data_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "ui_debug_section/debug_data_label_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "ui_debug_section/option_continuous_repaint": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "ui_debug_section/option_show_paint_rects": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "ui_debug_section/option_show_element_aabb": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "ui_debug_section/option_emulate_touch_events": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "ui_debug_section/end_of_debug_data_divider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "section_divider" ] }, "ui_debug_section/end_of_debug_data_divider/section_divider": { "file": "ui/settings_sections/general_section.json", "type": "image" }, "ui_debug_section/end_of_debug_data_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "ui_debug_section/option_slider_drag_dwell": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "ui_debug_section/option_slider_stack_splitting": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "ui_debug_section/reset_render_distance_warning_modal_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "ui_debug_section/reset_render_distance_warning_modal_label_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "ui_debug_section/reset_render_distance_warning_modal": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "ui_debug_section/reset_render_distance_warning_modal_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "ui_debug_section/ore_ui_developer_pages_divider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "section_divider" ] }, "ui_debug_section/ore_ui_developer_pages_divider/section_divider": { "file": "ui/settings_sections/general_section.json", "type": "image" }, "ui_debug_section/ore_ui_developer_pages_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "ui_debug_section/open_ore_ui_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "ui_debug_section/open_ore_ui_info_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "ui_debug_section/open_ore_ui_label_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "ui_debug_section/open_ore_ui_docs": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "ui_debug_section/open_ore_ui_tests": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "ui_debug_section/open_ore_ui_perf": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "ui_debug_section/open_ore_ui_test_modal": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "ui_debug_section/open_ore_ui_tests_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "edu_debug_section": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "edu_feature_toggles_label", "edu_feature_toggles_label_spacer", "edu_demo", "edu_ad_debug_panel", "edu_ad_token_refresh_threshold", "edu_ad_max_signin_token_refresh", "edu_ad_max_graph_token_refresh", "edu_environment_divider", "edu_environment_spacer", "edu_env_dropdown" ] }, "edu_debug_section/edu_feature_toggles_label": { "file": "ui/settings_sections/general_section.json", "type": "label" }, "edu_debug_section/edu_feature_toggles_label_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "edu_debug_section/edu_demo": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "edu_debug_section/edu_ad_debug_panel": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "edu_debug_section/edu_ad_token_refresh_threshold": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "edu_debug_section/edu_ad_max_signin_token_refresh": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "edu_debug_section/edu_ad_max_graph_token_refresh": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "edu_debug_section/edu_environment_divider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "section_divider" ] }, "edu_debug_section/edu_environment_divider/section_divider": { "file": "ui/settings_sections/general_section.json", "type": "image" }, "edu_debug_section/edu_environment_spacer": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "edu_debug_section/edu_env_dropdown": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "flighting_debug_button": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "settings_common" } }, "flighting_debug_section": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "treatment_override_panel", "configuration_override_panel" ] }, "flighting_debug_section/treatment_override_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "option_toggle_treatment_override", "override_treatments_panel" ] }, "flighting_debug_section/treatment_override_panel/option_toggle_treatment_override": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "flighting_debug_section/treatment_override_panel/override_treatments_panel": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "debug_override_treatments_panel", "namespace": "general_section" } }, "flighting_debug_section/configuration_override_panel": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "option_toggle_configuration_override", "override_configurations_panel" ] }, "flighting_debug_section/configuration_override_panel/option_toggle_configuration_override": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "flighting_debug_section/configuration_override_panel/override_configurations_panel": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "debug_override_configurations_panel", "namespace": "general_section" } }, "how_to_play_button": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "settings_common" } }, "how_to_play_section": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "spacer_0", "generic_label", "spacer_1", "gamepad_helper_label" ] }, "how_to_play_section/spacer_0": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "how_to_play_section/generic_label": { "file": "ui/settings_sections/general_section.json", "type": "label", "extend": { "name": "white_label", "namespace": "settings_common" } }, "how_to_play_section/spacer_1": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "how_to_play_section/gamepad_helper_label": { "file": "ui/settings_sections/general_section.json", "type": "label", "extend": { "name": "white_label", "namespace": "settings_common" } }, "dev_xbox_environment_dropdown_content": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "dev_discovery_environment_dropdown_content": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "dev_service_override_type_dropdown_content": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "dev_realms_environment_dropdown_content": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "dev_realms_sku_dropdown_content": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "default_profiling_group_dropdown_content": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "dev_nethernet_logging_verbosity_dropdown_content": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "dev_http_logging_verbosity_dropdown_content": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "dev_xsapi_logging_verbosity_dropdown_content": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "dev_debug_speed_multiplier_options": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "dev_debug_hud_dropdown_content": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "dev_chunkMapMode_content": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "dev_quality_dropdown_content": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "vysnc_dropdown_content": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "deferred_platform_override_dropdown_content": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "dev_education_environment_dropdown_content": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "dev_sunsetting_tier_dropdown_content": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "graphics_api_dropdown_content": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "graphics_mode_dropdown_content": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "upscaling_mode_dropdown_content": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "advanced_graphics_options_button_content": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "advanced_graphics_options_label", "fill_pad", "plus_panel", "minus_panel" ] }, "advanced_graphics_options_button_content/advanced_graphics_options_label": { "file": "ui/settings_sections/general_section.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "advanced_graphics_options_button_content/fill_pad": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "advanced_graphics_options_button_content/plus_panel": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "plus" ] }, "advanced_graphics_options_button_content/plus_panel/plus": { "file": "ui/settings_sections/general_section.json", "type": "image", "extend": { "name": "plus_image", "namespace": "resource_packs" } }, "advanced_graphics_options_button_content/minus_panel": { "file": "ui/settings_sections/general_section.json", "type": "panel", "children": [ "minus" ] }, "advanced_graphics_options_button_content/minus_panel/minus": { "file": "ui/settings_sections/general_section.json", "type": "image", "extend": { "name": "minus_image", "namespace": "resource_packs" } }, "advanced_graphics_options_section": { "file": "ui/settings_sections/general_section.json", "type": "stack_panel", "children": [ "spacer_0", "gamma_calibration", "spacer_1", "max_framerate_slider", "spacer_2", "msaa_slider", "spacer_3", "shadow_quality_slider", "spacer_4", "point_light_shadow_quality_slider", "spacer_5", "point_light_loding_quality_slider", "spacer_6", "cloud_quality_slider", "spacer_7", "volumetric_fog_quality_slider", "spacer_8", "reflections_quality_slider", "spacer_9", "bloom_strength", "spacer_10", "upscaling_toggle", "spacer_11", "upscaling_mode", "spacer_12", "upscaling_percentage", "fancy_clouds_toggle", "spacer_13", "smooth_lighting_toggle" ] }, "advanced_graphics_options_section/spacer_0": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "advanced_graphics_options_section/gamma_calibration": { "file": "ui/settings_sections/general_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "advanced_graphics_options_section/spacer_1": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "advanced_graphics_options_section/max_framerate_slider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "max_framerate_slider", "namespace": "general_section" } }, "advanced_graphics_options_section/spacer_2": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "advanced_graphics_options_section/msaa_slider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "msaa_slider", "namespace": "general_section" } }, "advanced_graphics_options_section/spacer_3": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "advanced_graphics_options_section/shadow_quality_slider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "advanced_graphics_options_section/spacer_4": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "advanced_graphics_options_section/point_light_shadow_quality_slider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "advanced_graphics_options_section/spacer_5": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "advanced_graphics_options_section/point_light_loding_quality_slider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "advanced_graphics_options_section/spacer_6": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "advanced_graphics_options_section/cloud_quality_slider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "advanced_graphics_options_section/spacer_7": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "advanced_graphics_options_section/volumetric_fog_quality_slider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "advanced_graphics_options_section/spacer_8": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "advanced_graphics_options_section/reflections_quality_slider": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "advanced_graphics_options_section/spacer_9": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "advanced_graphics_options_section/bloom_strength": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "advanced_graphics_options_section/spacer_10": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "advanced_graphics_options_section/upscaling_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "upscaling_toggle", "namespace": "general_section" } }, "advanced_graphics_options_section/spacer_11": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "advanced_graphics_options_section/upscaling_mode": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "advanced_graphics_options_section/spacer_12": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "advanced_graphics_options_section/upscaling_percentage": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "advanced_graphics_options_section/fancy_clouds_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "advanced_graphics_options_section/spacer_13": { "file": "ui/settings_sections/general_section.json", "type": "panel" }, "advanced_graphics_options_section/smooth_lighting_toggle": { "file": "ui/settings_sections/general_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } } }, "realms_world_section": { "realm_name_edit": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "world_name_edit": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "realm_description_edit": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "download_world_button": { "file": "ui/settings_sections/realms_world_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "upload_world_button": { "file": "ui/settings_sections/realms_world_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "reset_world_button": { "file": "ui/settings_sections/realms_world_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "manage_feed_button": { "file": "ui/settings_sections/realms_world_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "club_info_label": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "option_info_label", "namespace": "settings_common" } }, "difficulty_dropdown": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "game_mode_dropdown": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "panel_content": { "file": "ui/settings_sections/realms_world_section.json", "type": "stack_panel", "children": [ "new_edit_world_opt_in_panel", "new_edit_world_opt_in_divider", "option_info_label", "hardcore_info_label", "realm_name_edit", "world_name_edit", "realm_description_edit", "difficulty_dropdown", "game_mode_dropdown", "is_hardcore_toggle", "world_options_label", "pvp_toggle", "show_coordinates_toggle", "locator_bar_toggle", "show_days_played_toggle", "fire_spreads_toggle", "recipes_unlock_toggle", "tnt_explodes_toggle", "respawn_blocks_explode_toggle", "mob_loot_toggle", "natural_regeneration_toggle", "tile_drops_toggle", "player_sleep_toggle", "player_sleep_percentage_slider", "immediate_respawn_toggle", "respawn_radius", "world_cheats_label", "allow_cheats_toggle", "daylight_cycle_toggle", "keep_inventory_toggle", "mob_spawn_toggle", "mob_griefing_toggle", "entities_drop_loot_toggle", "weather_cycle_toggle", "command_blocks_enabled_toggle", "random_tick_speed", "download_world_button", "padding_0", "upload_world_button", "padding_1", "reset_world_button", "padding_2", "club_info_label", "manage_feed_button" ] }, "panel_content/new_edit_world_opt_in_panel": { "file": "ui/settings_sections/realms_world_section.json", "type": "stack_panel", "children": [ "panel_title", "panel_text", "opt_in_button" ] }, "panel_content/new_edit_world_opt_in_panel/panel_title": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "option_group_label", "namespace": "settings_common" } }, "panel_content/new_edit_world_opt_in_panel/panel_text": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "option_group_label", "namespace": "settings_common" } }, "panel_content/new_edit_world_opt_in_panel/opt_in_button": { "file": "ui/settings_sections/realms_world_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "panel_content/new_edit_world_opt_in_divider": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "children": [ "section_divider" ] }, "panel_content/new_edit_world_opt_in_divider/section_divider": { "file": "ui/settings_sections/realms_world_section.json", "type": "image" }, "panel_content/option_info_label": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "option_info_label", "namespace": "settings_common" } }, "panel_content/hardcore_info_label": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "option_info_label", "namespace": "settings_common" } }, "panel_content/realm_name_edit": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "realm_name_edit", "namespace": "realms_world_section" } }, "panel_content/world_name_edit": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "world_name_edit", "namespace": "realms_world_section" } }, "panel_content/realm_description_edit": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "realm_description_edit", "namespace": "realms_world_section" } }, "panel_content/difficulty_dropdown": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "difficulty_dropdown", "namespace": "realms_world_section" } }, "panel_content/game_mode_dropdown": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "game_mode_dropdown", "namespace": "realms_world_section" } }, "panel_content/is_hardcore_toggle": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "panel_content/world_options_label": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "option_group_label", "namespace": "settings_common" } }, "panel_content/pvp_toggle": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "panel_content/show_coordinates_toggle": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "panel_content/locator_bar_toggle": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "panel_content/show_days_played_toggle": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "panel_content/fire_spreads_toggle": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "panel_content/recipes_unlock_toggle": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "panel_content/tnt_explodes_toggle": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "panel_content/respawn_blocks_explode_toggle": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "panel_content/mob_loot_toggle": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "panel_content/natural_regeneration_toggle": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "panel_content/tile_drops_toggle": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "panel_content/player_sleep_toggle": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "panel_content/player_sleep_percentage_slider": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "panel_content/immediate_respawn_toggle": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "panel_content/respawn_radius": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "panel_content/world_cheats_label": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "option_group_label", "namespace": "settings_common" } }, "panel_content/allow_cheats_toggle": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "panel_content/daylight_cycle_toggle": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "panel_content/keep_inventory_toggle": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "panel_content/mob_spawn_toggle": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "panel_content/mob_griefing_toggle": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "panel_content/entities_drop_loot_toggle": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "panel_content/weather_cycle_toggle": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "panel_content/command_blocks_enabled_toggle": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "panel_content/random_tick_speed": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "option_text_edit_with_text_button", "namespace": "settings_common" } }, "panel_content/download_world_button": { "file": "ui/settings_sections/realms_world_section.json", "type": "button", "extend": { "name": "download_world_button", "namespace": "realms_world_section" } }, "panel_content/padding_0": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel" }, "panel_content/upload_world_button": { "file": "ui/settings_sections/realms_world_section.json", "type": "button", "extend": { "name": "upload_world_button", "namespace": "realms_world_section" } }, "panel_content/padding_1": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel" }, "panel_content/reset_world_button": { "file": "ui/settings_sections/realms_world_section.json", "type": "button", "extend": { "name": "reset_world_button", "namespace": "realms_world_section" } }, "panel_content/padding_2": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel" }, "panel_content/club_info_label": { "file": "ui/settings_sections/realms_world_section.json", "type": "panel", "extend": { "name": "club_info_label", "namespace": "realms_world_section" } }, "panel_content/manage_feed_button": { "file": "ui/settings_sections/realms_world_section.json", "type": "button", "extend": { "name": "manage_feed_button", "namespace": "realms_world_section" } } }, "settings_common": { "arrow_image": { "file": "ui/settings_sections/settings_common.json", "type": "image" }, "subsection_title": { "file": "ui/settings_sections/settings_common.json", "type": "stack_panel", "children": [ "spacer_0", "sizer_0", "spacer_1", "sizer_1" ] }, "subsection_title/spacer_0": { "file": "ui/settings_sections/settings_common.json", "type": "panel" }, "subsection_title/sizer_0": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "children": [ "title" ] }, "subsection_title/sizer_0/title": { "file": "ui/settings_sections/settings_common.json", "type": "label" }, "subsection_title/spacer_1": { "file": "ui/settings_sections/settings_common.json", "type": "panel" }, "subsection_title/sizer_1": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "children": [ "section_divider" ] }, "subsection_title/sizer_1/section_divider": { "file": "ui/settings_sections/settings_common.json", "type": "image" }, "action_button": { "file": "ui/settings_sections/settings_common.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "action_button_dark_text": { "file": "ui/settings_sections/settings_common.json", "type": "button", "extend": { "name": "dark_text_button", "namespace": "common_buttons" } }, "link_button": { "file": "ui/settings_sections/settings_common.json", "type": "button", "extend": { "name": "hyperlink_button", "namespace": "common_buttons" } }, "option_group_label": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "children": [ "text" ] }, "option_group_label/text": { "file": "ui/settings_sections/settings_common.json", "type": "label" }, "option_group_header": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "children": [ "text" ] }, "option_group_header/text": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "option_group_label", "namespace": "settings_common" } }, "option_group_spaced_label": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "children": [ "text" ] }, "option_group_spaced_label/text": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "option_group_label", "namespace": "settings_common" } }, "option_group_spaced_header": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "children": [ "text" ] }, "option_group_spaced_header/text": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "option_group_label", "namespace": "settings_common" } }, "option_group_section_divider": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "children": [ "background" ] }, "option_group_section_divider/background": { "file": "ui/settings_sections/settings_common.json", "type": "image" }, "option_generic": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "children": [ "option_generic_core" ] }, "option_generic/option_generic_core": { "file": "ui/settings_sections/settings_common.json", "type": "stack_panel", "extend": { "name": "option_generic_core", "namespace": "settings_common" } }, "white_label": { "file": "ui/settings_sections/settings_common.json", "type": "label" }, "option_generic_core": { "file": "ui/settings_sections/settings_common.json", "type": "stack_panel", "children": [ "two_line_layout", "one_line_layout", "spacer" ] }, "option_generic_core/two_line_layout": { "file": "ui/settings_sections/settings_common.json", "type": "stack_panel", "children": [ "option_label_panel", "spacer", "option_descriptive_text_0", "spacer2" ] }, "option_generic_core/two_line_layout/option_label_panel": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "children": [ "option_label_subpanel_01", "option_label_subpanel_02", "option_tooltip" ] }, "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_01": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "children": [ "option_label" ] }, "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_01/option_label": { "file": "ui/settings_sections/settings_common.json", "type": "label", "extend": { "name": "option_generic_core_label", "namespace": "settings_common" } }, "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_02": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "children": [ "option_label" ] }, "option_generic_core/two_line_layout/option_label_panel/option_label_subpanel_02/option_label": { "file": "ui/settings_sections/settings_common.json", "type": "label", "extend": { "name": "option_generic_core_label", "namespace": "settings_common" } }, "option_generic_core/two_line_layout/option_label_panel/option_tooltip": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "option_generic_tooltip", "namespace": "settings_common" } }, "option_generic_core/two_line_layout/spacer": { "file": "ui/settings_sections/settings_common.json", "type": "panel" }, "option_generic_core/two_line_layout/option_descriptive_text_0": { "file": "ui/settings_sections/settings_common.json", "type": "label" }, "option_generic_core/two_line_layout/spacer2": { "file": "ui/settings_sections/settings_common.json", "type": "panel" }, "option_generic_core/one_line_layout": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "children": [ "option_label_subpanel_01", "option_label_subpanel_02", "option_descriptive_text", "option_tooltip" ] }, "option_generic_core/one_line_layout/option_label_subpanel_01": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "children": [ "option_label" ] }, "option_generic_core/one_line_layout/option_label_subpanel_01/option_label": { "file": "ui/settings_sections/settings_common.json", "type": "label", "extend": { "name": "option_generic_core_label", "namespace": "settings_common" } }, "option_generic_core/one_line_layout/option_label_subpanel_02": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "children": [ "option_label" ] }, "option_generic_core/one_line_layout/option_label_subpanel_02/option_label": { "file": "ui/settings_sections/settings_common.json", "type": "label", "extend": { "name": "option_generic_core_label", "namespace": "settings_common" } }, "option_generic_core/one_line_layout/option_descriptive_text": { "file": "ui/settings_sections/settings_common.json", "type": "label" }, "option_generic_core/one_line_layout/option_tooltip": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "option_generic_tooltip", "namespace": "settings_common" } }, "option_generic_core/spacer": { "file": "ui/settings_sections/settings_common.json", "type": "panel" }, "option_generic_core_label": { "file": "ui/settings_sections/settings_common.json", "type": "label" }, "option_generic_tooltip_image": { "file": "ui/settings_sections/settings_common.json", "type": "image" }, "option_generic_tooltip_top_popup": { "file": "ui/settings_sections/settings_common.json", "type": "image", "extend": { "name": "static_tooltip_popup_with_image_and_text", "namespace": "common" } }, "option_generic_tooltip_bottom_popup": { "file": "ui/settings_sections/settings_common.json", "type": "image", "extend": { "name": "static_tooltip_popup_with_image_and_text", "namespace": "common" } }, "option_generic_tooltip": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "children": [ "focus_detection_input_panel_two_line_layout", "hover_detection_input_panel", "option_generic_tooltip_top_popup", "option_generic_tooltip_bottom_popup" ] }, "option_generic_tooltip/focus_detection_input_panel_two_line_layout": { "file": "ui/settings_sections/settings_common.json", "type": "tooltip_trigger" }, "option_generic_tooltip/hover_detection_input_panel": { "file": "ui/settings_sections/settings_common.json", "type": "tooltip_trigger", "children": [ "option_generic_tooltip_image" ] }, "option_generic_tooltip/hover_detection_input_panel/option_generic_tooltip_image": { "file": "ui/settings_sections/settings_common.json", "type": "image", "extend": { "name": "option_generic_tooltip_image", "namespace": "settings_common" } }, "option_generic_tooltip/option_generic_tooltip_top_popup": { "file": "ui/settings_sections/settings_common.json", "type": "image", "extend": { "name": "option_generic_tooltip_top_popup", "namespace": "settings_common" } }, "option_generic_tooltip/option_generic_tooltip_bottom_popup": { "file": "ui/settings_sections/settings_common.json", "type": "image", "extend": { "name": "option_generic_tooltip_bottom_popup", "namespace": "settings_common" } }, "option_text_edit_control": { "file": "ui/settings_sections/settings_common.json", "type": "edit_box", "extend": { "name": "text_edit_box", "namespace": "common" } }, "option_text_edit_control_with_button": { "file": "ui/settings_sections/settings_common.json", "type": "stack_panel", "children": [ "text_box", "button" ] }, "option_text_edit_control_with_button/text_box": { "file": "ui/settings_sections/settings_common.json", "type": "edit_box", "extend": { "name": "text_edit_box", "namespace": "common" } }, "option_text_edit_control_with_button/button": { "file": "ui/settings_sections/settings_common.json", "type": "button", "extend": { "name": "light_glyph_button", "namespace": "common_buttons" } }, "option_text_edit_control_with_text_button": { "file": "ui/settings_sections/settings_common.json", "type": "stack_panel", "children": [ "text_box", "button" ] }, "option_text_edit_control_with_text_button/text_box": { "file": "ui/settings_sections/settings_common.json", "type": "edit_box", "extend": { "name": "text_edit_box", "namespace": "common" } }, "option_text_edit_control_with_text_button/button": { "file": "ui/settings_sections/settings_common.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "option_toggle_state_template": { "file": "ui/settings_sections/settings_common.json", "type": "image" }, "option_toggle_on": { "file": "ui/settings_sections/settings_common.json", "type": "image", "extend": { "name": "option_toggle_state_template", "namespace": "settings_common" } }, "option_toggle_off": { "file": "ui/settings_sections/settings_common.json", "type": "image", "extend": { "name": "option_toggle_state_template", "namespace": "settings_common" } }, "option_toggle_on_hover": { "file": "ui/settings_sections/settings_common.json", "type": "image", "extend": { "name": "option_toggle_state_template", "namespace": "settings_common" } }, "option_toggle_off_hover": { "file": "ui/settings_sections/settings_common.json", "type": "image", "extend": { "name": "option_toggle_state_template", "namespace": "settings_common" } }, "option_toggle_on_locked": { "file": "ui/settings_sections/settings_common.json", "type": "image", "extend": { "name": "option_toggle_on", "namespace": "settings_common" } }, "option_toggle_off_locked": { "file": "ui/settings_sections/settings_common.json", "type": "image", "extend": { "name": "option_toggle_off", "namespace": "settings_common" } }, "option_toggle_control": { "file": "ui/settings_sections/settings_common.json", "type": "toggle", "extend": { "name": "toggle", "namespace": "common" } }, "checkbox_visuals_unchecked": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "checkbox_visuals", "namespace": "settings_common" } }, "checkbox_visuals_checked": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "checkbox_visuals", "namespace": "settings_common" } }, "checkbox_visuals_unchecked_locked": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "checkbox_visuals", "namespace": "settings_common" } }, "checkbox_visuals_checked_locked": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "checkbox_visuals", "namespace": "settings_common" } }, "checkbox_visuals_unchecked_hover": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "checkbox_visuals", "namespace": "settings_common" } }, "checkbox_visuals_checked_hover": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "checkbox_visuals", "namespace": "settings_common" } }, "checkbox_visuals": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "children": [ "checkbox_image", "checkbox_label", "accessibility_selection_highlight" ] }, "checkbox_visuals/checkbox_image": { "file": "ui/settings_sections/settings_common.json", "type": "image" }, "checkbox_visuals/checkbox_label": { "file": "ui/settings_sections/settings_common.json", "type": "label" }, "checkbox_visuals/accessibility_selection_highlight": { "file": "ui/settings_sections/settings_common.json", "type": "image" }, "checkbox_with_highlight_and_label": { "file": "ui/settings_sections/settings_common.json", "type": "toggle", "extend": { "name": "toggle", "namespace": "common" } }, "radio_visuals_unchecked": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "radio_visuals", "namespace": "settings_common" } }, "radio_visuals_checked": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "radio_visuals", "namespace": "settings_common" } }, "radio_visuals_unchecked_locked": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "radio_visuals", "namespace": "settings_common" } }, "radio_visuals_checked_locked": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "radio_visuals", "namespace": "settings_common" } }, "radio_visuals_unchecked_hover": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "radio_visuals", "namespace": "settings_common" } }, "radio_visuals_checked_hover": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "radio_visuals", "namespace": "settings_common" } }, "radio_visuals": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "children": [ "radio_image", "radio_label", "accessibility_selection_highlight" ] }, "radio_visuals/radio_image": { "file": "ui/settings_sections/settings_common.json", "type": "image" }, "radio_visuals/radio_label": { "file": "ui/settings_sections/settings_common.json", "type": "label" }, "radio_visuals/accessibility_selection_highlight": { "file": "ui/settings_sections/settings_common.json", "type": "image" }, "radio_with_label_core": { "file": "ui/settings_sections/settings_common.json", "type": "toggle", "extend": { "name": "radio_toggle", "namespace": "common" } }, "option_radio_group_control": { "file": "ui/settings_sections/settings_common.json", "type": "stack_panel", "children": [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ] }, "option_radio_group_control/0": { "file": "ui/settings_sections/settings_common.json", "type": "unknown" }, "radio_with_label": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "children": [ "radio_with_label_core" ] }, "radio_with_label/radio_with_label_core": { "file": "ui/settings_sections/settings_common.json", "type": "toggle", "extend": { "name": "radio_with_label_core", "namespace": "settings_common" } }, "radio_with_label_and_icon": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "children": [ "radio_with_label_core", "radio_with_label_icon" ] }, "radio_with_label_and_icon/radio_with_label_core": { "file": "ui/settings_sections/settings_common.json", "type": "toggle", "extend": { "name": "radio_with_label_core", "namespace": "settings_common" } }, "radio_with_label_and_icon/radio_with_label_icon": { "file": "ui/settings_sections/settings_common.json", "type": "image" }, "radio_with_label_and_content_unchecked": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "radio_with_label_and_content", "namespace": "settings_common" } }, "radio_with_label_and_content_checked": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "radio_with_label_and_content", "namespace": "settings_common" } }, "radio_with_label_and_content_unchecked_locked": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "radio_with_label_and_content", "namespace": "settings_common" } }, "radio_with_label_and_content_checked_locked": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "radio_with_label_and_content", "namespace": "settings_common" } }, "radio_with_label_and_content_unchecked_hover": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "radio_with_label_and_content", "namespace": "settings_common" } }, "radio_with_label_and_content_checked_hover": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "radio_with_label_and_content", "namespace": "settings_common" } }, "radio_with_label_and_content_stack_item": { "file": "ui/settings_sections/settings_common.json", "type": "panel" }, "radio_with_label_and_content": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "children": [ "radio_background", "radio_item_with_description_stack" ] }, "radio_with_label_and_content/radio_background": { "file": "ui/settings_sections/settings_common.json", "type": "image" }, "radio_with_label_and_content/radio_item_with_description_stack": { "file": "ui/settings_sections/settings_common.json", "type": "stack_panel", "children": [ "radio_icon_and_label", "radio_description" ] }, "radio_with_label_and_content/radio_item_with_description_stack/radio_icon_and_label": { "file": "ui/settings_sections/settings_common.json", "type": "stack_panel", "extend": { "name": "radio_item_with_label_and_content_stack", "namespace": "settings_common" } }, "radio_with_label_and_content/radio_item_with_description_stack/radio_description": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "radio_description_panel", "namespace": "settings_common" } }, "radio_item_with_label_and_content_stack": { "file": "ui/settings_sections/settings_common.json", "type": "stack_panel", "children": [ "initial_padding", "radio_image_panel", "radio_to_content_padding", "radio_content_panel", "content_to_label_padding", "radio_label_panel" ] }, "radio_item_with_label_and_content_stack/initial_padding": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "radio_item_with_label_and_content_stack/radio_image_panel": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "radio_with_label_and_content_stack_item", "namespace": "settings_common" }, "children": [ "image" ] }, "radio_item_with_label_and_content_stack/radio_image_panel/image": { "file": "ui/settings_sections/settings_common.json", "type": "image" }, "radio_item_with_label_and_content_stack/radio_to_content_padding": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "radio_item_with_label_and_content_stack/radio_content_panel": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "radio_with_label_and_content_stack_item", "namespace": "settings_common" }, "children": [ "radio_image" ] }, "radio_item_with_label_and_content_stack/radio_content_panel/radio_image": { "file": "ui/settings_sections/settings_common.json", "type": "unknown" }, "radio_item_with_label_and_content_stack/content_to_label_padding": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "radio_item_with_label_and_content_stack/radio_label_panel": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "radio_with_label_and_content_stack_item", "namespace": "settings_common" }, "children": [ "radio_label" ] }, "radio_item_with_label_and_content_stack/radio_label_panel/radio_label": { "file": "ui/settings_sections/settings_common.json", "type": "label" }, "radio_description_panel": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "children": [ "description" ] }, "radio_description_panel/description": { "file": "ui/settings_sections/settings_common.json", "type": "label", "extend": { "name": "radio_description", "namespace": "settings_common" } }, "radio_description": { "file": "ui/settings_sections/settings_common.json", "type": "label" }, "radio_item_with_label_and_content": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "children": [ "radio_with_label_core" ] }, "radio_item_with_label_and_content/radio_with_label_core": { "file": "ui/settings_sections/settings_common.json", "type": "toggle", "extend": { "name": "radio_with_label_core", "namespace": "settings_common" } }, "option_slider_control": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "children": [ "slider" ] }, "option_slider_control/slider": { "file": "ui/settings_sections/settings_common.json", "type": "slider", "extend": { "name": "slider", "namespace": "common" } }, "default_options_dropdown_toggle_button_state_content": { "file": "ui/settings_sections/settings_common.json", "type": "stack_panel", "children": [ "left_padding", "option_content", "option_content_padding", "label_panel", "arrow_panel", "right_padding" ] }, "default_options_dropdown_toggle_button_state_content/left_padding": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "default_options_dropdown_toggle_button_state_content/option_content": { "file": "ui/settings_sections/settings_common.json", "type": "unknown" }, "default_options_dropdown_toggle_button_state_content/option_content_padding": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "default_options_dropdown_toggle_button_state_content/label_panel": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "children": [ "label" ] }, "default_options_dropdown_toggle_button_state_content/label_panel/label": { "file": "ui/settings_sections/settings_common.json", "type": "label", "extend": { "name": "new_button_label", "namespace": "common" } }, "default_options_dropdown_toggle_button_state_content/arrow_panel": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "children": [ "dropdown_chevron_image" ] }, "default_options_dropdown_toggle_button_state_content/arrow_panel/dropdown_chevron_image": { "file": "ui/settings_sections/settings_common.json", "type": "image" }, "default_options_dropdown_toggle_button_state_content/right_padding": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "options_dropdown_toggle_control": { "file": "ui/settings_sections/settings_common.json", "type": "toggle", "extend": { "name": "light_template_toggle", "namespace": "common_toggles" } }, "options_dropdown_dark_toggle_control": { "file": "ui/settings_sections/settings_common.json", "type": "toggle", "extend": { "name": "dark_template_toggle", "namespace": "common_toggles" } }, "option_dropdown_control": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "children": [ "dropdown" ] }, "option_dropdown_control/dropdown": { "file": "ui/settings_sections/settings_common.json", "type": "unknown" }, "option_dropdown_control_no_scroll": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "option_dropdown_control", "namespace": "settings_common" } }, "option_info_label_with_icon": { "file": "ui/settings_sections/settings_common.json", "type": "image", "children": [ "control", "icon_panel" ] }, "option_info_label_with_icon/control": { "file": "ui/settings_sections/settings_common.json", "type": "label" }, "option_info_label_with_icon/icon_panel": { "file": "ui/settings_sections/settings_common.json", "type": "stack_panel", "children": [ "icon_image", "padding2" ] }, "option_info_label_with_icon/icon_panel/icon_image": { "file": "ui/settings_sections/settings_common.json", "type": "image" }, "option_info_label_with_icon/icon_panel/padding2": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "option_info_label_icon": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "option_icon_label": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "option_generic", "namespace": "settings_common" } }, "option_info_label_with_bulb": { "file": "ui/settings_sections/settings_common.json", "type": "image", "children": [ "stack_panel" ] }, "option_info_label_with_bulb/stack_panel": { "file": "ui/settings_sections/settings_common.json", "type": "stack_panel", "children": [ "padding1", "bulb_panel", "padding2", "label_panel", "padding3" ] }, "option_info_label_with_bulb/stack_panel/padding1": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "option_info_label_with_bulb/stack_panel/bulb_panel": { "file": "ui/settings_sections/settings_common.json", "type": "stack_panel", "children": [ "padding1", "bulb_image", "padding2" ] }, "option_info_label_with_bulb/stack_panel/bulb_panel/padding1": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "option_info_label_with_bulb/stack_panel/bulb_panel/bulb_image": { "file": "ui/settings_sections/settings_common.json", "type": "image" }, "option_info_label_with_bulb/stack_panel/bulb_panel/padding2": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "option_info_label_with_bulb/stack_panel/padding2": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "option_info_label_with_bulb/stack_panel/label_panel": { "file": "ui/settings_sections/settings_common.json", "type": "stack_panel", "children": [ "info_label1", "padding2", "info_label2" ] }, "option_info_label_with_bulb/stack_panel/label_panel/info_label1": { "file": "ui/settings_sections/settings_common.json", "type": "label" }, "option_info_label_with_bulb/stack_panel/label_panel/padding2": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "option_info_label_with_bulb/stack_panel/label_panel/info_label2": { "file": "ui/settings_sections/settings_common.json", "type": "label" }, "option_info_label_with_bulb/stack_panel/padding3": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "option_info_label_with_image": { "file": "ui/settings_sections/settings_common.json", "type": "image", "children": [ "control" ] }, "option_info_label_with_image/control": { "file": "ui/settings_sections/settings_common.json", "type": "label" }, "option_info_label_image": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "option_toggle": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "option_generic", "namespace": "settings_common" } }, "option_radio_group": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "option_generic", "namespace": "settings_common" } }, "option_radio_dropdown_group": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "children": [ "radio_control_group" ] }, "option_radio_dropdown_group/radio_control_group": { "file": "ui/settings_sections/settings_common.json", "type": "stack_panel", "extend": { "name": "option_radio_group_control", "namespace": "settings_common" } }, "option_text_edit": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "option_generic", "namespace": "settings_common" } }, "option_text_edit_with_button": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "option_generic", "namespace": "settings_common" } }, "option_text_edit_with_text_button": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "option_generic", "namespace": "settings_common" } }, "option_slider": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "option_generic", "namespace": "settings_common" } }, "option_dropdown": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "option_generic", "namespace": "settings_common" } }, "option_dropdown_no_scroll": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "option_generic", "namespace": "settings_common" } }, "option_custom_control": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "option_generic", "namespace": "settings_common" } }, "option_info_label": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "option_generic", "namespace": "settings_common" } }, "dynamic_dialog_screen": { "file": "ui/settings_sections/settings_common.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "dynamic_dialog_fullscreen": { "file": "ui/settings_sections/settings_common.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "settings_content": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "children": [ "background", "stack_panel", "popup_dialog_factory" ] }, "settings_content/background": { "file": "ui/settings_sections/settings_common.json", "type": "image" }, "settings_content/stack_panel": { "file": "ui/settings_sections/settings_common.json", "type": "stack_panel", "children": [ "content_panel" ] }, "settings_content/stack_panel/content_panel": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "children": [ "common_panel", "container" ] }, "settings_content/stack_panel/content_panel/common_panel": { "file": "ui/settings_sections/settings_common.json", "type": "stack_panel", "extend": { "name": "fullscreen_header", "namespace": "common" } }, "settings_content/stack_panel/content_panel/container": { "file": "ui/settings_sections/settings_common.json", "type": "panel" }, "settings_content/popup_dialog_factory": { "file": "ui/settings_sections/settings_common.json", "type": "factory" }, "toggle_button_control": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "children": [ "glyph", "glyph_color", "progress_loading_bars", "tab_button_text" ] }, "toggle_button_control/glyph": { "file": "ui/settings_sections/settings_common.json", "type": "image" }, "toggle_button_control/glyph_color": { "file": "ui/settings_sections/settings_common.json", "type": "image" }, "toggle_button_control/progress_loading_bars": { "file": "ui/settings_sections/settings_common.json", "type": "image", "extend": { "name": "progress_loading_bars", "namespace": "progress" } }, "toggle_button_control/tab_button_text": { "file": "ui/settings_sections/settings_common.json", "type": "label" }, "section_toggle_base": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "light_ui_toggle", "namespace": "common_toggles" } }, "section_title_label": { "file": "ui/settings_sections/settings_common.json", "type": "label" }, "dialog_title_label": { "file": "ui/settings_sections/settings_common.json", "type": "label" }, "dialog_titles": { "file": "ui/settings_sections/settings_common.json", "type": "stack_panel", "children": [ "left_padding", "dialog_title_label", "center_padding", "section_title_label", "right_padding_is_always_right" ] }, "dialog_titles/left_padding": { "file": "ui/settings_sections/settings_common.json", "type": "panel" }, "dialog_titles/dialog_title_label": { "file": "ui/settings_sections/settings_common.json", "type": "label", "extend": { "name": "dialog_title_label", "namespace": "settings_common" } }, "dialog_titles/center_padding": { "file": "ui/settings_sections/settings_common.json", "type": "panel" }, "dialog_titles/section_title_label": { "file": "ui/settings_sections/settings_common.json", "type": "label", "extend": { "name": "section_title_label", "namespace": "settings_common" } }, "dialog_titles/right_padding_is_always_right": { "file": "ui/settings_sections/settings_common.json", "type": "panel" }, "dialog_content": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "children": [ "dialog_titles", "selector_area", "content_area", "section_divider" ] }, "dialog_content/dialog_titles": { "file": "ui/settings_sections/settings_common.json", "type": "stack_panel", "extend": { "name": "dialog_titles", "namespace": "settings_common" } }, "dialog_content/selector_area": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "selector_area", "namespace": "settings_common" } }, "dialog_content/content_area": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "content_area", "namespace": "settings_common" } }, "dialog_content/section_divider": { "file": "ui/settings_sections/settings_common.json", "type": "image", "extend": { "name": "section_divider", "namespace": "settings_common" } }, "dialog_content_fullscreen": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "children": [ "dialog_titles", "selector_area", "content_area", "section_divider" ] }, "dialog_content_fullscreen/dialog_titles": { "file": "ui/settings_sections/settings_common.json", "type": "stack_panel", "extend": { "name": "dialog_titles", "namespace": "settings_common" } }, "dialog_content_fullscreen/selector_area": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "selector_area_no_scroll", "namespace": "settings_common" } }, "dialog_content_fullscreen/content_area": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "content_area", "namespace": "settings_common" } }, "dialog_content_fullscreen/section_divider": { "file": "ui/settings_sections/settings_common.json", "type": "image", "extend": { "name": "section_divider", "namespace": "settings_common" } }, "selector_group_label": { "file": "ui/settings_sections/settings_common.json", "type": "label" }, "scrollable_selector_area_content": { "file": "ui/settings_sections/settings_common.json", "type": "panel" }, "selector_area": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "children": [ "scrolling_panel" ] }, "selector_area/scrolling_panel": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "selector_area_no_scroll": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "children": [ "scrolling_panel" ] }, "selector_area_no_scroll/scrolling_panel": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "content_area": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "children": [ "control" ] }, "content_area/control": { "file": "ui/settings_sections/settings_common.json", "type": "stack_panel", "children": [ "header_panel", "scrolling_panel", "footer_panel" ] }, "content_area/control/header_panel": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "children": [ "content" ] }, "content_area/control/header_panel/content": { "file": "ui/settings_sections/settings_common.json", "type": "unknown" }, "content_area/control/scrolling_panel": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "content_area/control/footer_panel": { "file": "ui/settings_sections/settings_common.json", "type": "panel", "children": [ "content" ] }, "content_area/control/footer_panel/content": { "file": "ui/settings_sections/settings_common.json", "type": "unknown" }, "section_divider": { "file": "ui/settings_sections/settings_common.json", "type": "image" }, "screen_base": { "file": "ui/settings_sections/settings_common.json", "type": "screen", "extend": { "name": "dynamic_dialog_screen", "namespace": "settings_common" } }, "screen_base_fullscreen": { "file": "ui/settings_sections/settings_common.json", "type": "screen", "extend": { "name": "dynamic_dialog_fullscreen", "namespace": "settings_common" } } }, "world_section": { "selector_pane_content": { "file": "ui/settings_sections/world_section.json", "type": "stack_panel", "children": [ "world_snapshot_image", "play_or_create_panel", "play_or_host_panel", "spacer", "server_settings_visibility_panel", "selector_group_label_1", "game_button", "spacer_01", "classroom_button", "spacer_02", "switch_game_button", "spacer_03", "multiplayer_button", "spacer_04", "edu_cloud_button", "spacer_05", "debug_button" ] }, "selector_pane_content/world_snapshot_image": { "file": "ui/settings_sections/world_section.json", "type": "panel", "children": [ "thumbnail" ] }, "selector_pane_content/world_snapshot_image/thumbnail": { "file": "ui/settings_sections/world_section.json", "type": "image", "children": [ "border" ] }, "selector_pane_content/world_snapshot_image/thumbnail/border": { "file": "ui/settings_sections/world_section.json", "type": "image" }, "selector_pane_content/play_or_create_panel": { "file": "ui/settings_sections/world_section.json", "type": "stack_panel", "extend": { "name": "play_or_create_stack_bedrock", "namespace": "world_section" } }, "selector_pane_content/play_or_host_panel": { "file": "ui/settings_sections/world_section.json", "type": "stack_panel", "extend": { "name": "play_or_host_stack_edu", "namespace": "world_section" } }, "selector_pane_content/spacer": { "file": "ui/settings_sections/world_section.json", "type": "panel" }, "selector_pane_content/server_settings_visibility_panel": { "file": "ui/settings_sections/world_section.json", "type": "stack_panel", "children": [ "selector_group_label_0", "server_settings_button", "server_spacer" ] }, "selector_pane_content/server_settings_visibility_panel/selector_group_label_0": { "file": "ui/settings_sections/world_section.json", "type": "label", "extend": { "name": "selector_group_label", "namespace": "settings_common" } }, "selector_pane_content/server_settings_visibility_panel/server_settings_button": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "server_settings_button", "namespace": "world_section" } }, "selector_pane_content/server_settings_visibility_panel/server_spacer": { "file": "ui/settings_sections/world_section.json", "type": "panel" }, "selector_pane_content/selector_group_label_1": { "file": "ui/settings_sections/world_section.json", "type": "label", "extend": { "name": "selector_group_label", "namespace": "settings_common" } }, "selector_pane_content/game_button": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "game_button", "namespace": "world_section" } }, "selector_pane_content/spacer_01": { "file": "ui/settings_sections/world_section.json", "type": "panel" }, "selector_pane_content/classroom_button": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "settings_common" } }, "selector_pane_content/spacer_02": { "file": "ui/settings_sections/world_section.json", "type": "panel" }, "selector_pane_content/switch_game_button": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "game_button", "namespace": "world_section" } }, "selector_pane_content/spacer_03": { "file": "ui/settings_sections/world_section.json", "type": "panel" }, "selector_pane_content/multiplayer_button": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "multiplayer_button", "namespace": "world_section" } }, "selector_pane_content/spacer_04": { "file": "ui/settings_sections/world_section.json", "type": "panel" }, "selector_pane_content/edu_cloud_button": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "edu_cloud_button", "namespace": "world_section" } }, "selector_pane_content/spacer_05": { "file": "ui/settings_sections/world_section.json", "type": "panel" }, "selector_pane_content/debug_button": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "debug_button", "namespace": "world_section" } }, "launch_world_button_stack_def": { "file": "ui/settings_sections/world_section.json", "type": "stack_panel" }, "play_or_create_stack_bedrock": { "file": "ui/settings_sections/world_section.json", "type": "stack_panel", "extend": { "name": "launch_world_button_stack_def", "namespace": "world_section" }, "children": [ "create_or_play_button", "play_on_realm_button" ] }, "play_or_create_stack_bedrock/create_or_play_button": { "file": "ui/settings_sections/world_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "play_or_create_stack_bedrock/play_on_realm_button": { "file": "ui/settings_sections/world_section.json", "type": "button", "extend": { "name": "action_button_dark_text", "namespace": "settings_common" } }, "edu_play_host_button": { "file": "ui/settings_sections/world_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "play_or_host_stack_edu": { "file": "ui/settings_sections/world_section.json", "type": "stack_panel", "extend": { "name": "launch_world_button_stack_def", "namespace": "world_section" }, "children": [ "edu_play_button", "edu_host_button" ] }, "play_or_host_stack_edu/edu_play_button": { "file": "ui/settings_sections/world_section.json", "type": "button", "extend": { "name": "edu_play_host_button", "namespace": "world_section" } }, "play_or_host_stack_edu/edu_host_button": { "file": "ui/settings_sections/world_section.json", "type": "button", "extend": { "name": "edu_play_host_button", "namespace": "world_section" } }, "addons_selector_panel": { "file": "ui/settings_sections/world_section.json", "type": "stack_panel", "children": [ "spacer_01", "selector_group_label_2", "level_texture_pack_button", "spacer_02", "addon_button" ] }, "addons_selector_panel/spacer_01": { "file": "ui/settings_sections/world_section.json", "type": "panel" }, "addons_selector_panel/selector_group_label_2": { "file": "ui/settings_sections/world_section.json", "type": "label", "extend": { "name": "selector_group_label", "namespace": "settings_common" } }, "addons_selector_panel/level_texture_pack_button": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "level_texture_pack_button", "namespace": "world_section" } }, "addons_selector_panel/spacer_02": { "file": "ui/settings_sections/world_section.json", "type": "panel" }, "addons_selector_panel/addon_button": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "addon_button", "namespace": "world_section" } }, "server_settings_button": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "settings_common" } }, "server_section": { "file": "ui/settings_sections/world_section.json", "type": "stack_panel", "extend": { "name": "custom_form_scrolling_content", "namespace": "server_form" } }, "game_button": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "settings_common" } }, "export_world_button": { "file": "ui/settings_sections/world_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "delete_world_button": { "file": "ui/settings_sections/world_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "export_template_button": { "file": "ui/settings_sections/world_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "copy_world_button": { "file": "ui/settings_sections/world_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "edit_world_manipulation_buttons": { "file": "ui/settings_sections/world_section.json", "type": "stack_panel", "children": [ "export", "padding", "delete" ] }, "edit_world_manipulation_buttons/export": { "file": "ui/settings_sections/world_section.json", "type": "button", "extend": { "name": "export_world_button", "namespace": "world_section" } }, "edit_world_manipulation_buttons/padding": { "file": "ui/settings_sections/world_section.json", "type": "panel" }, "edit_world_manipulation_buttons/delete": { "file": "ui/settings_sections/world_section.json", "type": "button", "extend": { "name": "delete_world_button", "namespace": "world_section" } }, "game_section": { "file": "ui/settings_sections/world_section.json", "type": "stack_panel", "children": [ "new_edit_world_opt_in_panel", "new_edit_world_opt_in_divider", "unlock_template_options_panel", "option_info_label", "hardcore_info_label", "world_settings_label", "option_text_edit_0", "project_section_divider_1", "project_header_label", "project_section_divider_2", "project_spacer", "option_text_edit_1", "export_settings_section_divider_1", "export_settings_header_label", "export_settings_header_description", "export_settings_section_divider_2", "export_settings_spacer", "option_dropdown_0", "option_dropdown_1", "is_hardcore_toggle", "option_dropdown_2", "world_preferences_label", "starting_map_toggle", "bonus_chest_toggle", "option_dropdown_permissions", "option_dropdown_3", "level_seed_selector_edu", "level_seed_selector", "level_seed_selector_trial", "server_sim_distance_slider", "world_options_label", "pvp_toggle", "show_coordinates_toggle", "locator_bar_toggle", "show_days_played_toggle", "fire_spreads_toggle", "recipes_unlock_toggle", "tnt_explodes_toggle", "respawn_blocks_explode_toggle", "mob_loot_toggle", "natural_regeneration_toggle", "tile_drops_toggle", "player_sleep_toggle", "player_sleep_percentage_slider", "immediate_respawn_toggle", "respawn_radius", "experimental_toggles_label", "experimental_toggles_label_info", "experimental_toggles", "world_cheats_label", "allow_cheats_toggle", "education_toggle", "always_day_toggle", "daylight_cycle_toggle", "keep_inventory_toggle", "mob_spawn_toggle", "mob_griefing_toggle", "entities_drop_loot_toggle", "weather_cycle_toggle", "command_blocks_enabled_toggle", "random_tick_speed", "world_management_label", "convert_to_infinite_panel", "delete_button", "button_panel", "export_template_panel", "clear_player_data_panel", "copy_world_panel", "upload_download_slot_panel", "replace_slot_panel" ] }, "game_section/new_edit_world_opt_in_panel": { "file": "ui/settings_sections/world_section.json", "type": "stack_panel", "children": [ "panel_title", "panel_text", "opt_in_button" ] }, "game_section/new_edit_world_opt_in_panel/panel_title": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_group_label", "namespace": "settings_common" } }, "game_section/new_edit_world_opt_in_panel/panel_text": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_group_label", "namespace": "settings_common" } }, "game_section/new_edit_world_opt_in_panel/opt_in_button": { "file": "ui/settings_sections/world_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "game_section/new_edit_world_opt_in_divider": { "file": "ui/settings_sections/world_section.json", "type": "panel", "children": [ "section_divider" ] }, "game_section/new_edit_world_opt_in_divider/section_divider": { "file": "ui/settings_sections/world_section.json", "type": "image" }, "game_section/unlock_template_options_panel": { "file": "ui/settings_sections/world_section.json", "type": "stack_panel", "children": [ "option_info_label", "unlock_template_options_button" ] }, "game_section/unlock_template_options_panel/option_info_label": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_info_label", "namespace": "settings_common" } }, "game_section/unlock_template_options_panel/unlock_template_options_button": { "file": "ui/settings_sections/world_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "game_section/option_info_label": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_info_label", "namespace": "settings_common" } }, "game_section/hardcore_info_label": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_info_label", "namespace": "settings_common" } }, "game_section/world_settings_label": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_group_label", "namespace": "settings_common" } }, "game_section/option_text_edit_0": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "game_section/project_section_divider_1": { "file": "ui/settings_sections/world_section.json", "type": "image" }, "game_section/project_header_label": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_group_label", "namespace": "settings_common" } }, "game_section/project_section_divider_2": { "file": "ui/settings_sections/world_section.json", "type": "image" }, "game_section/project_spacer": { "file": "ui/settings_sections/world_section.json", "type": "panel" }, "game_section/option_text_edit_1": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "game_section/export_settings_section_divider_1": { "file": "ui/settings_sections/world_section.json", "type": "image" }, "game_section/export_settings_header_label": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_group_label", "namespace": "settings_common" } }, "game_section/export_settings_header_description": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_group_label", "namespace": "settings_common" } }, "game_section/export_settings_section_divider_2": { "file": "ui/settings_sections/world_section.json", "type": "image" }, "game_section/export_settings_spacer": { "file": "ui/settings_sections/world_section.json", "type": "panel" }, "game_section/option_dropdown_0": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_dropdown_no_scroll", "namespace": "settings_common" } }, "game_section/option_dropdown_1": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "game_section/is_hardcore_toggle": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "game_section/option_dropdown_2": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "game_section/world_preferences_label": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_group_label", "namespace": "settings_common" } }, "game_section/starting_map_toggle": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "game_section/bonus_chest_toggle": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "game_section/option_dropdown_permissions": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "game_section/option_dropdown_3": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_dropdown_no_scroll", "namespace": "settings_common" } }, "game_section/level_seed_selector_edu": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "game_section/level_seed_selector": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_text_edit_with_button", "namespace": "settings_common" } }, "game_section/level_seed_selector_trial": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_text_edit_mock_with_button", "namespace": "world_section" } }, "game_section/server_sim_distance_slider": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "game_section/world_options_label": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_group_label", "namespace": "settings_common" } }, "game_section/pvp_toggle": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "game_section/show_coordinates_toggle": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "game_section/locator_bar_toggle": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "game_section/show_days_played_toggle": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "game_section/fire_spreads_toggle": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "game_section/recipes_unlock_toggle": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "game_section/tnt_explodes_toggle": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "game_section/respawn_blocks_explode_toggle": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "game_section/mob_loot_toggle": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "game_section/natural_regeneration_toggle": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "game_section/tile_drops_toggle": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "game_section/player_sleep_toggle": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "game_section/player_sleep_percentage_slider": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "game_section/immediate_respawn_toggle": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "game_section/respawn_radius": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "game_section/experimental_toggles_label": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_group_label", "namespace": "settings_common" } }, "game_section/experimental_toggles_label_info": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_group_label", "namespace": "settings_common" } }, "game_section/experimental_toggles": { "file": "ui/settings_sections/world_section.json", "type": "stack_panel" }, "game_section/world_cheats_label": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_group_label", "namespace": "settings_common" } }, "game_section/allow_cheats_toggle": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "game_section/education_toggle": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "game_section/always_day_toggle": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "game_section/daylight_cycle_toggle": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "game_section/keep_inventory_toggle": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "game_section/mob_spawn_toggle": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "game_section/mob_griefing_toggle": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "game_section/entities_drop_loot_toggle": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "game_section/weather_cycle_toggle": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "game_section/command_blocks_enabled_toggle": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "game_section/random_tick_speed": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_text_edit_with_text_button", "namespace": "settings_common" } }, "game_section/world_management_label": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_group_label", "namespace": "settings_common" } }, "game_section/convert_to_infinite_panel": { "file": "ui/settings_sections/world_section.json", "type": "panel", "children": [ "convert_to_infinite_button" ] }, "game_section/convert_to_infinite_panel/convert_to_infinite_button": { "file": "ui/settings_sections/world_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "game_section/delete_button": { "file": "ui/settings_sections/world_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "game_section/button_panel": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "manipulation_controls" ] }, "game_section/button_panel/manipulation_controls": { "file": "ui/settings_sections/world_section.json", "type": "unknown" }, "game_section/export_template_panel": { "file": "ui/settings_sections/world_section.json", "type": "stack_panel", "children": [ "padding", "template_version", "template_buttons", "export_template" ] }, "game_section/export_template_panel/padding": { "file": "ui/settings_sections/world_section.json", "type": "panel" }, "game_section/export_template_panel/template_version": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "game_section/export_template_panel/template_buttons": { "file": "ui/settings_sections/world_section.json", "type": "stack_panel", "children": [ "template_image_picker_button", "padding", "template_localization_picker_button" ] }, "game_section/export_template_panel/template_buttons/template_image_picker_button": { "file": "ui/settings_sections/world_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "game_section/export_template_panel/template_buttons/padding": { "file": "ui/settings_sections/world_section.json", "type": "panel" }, "game_section/export_template_panel/template_buttons/template_localization_picker_button": { "file": "ui/settings_sections/world_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "game_section/export_template_panel/export_template": { "file": "ui/settings_sections/world_section.json", "type": "button", "extend": { "name": "export_template_button", "namespace": "world_section" } }, "game_section/clear_player_data_panel": { "file": "ui/settings_sections/world_section.json", "type": "stack_panel", "children": [ "padding", "clear_player_data_button" ] }, "game_section/clear_player_data_panel/padding": { "file": "ui/settings_sections/world_section.json", "type": "panel" }, "game_section/clear_player_data_panel/clear_player_data_button": { "file": "ui/settings_sections/world_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "game_section/copy_world_panel": { "file": "ui/settings_sections/world_section.json", "type": "panel", "children": [ "copy_world" ] }, "game_section/copy_world_panel/copy_world": { "file": "ui/settings_sections/world_section.json", "type": "button", "extend": { "name": "copy_world_button", "namespace": "world_section" } }, "game_section/upload_download_slot_panel": { "file": "ui/settings_sections/world_section.json", "type": "panel", "children": [ "upload_download_slot_button" ] }, "game_section/upload_download_slot_panel/upload_download_slot_button": { "file": "ui/settings_sections/world_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "game_section/replace_slot_panel": { "file": "ui/settings_sections/world_section.json", "type": "panel", "children": [ "replace_slot_button" ] }, "game_section/replace_slot_panel/replace_slot_button": { "file": "ui/settings_sections/world_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "level_texture_pack_button": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "resource_packs_section_toggle_base", "namespace": "resource_packs" } }, "level_texture_pack_section": { "file": "ui/settings_sections/world_section.json", "type": "stack_panel", "extend": { "name": "selected_stack_panel", "namespace": "resource_packs" } }, "addon_button": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "resource_packs_section_toggle_base", "namespace": "resource_packs" } }, "addon_section": { "file": "ui/settings_sections/world_section.json", "type": "stack_panel", "extend": { "name": "selected_stack_panel", "namespace": "resource_packs" } }, "world_game_mode_dropdown_content": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "xbl_broadcast_dropdown_content": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "platform_broadcast_dropdown_content": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "player_game_mode_dropdown_content": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "world_type_dropdown_content": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "world_difficulty_dropdown_content": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "multiplayer_button": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "settings_common" } }, "cross_platform_warning_label": { "file": "ui/settings_sections/world_section.json", "type": "label", "extend": { "name": "disconnected_label", "namespace": "pause" } }, "multiplayer_section": { "file": "ui/settings_sections/world_section.json", "type": "stack_panel", "children": [ "multiplayer_game_toggle", "platform_settings_dropdown", "xbl_settings_dropdown", "server_visible_toggle", "general_multiplayer_warning_label", "open_uri_button", "platform_multiplayer_warning_label", "xbl_multiplayer_warning_label" ] }, "multiplayer_section/multiplayer_game_toggle": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "multiplayer_section/platform_settings_dropdown": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "multiplayer_section/xbl_settings_dropdown": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "multiplayer_section/server_visible_toggle": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "multiplayer_section/general_multiplayer_warning_label": { "file": "ui/settings_sections/world_section.json", "type": "label", "extend": { "name": "cross_platform_warning_label", "namespace": "world_section" } }, "multiplayer_section/open_uri_button": { "file": "ui/settings_sections/world_section.json", "type": "button", "extend": { "name": "open_account_setting_button", "namespace": "play" } }, "multiplayer_section/platform_multiplayer_warning_label": { "file": "ui/settings_sections/world_section.json", "type": "label", "extend": { "name": "cross_platform_warning_label", "namespace": "world_section" } }, "multiplayer_section/xbl_multiplayer_warning_label": { "file": "ui/settings_sections/world_section.json", "type": "label", "extend": { "name": "cross_platform_warning_label", "namespace": "world_section" } }, "option_text_edit_mock_with_button": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_generic", "namespace": "settings_common" } }, "option_text_edit_mock_control_with_button": { "file": "ui/settings_sections/world_section.json", "type": "stack_panel", "children": [ "trial_text_box_button", "seed_arrow_button" ] }, "option_text_edit_mock_control_with_button/trial_text_box_button": { "file": "ui/settings_sections/world_section.json", "type": "button", "extend": { "name": "transparent_content_button", "namespace": "common_buttons" } }, "option_text_edit_mock_control_with_button/seed_arrow_button": { "file": "ui/settings_sections/world_section.json", "type": "button", "extend": { "name": "light_glyph_button", "namespace": "common_buttons" } }, "experimental_toggle": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "open_account_setting_button": { "file": "ui/settings_sections/world_section.json", "type": "button", "extend": { "name": "hyperlink_button", "namespace": "common_buttons" } }, "edu_cloud_button": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "settings_common" } }, "edu_cloud_section": { "file": "ui/settings_sections/world_section.json", "type": "stack_panel", "children": [ "edu_cloud_label", "cloud_file_name", "cloud_file_last_changed", "cloud_upload_toggle", "cloud_help_wrapper_panel" ] }, "edu_cloud_section/edu_cloud_label": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_group_label", "namespace": "settings_common" } }, "edu_cloud_section/cloud_file_name": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "edu_cloud_section/cloud_file_last_changed": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "edu_cloud_section/cloud_upload_toggle": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "edu_cloud_section/cloud_help_wrapper_panel": { "file": "ui/settings_sections/world_section.json", "type": "stack_panel", "children": [ "cloud_help_button", "padded_icon" ] }, "edu_cloud_section/cloud_help_wrapper_panel/cloud_help_button": { "file": "ui/settings_sections/world_section.json", "type": "button", "extend": { "name": "underline_button", "namespace": "edu_common" } }, "edu_cloud_section/cloud_help_wrapper_panel/padded_icon": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "icon" ] }, "edu_cloud_section/cloud_help_wrapper_panel/padded_icon/icon": { "file": "ui/settings_sections/world_section.json", "type": "image" }, "debug_button": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "settings_common" } }, "debug_section": { "file": "ui/settings_sections/world_section.json", "type": "stack_panel", "children": [ "flat_nether_toggle", "game_version_override_toggle", "game_version_override_textbox", "spawn_dimension_dropdown", "spawn_biome_dropdown", "biome_override_dropdown", "base_game_version_debug_text" ] }, "debug_section/flat_nether_toggle": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/game_version_override_toggle": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_toggle", "namespace": "settings_common" } }, "debug_section/game_version_override_textbox": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_text_edit", "namespace": "settings_common" } }, "debug_section/spawn_dimension_dropdown": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_dropdown_no_scroll", "namespace": "settings_common" } }, "debug_section/spawn_biome_dropdown": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "debug_section/biome_override_dropdown": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "debug_section/base_game_version_debug_text": { "file": "ui/settings_sections/world_section.json", "type": "label" }, "debug_spawn_dimension_dropdown_content": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "debug_spawn_biome_dropdown_content": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "debug_biome_override_dropdown_content": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "editor_edit_world_manipulation_buttons_content": { "file": "ui/settings_sections/world_section.json", "type": "stack_panel", "children": [ "export_as_project", "padding", "export_as_world_buttons", "padding_2", "project_manipulations_buttons" ] }, "editor_edit_world_manipulation_buttons_content/export_as_project": { "file": "ui/settings_sections/world_section.json", "type": "button", "extend": { "name": "export_world_button", "namespace": "world_section" } }, "editor_edit_world_manipulation_buttons_content/padding": { "file": "ui/settings_sections/world_section.json", "type": "panel" }, "editor_edit_world_manipulation_buttons_content/export_as_world_buttons": { "file": "ui/settings_sections/world_section.json", "type": "stack_panel", "children": [ "export_as_world", "padding", "export_as_template" ] }, "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/export_as_world": { "file": "ui/settings_sections/world_section.json", "type": "button", "extend": { "name": "export_world_button", "namespace": "world_section" } }, "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/padding": { "file": "ui/settings_sections/world_section.json", "type": "panel" }, "editor_edit_world_manipulation_buttons_content/export_as_world_buttons/export_as_template": { "file": "ui/settings_sections/world_section.json", "type": "button", "extend": { "name": "export_template_button", "namespace": "world_section" } }, "editor_edit_world_manipulation_buttons_content/padding_2": { "file": "ui/settings_sections/world_section.json", "type": "panel" }, "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons": { "file": "ui/settings_sections/world_section.json", "type": "stack_panel", "children": [ "copy_project", "padding", "delete_project" ] }, "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/copy_project": { "file": "ui/settings_sections/world_section.json", "type": "button", "extend": { "name": "copy_world_button", "namespace": "world_section" } }, "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/padding": { "file": "ui/settings_sections/world_section.json", "type": "panel" }, "editor_edit_world_manipulation_buttons_content/project_manipulations_buttons/delete_project": { "file": "ui/settings_sections/world_section.json", "type": "button", "extend": { "name": "delete_world_button", "namespace": "world_section" } }, "editor_edit_world_manipulation_buttons": { "file": "ui/settings_sections/world_section.json", "type": "panel", "extend": { "name": "option_generic", "namespace": "settings_common" } } }, "social_section": { "party_button": { "file": "ui/settings_sections/social_section.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "settings_common" } }, "party_section": { "file": "ui/settings_sections/social_section.json", "type": "stack_panel", "children": [ "party_invite_filter_dropdown", "party_invite_reset_default_padding", "party_invite_send_privileges_dropdown", "party_privacy_default_padding", "party_privacy_dropdown", "party_privacy_label_wrapper", "party_settings_reset_default_button_default_padding", "party_settings_reset_default_button", "microsoft_account_settings_divider", "microsoft_account_settings_header", "microsoft_account_settings_padding", "microsoft_account_settings_label_wrapper", "privacy_and_online_safety_button_padding", "privacy_and_online_safety_button", "microsoft_account_settings_ending_padding" ] }, "party_section/party_invite_filter_dropdown": { "file": "ui/settings_sections/social_section.json", "type": "panel", "extend": { "name": "option_dropdown_no_scroll", "namespace": "settings_common" } }, "party_section/party_invite_reset_default_padding": { "file": "ui/settings_sections/social_section.json", "type": "panel" }, "party_section/party_invite_send_privileges_dropdown": { "file": "ui/settings_sections/social_section.json", "type": "panel", "extend": { "name": "option_dropdown_no_scroll", "namespace": "settings_common" } }, "party_section/party_privacy_default_padding": { "file": "ui/settings_sections/social_section.json", "type": "panel" }, "party_section/party_privacy_dropdown": { "file": "ui/settings_sections/social_section.json", "type": "panel", "extend": { "name": "option_dropdown_no_scroll", "namespace": "settings_common" } }, "party_section/party_privacy_label_wrapper": { "file": "ui/settings_sections/social_section.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "party_section/party_settings_reset_default_button_default_padding": { "file": "ui/settings_sections/social_section.json", "type": "panel" }, "party_section/party_settings_reset_default_button": { "file": "ui/settings_sections/social_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "party_section/microsoft_account_settings_divider": { "file": "ui/settings_sections/social_section.json", "type": "panel", "children": [ "section_divider" ] }, "party_section/microsoft_account_settings_divider/section_divider": { "file": "ui/settings_sections/social_section.json", "type": "image" }, "party_section/microsoft_account_settings_header": { "file": "ui/settings_sections/social_section.json", "type": "label" }, "party_section/microsoft_account_settings_padding": { "file": "ui/settings_sections/social_section.json", "type": "panel" }, "party_section/microsoft_account_settings_label_wrapper": { "file": "ui/settings_sections/social_section.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "party_section/privacy_and_online_safety_button_padding": { "file": "ui/settings_sections/social_section.json", "type": "panel" }, "party_section/privacy_and_online_safety_button": { "file": "ui/settings_sections/social_section.json", "type": "button", "extend": { "name": "action_button", "namespace": "settings_common" } }, "party_section/microsoft_account_settings_ending_padding": { "file": "ui/settings_sections/social_section.json", "type": "panel" }, "party_privacy_label": { "file": "ui/settings_sections/social_section.json", "type": "label" }, "microsoft_account_settings_label": { "file": "ui/settings_sections/social_section.json", "type": "label" }, "platform_settings_label": { "file": "ui/settings_sections/social_section.json", "type": "label" }, "party_invite_filter_dropdown_content": { "file": "ui/settings_sections/social_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "party_privacy_dropdown_content": { "file": "ui/settings_sections/social_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "party_invite_send_privileges_dropdown_content": { "file": "ui/settings_sections/social_section.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } } }, "sidebar_navigation": { "empty_panel": { "file": "ui/sidebar_navigation.json", "type": "panel" }, "empty_fill_x_panel": { "file": "ui/sidebar_navigation.json", "type": "panel" }, "empty_default_panel": { "file": "ui/sidebar_navigation.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "vertical_padding_panel": { "file": "ui/sidebar_navigation.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "sidebar_bg": { "file": "ui/sidebar_navigation.json", "type": "image" }, "sidebar_divider": { "file": "ui/sidebar_navigation.json", "type": "image" }, "sidebar_divider_panel": { "file": "ui/sidebar_navigation.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "sidebar_divider" ] }, "sidebar_divider_panel/sidebar_divider": { "file": "ui/sidebar_navigation.json", "type": "image", "extend": { "name": "sidebar_divider", "namespace": "sidebar_navigation" } }, "toggle_content": { "file": "ui/sidebar_navigation.json", "type": "panel", "children": [ "toggle_content" ] }, "toggle_content/toggle_content": { "file": "ui/sidebar_navigation.json", "type": "unknown" }, "sidebar_section_scroll_panel": { "file": "ui/sidebar_navigation.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "sidebar_bg_content_panel": { "file": "ui/sidebar_navigation.json", "type": "image", "extend": { "name": "sidebar_bg", "namespace": "sidebar_navigation" }, "children": [ "sidebar_bg_content" ] }, "sidebar_bg_content_panel/sidebar_bg_content": { "file": "ui/sidebar_navigation.json", "type": "unknown" }, "sidebar_nav_toggle_image": { "file": "ui/sidebar_navigation.json", "type": "image" }, "sidebar_nav_toggle_image_panel": { "file": "ui/sidebar_navigation.json", "type": "panel", "children": [ "sidebar_nav_toggle_image", "gamepad_helper_icon" ] }, "sidebar_nav_toggle_image_panel/sidebar_nav_toggle_image": { "file": "ui/sidebar_navigation.json", "type": "image", "extend": { "name": "sidebar_nav_toggle_image", "namespace": "sidebar_navigation" } }, "sidebar_nav_toggle_image_panel/gamepad_helper_icon": { "file": "ui/sidebar_navigation.json", "type": "unknown" }, "gamepad_helper_icon_start_toggle": { "file": "ui/sidebar_navigation.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_start", "namespace": "common" } }, "verbose_view_toggle_content": { "file": "ui/sidebar_navigation.json", "type": "stack_panel", "children": [ "left_padding", "sidebar_nav_toggle_image" ] }, "verbose_view_toggle_content/left_padding": { "file": "ui/sidebar_navigation.json", "type": "panel" }, "verbose_view_toggle_content/sidebar_nav_toggle_image": { "file": "ui/sidebar_navigation.json", "type": "panel", "extend": { "name": "sidebar_nav_toggle_image_panel", "namespace": "sidebar_navigation" } }, "sidebar_toggle_bg": { "file": "ui/sidebar_navigation.json", "type": "image", "extend": { "name": "button_image", "namespace": "common_buttons" } }, "sidebar_toggle": { "file": "ui/sidebar_navigation.json", "type": "panel", "extend": { "name": "dark_content_toggle", "namespace": "common_toggles" } }, "sidebar_option_toggle": { "file": "ui/sidebar_navigation.json", "type": "panel", "extend": { "name": "sidebar_toggle", "namespace": "sidebar_navigation" } }, "simple_sidebar_toggle": { "file": "ui/sidebar_navigation.json", "type": "panel", "extend": { "name": "sidebar_option_toggle", "namespace": "sidebar_navigation" } }, "verbose_toggle": { "file": "ui/sidebar_navigation.json", "type": "panel", "extend": { "name": "sidebar_option_toggle", "namespace": "sidebar_navigation" } }, "verbose_sidebar_option": { "file": "ui/sidebar_navigation.json", "type": "panel", "extend": { "name": "verbose_toggle", "namespace": "sidebar_navigation" } }, "verbose_expand_option": { "file": "ui/sidebar_navigation.json", "type": "panel", "extend": { "name": "verbose_sidebar_option", "namespace": "sidebar_navigation" } }, "verbose_dropdown_option": { "file": "ui/sidebar_navigation.json", "type": "panel", "extend": { "name": "verbose_toggle", "namespace": "sidebar_navigation" } }, "verbose_dropdown_expanded_option": { "file": "ui/sidebar_navigation.json", "type": "panel", "extend": { "name": "verbose_dropdown_option", "namespace": "sidebar_navigation" } }, "verbose_sidebar_expand_section_bg": { "file": "ui/sidebar_navigation.json", "type": "image", "extend": { "name": "sidebar_bg", "namespace": "sidebar_navigation" } }, "verbose_sidebar_expand_section_panel": { "file": "ui/sidebar_navigation.json", "type": "stack_panel", "extend": { "name": "sidebar_section", "namespace": "sidebar_navigation" } }, "verbose_expand_section_panel": { "file": "ui/sidebar_navigation.json", "type": "input_panel", "extend": { "name": "sidebar_option_factory_panel", "namespace": "sidebar_navigation" } }, "verbose_view_toggle": { "file": "ui/sidebar_navigation.json", "type": "panel", "extend": { "name": "sidebar_toggle", "namespace": "sidebar_navigation" } }, "sidebar_option_factory": { "file": "ui/sidebar_navigation.json", "type": "stack_panel" }, "sidebar_option_factory_panel": { "file": "ui/sidebar_navigation.json", "type": "input_panel", "children": [ "sidebar_option_factory" ] }, "sidebar_option_factory_panel/sidebar_option_factory": { "file": "ui/sidebar_navigation.json", "type": "stack_panel", "extend": { "name": "sidebar_option_factory", "namespace": "sidebar_navigation" } }, "verbose_button_content": { "file": "ui/sidebar_navigation.json", "type": "panel", "children": [ "button_label" ] }, "verbose_button_content/button_label": { "file": "ui/sidebar_navigation.json", "type": "label" }, "verbose_button": { "file": "ui/sidebar_navigation.json", "type": "button", "extend": { "name": "dark_content_button", "namespace": "common_buttons" } }, "verbose_nav_button_panel": { "file": "ui/sidebar_navigation.json", "type": "panel", "children": [ "verbose_nav_button" ] }, "verbose_nav_button_panel/verbose_nav_button": { "file": "ui/sidebar_navigation.json", "type": "button", "extend": { "name": "verbose_button", "namespace": "sidebar_navigation" } }, "verbose_screen_nav_button": { "file": "ui/sidebar_navigation.json", "type": "button", "extend": { "name": "dark_content_button", "namespace": "common_buttons" } }, "verbose_screen_nav_option_panel": { "file": "ui/sidebar_navigation.json", "type": "panel", "children": [ "verbose_nav_button" ] }, "verbose_screen_nav_option_panel/verbose_nav_button": { "file": "ui/sidebar_navigation.json", "type": "button", "extend": { "name": "verbose_screen_nav_button", "namespace": "sidebar_navigation" } }, "sidebar_option_factory_scroll_panel": { "file": "ui/sidebar_navigation.json", "type": "panel", "extend": { "name": "sidebar_section_scroll_panel", "namespace": "sidebar_navigation" } }, "sidebar_screen_nav_option_factory_panel": { "file": "ui/sidebar_navigation.json", "type": "stack_panel", "children": [ "fill_panel", "button", "padding", "platform_icon_padding" ] }, "sidebar_screen_nav_option_factory_panel/fill_panel": { "file": "ui/sidebar_navigation.json", "type": "panel" }, "sidebar_screen_nav_option_factory_panel/button": { "file": "ui/sidebar_navigation.json", "type": "panel", "extend": { "name": "verbose_screen_nav_option_panel", "namespace": "sidebar_navigation" } }, "sidebar_screen_nav_option_factory_panel/padding": { "file": "ui/sidebar_navigation.json", "type": "panel" }, "sidebar_screen_nav_option_factory_panel/platform_icon_padding": { "file": "ui/sidebar_navigation.json", "type": "panel", "extend": { "name": "platform_store_icon_spacing", "namespace": "sidebar_navigation" } }, "root_section_content_panel": { "file": "ui/sidebar_navigation.json", "type": "stack_panel", "children": [ "sidebar_option_factory", "verbose_sidebar_screen_Nav" ] }, "root_section_content_panel/sidebar_option_factory": { "file": "ui/sidebar_navigation.json", "type": "panel", "extend": { "name": "sidebar_option_factory_scroll_panel", "namespace": "sidebar_navigation" } }, "root_section_content_panel/verbose_sidebar_screen_Nav": { "file": "ui/sidebar_navigation.json", "type": "stack_panel", "extend": { "name": "sidebar_screen_nav_option_factory_panel", "namespace": "sidebar_navigation" } }, "edge_bar": { "file": "ui/sidebar_navigation.json", "type": "image" }, "verbose_view_stack_panel": { "file": "ui/sidebar_navigation.json", "type": "stack_panel", "children": [ "verbose_view_toggle" ] }, "verbose_view_stack_panel/verbose_view_toggle": { "file": "ui/sidebar_navigation.json", "type": "panel", "extend": { "name": "verbose_view_toggle", "namespace": "sidebar_navigation" } }, "sidebar_section": { "file": "ui/sidebar_navigation.json", "type": "stack_panel", "children": [ "left_edge_bar", "verbose_view_stack_panel", "right_edge_bar" ] }, "sidebar_section/left_edge_bar": { "file": "ui/sidebar_navigation.json", "type": "image", "extend": { "name": "edge_bar", "namespace": "sidebar_navigation" } }, "sidebar_section/verbose_view_stack_panel": { "file": "ui/sidebar_navigation.json", "type": "stack_panel", "extend": { "name": "verbose_view_stack_panel", "namespace": "sidebar_navigation" } }, "sidebar_section/right_edge_bar": { "file": "ui/sidebar_navigation.json", "type": "image", "extend": { "name": "edge_bar", "namespace": "sidebar_navigation" } }, "root_section": { "file": "ui/sidebar_navigation.json", "type": "panel", "extend": { "name": "sidebar_section_scroll_panel", "namespace": "sidebar_navigation" } }, "verbose_root_section": { "file": "ui/sidebar_navigation.json", "type": "stack_panel", "extend": { "name": "sidebar_section", "namespace": "sidebar_navigation" } }, "simple_root_section": { "file": "ui/sidebar_navigation.json", "type": "stack_panel", "children": [ "verbose_view_toggle", "root_section" ] }, "simple_root_section/verbose_view_toggle": { "file": "ui/sidebar_navigation.json", "type": "panel", "extend": { "name": "verbose_view_toggle", "namespace": "sidebar_navigation" } }, "simple_root_section/root_section": { "file": "ui/sidebar_navigation.json", "type": "panel", "extend": { "name": "root_section", "namespace": "sidebar_navigation" } }, "sidebar_section_factory_panel": { "file": "ui/sidebar_navigation.json", "type": "image", "extend": { "name": "sidebar_bg", "namespace": "sidebar_navigation" }, "children": [ "sidebar_section_factory" ] }, "sidebar_section_factory_panel/sidebar_section_factory": { "file": "ui/sidebar_navigation.json", "type": "stack_panel" }, "sidebar_view_content_panel": { "file": "ui/sidebar_navigation.json", "type": "panel", "children": [ "view_stack_panel", "verbose_view_exit" ] }, "sidebar_view_content_panel/view_stack_panel": { "file": "ui/sidebar_navigation.json", "type": "stack_panel", "children": [ "sidebar_view", "controller_hover_close_panel" ] }, "sidebar_view_content_panel/view_stack_panel/sidebar_view": { "file": "ui/sidebar_navigation.json", "type": "image", "extend": { "name": "sidebar_section_factory_panel", "namespace": "sidebar_navigation" } }, "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel": { "file": "ui/sidebar_navigation.json", "type": "panel", "children": [ "controller_hover_close_button" ] }, "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button": { "file": "ui/sidebar_navigation.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover" ] }, "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button/default": { "file": "ui/sidebar_navigation.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "sidebar_view_content_panel/view_stack_panel/controller_hover_close_panel/controller_hover_close_button/hover": { "file": "ui/sidebar_navigation.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "sidebar_view_content_panel/verbose_view_exit": { "file": "ui/sidebar_navigation.json", "type": "panel", "extend": { "name": "close_bg_panel", "namespace": "common_store" } }, "verbose_sidebar_view_modal": { "file": "ui/sidebar_navigation.json", "type": "input_panel", "extend": { "name": "modal_area_panel_base", "namespace": "common" } }, "sidebar_views": { "file": "ui/sidebar_navigation.json", "type": "panel", "children": [ "sidebar_view_conent" ] }, "sidebar_views/sidebar_view_conent": { "file": "ui/sidebar_navigation.json", "type": "panel", "children": [ "simple_sidebar_view", "verbose_side_bar_view_modal" ] }, "sidebar_views/sidebar_view_conent/simple_sidebar_view": { "file": "ui/sidebar_navigation.json", "type": "panel", "extend": { "name": "sidebar_view_content_panel", "namespace": "sidebar_navigation" } }, "sidebar_views/sidebar_view_conent/verbose_side_bar_view_modal": { "file": "ui/sidebar_navigation.json", "type": "input_panel", "extend": { "name": "verbose_sidebar_view_modal", "namespace": "sidebar_navigation" }, "children": [ "verbose_sidebar_view" ] }, "sidebar_views/sidebar_view_conent/verbose_side_bar_view_modal/verbose_sidebar_view": { "file": "ui/sidebar_navigation.json", "type": "panel", "extend": { "name": "sidebar_view_content_panel", "namespace": "sidebar_navigation" } }, "sidebar_empty_panel": { "file": "ui/sidebar_navigation.json", "type": "panel" }, "content_view": { "file": "ui/sidebar_navigation.json", "type": "panel", "children": [ "content_view_stack" ] }, "content_view/content_view_stack": { "file": "ui/sidebar_navigation.json", "type": "stack_panel", "children": [ "sidebar_view_stack", "main_view_content" ] }, "content_view/content_view_stack/sidebar_view_stack": { "file": "ui/sidebar_navigation.json", "type": "stack_panel", "children": [ "sidebar_empty_panel", "divider" ] }, "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel": { "file": "ui/sidebar_navigation.json", "type": "panel", "extend": { "name": "sidebar_empty_panel", "namespace": "sidebar_navigation" }, "children": [ "controller_hover_open_panel" ] }, "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel": { "file": "ui/sidebar_navigation.json", "type": "panel", "children": [ "controller_hover_open_button" ] }, "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button": { "file": "ui/sidebar_navigation.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover" ] }, "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button/default": { "file": "ui/sidebar_navigation.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "content_view/content_view_stack/sidebar_view_stack/sidebar_empty_panel/controller_hover_open_panel/controller_hover_open_button/hover": { "file": "ui/sidebar_navigation.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "content_view/content_view_stack/sidebar_view_stack/divider": { "file": "ui/sidebar_navigation.json", "type": "image", "extend": { "name": "edge_bar", "namespace": "sidebar_navigation" } }, "content_view/content_view_stack/main_view_content": { "file": "ui/sidebar_navigation.json", "type": "input_panel", "children": [ "screen_content" ] }, "content_view/content_view_stack/main_view_content/screen_content": { "file": "ui/sidebar_navigation.json", "type": "unknown" }, "sidebar_view": { "file": "ui/sidebar_navigation.json", "type": "input_panel", "children": [ "sidebar_content", "content_view", "progress_loading" ] }, "sidebar_view/sidebar_content": { "file": "ui/sidebar_navigation.json", "type": "panel", "extend": { "name": "sidebar_views", "namespace": "sidebar_navigation" } }, "sidebar_view/content_view": { "file": "ui/sidebar_navigation.json", "type": "panel", "extend": { "name": "content_view", "namespace": "sidebar_navigation" } }, "sidebar_view/progress_loading": { "file": "ui/sidebar_navigation.json", "type": "panel", "extend": { "name": "progress_loading", "namespace": "common_store" } }, "platform_store_icon_spacing": { "file": "ui/sidebar_navigation.json", "type": "panel" } }, "sign": { "sign_background": { "file": "ui/sign_screen.json", "type": "image" }, "hanging_sign_background": { "file": "ui/sign_screen.json", "type": "image" }, "base_sign_text_multiline": { "file": "ui/sign_screen.json", "type": "edit_box", "extend": { "name": "multiline_text_edit_box", "namespace": "common" } }, "regular_sign_text_multiline": { "file": "ui/sign_screen.json", "type": "edit_box", "extend": { "name": "base_sign_text_multiline", "namespace": "sign" } }, "hanging_sign_text_multiline": { "file": "ui/sign_screen.json", "type": "edit_box", "extend": { "name": "base_sign_text_multiline", "namespace": "sign" } }, "sign_screen_content": { "file": "ui/sign_screen.json", "type": "panel", "children": [ "input_eating_panel", "invisible_exit_background" ] }, "sign_screen_content/input_eating_panel": { "file": "ui/sign_screen.json", "type": "input_panel", "children": [ "text_edit" ] }, "sign_screen_content/input_eating_panel/text_edit": { "file": "ui/sign_screen.json", "type": "unknown" }, "sign_screen_content/invisible_exit_background": { "file": "ui/sign_screen.json", "type": "input_panel" }, "sign_screen": { "file": "ui/sign_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } } }, "simple_inprogress": { "title_text": { "file": "ui/simple_inprogress_screen.json", "type": "label" }, "main_panel": { "file": "ui/simple_inprogress_screen.json", "type": "panel", "children": [ "common_panel", "title", "main_content", "progress_loading_bars" ] }, "main_panel/common_panel": { "file": "ui/simple_inprogress_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "main_panel/title": { "file": "ui/simple_inprogress_screen.json", "type": "label", "extend": { "name": "title_text", "namespace": "simple_inprogress" } }, "main_panel/main_content": { "file": "ui/simple_inprogress_screen.json", "type": "label" }, "main_panel/progress_loading_bars": { "file": "ui/simple_inprogress_screen.json", "type": "image", "extend": { "name": "progress_loading_bars", "namespace": "play" } }, "simple_inprogress_screen": { "file": "ui/simple_inprogress_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "simple_inprogress_screen_content": { "file": "ui/simple_inprogress_screen.json", "type": "panel", "children": [ "root_panel" ] }, "simple_inprogress_screen_content/root_panel": { "file": "ui/simple_inprogress_screen.json", "type": "panel", "children": [ "main_panel" ] }, "simple_inprogress_screen_content/root_panel/main_panel": { "file": "ui/simple_inprogress_screen.json", "type": "panel", "extend": { "name": "main_panel", "namespace": "simple_inprogress" } } }, "skin_pack_purchase": { "cycle_pack_left_button": { "file": "ui/skin_pack_purchase_screen.json", "type": "button", "extend": { "name": "cycle_pack_left_button", "namespace": "common_store" } }, "cycle_pack_right_button": { "file": "ui/skin_pack_purchase_screen.json", "type": "button", "extend": { "name": "cycle_pack_right_button", "namespace": "common_store" } }, "skin_model": { "file": "ui/skin_pack_purchase_screen.json", "type": "panel", "children": [ "paper_doll" ] }, "skin_model/paper_doll": { "file": "ui/skin_pack_purchase_screen.json", "type": "custom" }, "skin_lock": { "file": "ui/skin_pack_purchase_screen.json", "type": "image" }, "skin_focus_border": { "file": "ui/skin_pack_purchase_screen.json", "type": "image", "extend": { "name": "focus_border_white", "namespace": "common" }, "children": [ "equip" ] }, "skin_focus_border/equip": { "file": "ui/skin_pack_purchase_screen.json", "type": "panel", "extend": { "name": "equip_button_state_panel", "namespace": "skin_pack_purchase" } }, "skin_button_panel_gamepad": { "file": "ui/skin_pack_purchase_screen.json", "type": "panel", "children": [ "skin_button" ] }, "skin_button_panel_gamepad/skin_button": { "file": "ui/skin_pack_purchase_screen.json", "type": "button", "children": [ "hover", "pressed" ] }, "skin_button_panel_gamepad/skin_button/hover": { "file": "ui/skin_pack_purchase_screen.json", "type": "image", "extend": { "name": "skin_focus_border", "namespace": "skin_pack_purchase" } }, "skin_button_panel_gamepad/skin_button/pressed": { "file": "ui/skin_pack_purchase_screen.json", "type": "image", "extend": { "name": "skin_focus_border", "namespace": "skin_pack_purchase" } }, "skin_button_panel_not_gamepad": { "file": "ui/skin_pack_purchase_screen.json", "type": "panel", "children": [ "skin_button", "equip_button" ] }, "skin_button_panel_not_gamepad/skin_button": { "file": "ui/skin_pack_purchase_screen.json", "type": "button", "children": [ "hover", "pressed" ] }, "skin_button_panel_not_gamepad/skin_button/hover": { "file": "ui/skin_pack_purchase_screen.json", "type": "image", "extend": { "name": "focus_border_white", "namespace": "common" } }, "skin_button_panel_not_gamepad/skin_button/pressed": { "file": "ui/skin_pack_purchase_screen.json", "type": "image", "extend": { "name": "focus_border_white", "namespace": "common" } }, "skin_button_panel_not_gamepad/equip_button": { "file": "ui/skin_pack_purchase_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "skin_button_panel": { "file": "ui/skin_pack_purchase_screen.json", "type": "stack_panel", "children": [ "gamepad", "not_gamepad" ] }, "skin_button_panel/gamepad": { "file": "ui/skin_pack_purchase_screen.json", "type": "panel", "extend": { "name": "skin_button_panel_gamepad", "namespace": "skin_pack_purchase" } }, "skin_button_panel/not_gamepad": { "file": "ui/skin_pack_purchase_screen.json", "type": "panel", "extend": { "name": "skin_button_panel_not_gamepad", "namespace": "skin_pack_purchase" } }, "equip_button_state_panel": { "file": "ui/skin_pack_purchase_screen.json", "type": "panel", "children": [ "button_panel" ] }, "equip_button_state_panel/button_panel": { "file": "ui/skin_pack_purchase_screen.json", "type": "panel", "extend": { "name": "new_ui_button_panel", "namespace": "common_buttons" } }, "equip_button_text": { "file": "ui/skin_pack_purchase_screen.json", "type": "panel", "children": [ "text" ] }, "equip_button_text/text": { "file": "ui/skin_pack_purchase_screen.json", "type": "label" }, "skins_grid_item": { "file": "ui/skin_pack_purchase_screen.json", "type": "panel", "children": [ "model", "lock", "button" ] }, "skins_grid_item/model": { "file": "ui/skin_pack_purchase_screen.json", "type": "panel", "extend": { "name": "skin_model", "namespace": "skin_pack_purchase" } }, "skins_grid_item/lock": { "file": "ui/skin_pack_purchase_screen.json", "type": "image", "extend": { "name": "skin_lock", "namespace": "skin_pack_purchase" } }, "skins_grid_item/button": { "file": "ui/skin_pack_purchase_screen.json", "type": "stack_panel", "extend": { "name": "skin_button_panel", "namespace": "skin_pack_purchase" } }, "skins_grid": { "file": "ui/skin_pack_purchase_screen.json", "type": "grid" }, "skins_panel": { "file": "ui/skin_pack_purchase_screen.json", "type": "panel", "children": [ "bg" ] }, "skins_panel/bg": { "file": "ui/skin_pack_purchase_screen.json", "type": "panel", "children": [ "left", "sg", "right", "progress_loading_panel" ] }, "skins_panel/bg/left": { "file": "ui/skin_pack_purchase_screen.json", "type": "button", "extend": { "name": "cycle_pack_left_button", "namespace": "skin_pack_purchase" } }, "skins_panel/bg/sg": { "file": "ui/skin_pack_purchase_screen.json", "type": "grid", "extend": { "name": "skins_grid", "namespace": "skin_pack_purchase" } }, "skins_panel/bg/right": { "file": "ui/skin_pack_purchase_screen.json", "type": "button", "extend": { "name": "cycle_pack_right_button", "namespace": "skin_pack_purchase" } }, "skins_panel/bg/progress_loading_panel": { "file": "ui/skin_pack_purchase_screen.json", "type": "panel", "children": [ "progress_loading", "progress_loading_outline" ] }, "skins_panel/bg/progress_loading_panel/progress_loading": { "file": "ui/skin_pack_purchase_screen.json", "type": "panel", "extend": { "name": "progress_loading", "namespace": "common_store" } }, "skins_panel/bg/progress_loading_panel/progress_loading_outline": { "file": "ui/skin_pack_purchase_screen.json", "type": "button", "children": [ "hover" ] }, "skins_panel/bg/progress_loading_panel/progress_loading_outline/hover": { "file": "ui/skin_pack_purchase_screen.json", "type": "image", "extend": { "name": "focus_border_white", "namespace": "common" } }, "screen_root": { "file": "ui/skin_pack_purchase_screen.json", "type": "screen", "extend": { "name": "store_base_screen", "namespace": "common_store" } }, "skin_pack_purchase_upsell_screen": { "file": "ui/skin_pack_purchase_screen.json", "type": "screen", "extend": { "name": "screen_root", "namespace": "skin_pack_purchase" } }, "skin_pack_purchase_upsell_screen_content": { "file": "ui/skin_pack_purchase_screen.json", "type": "panel", "extend": { "name": "store_dialog_with_coin_header", "namespace": "common_store" } }, "skin_pack_purchase_upsell_dialog_content": { "file": "ui/skin_pack_purchase_screen.json", "type": "panel", "children": [ "container" ] }, "skin_pack_purchase_upsell_dialog_content/container": { "file": "ui/skin_pack_purchase_screen.json", "type": "panel" }, "skin_pack_purchase_standard": { "file": "ui/skin_pack_purchase_screen.json", "type": "screen", "extend": { "name": "screen_root", "namespace": "skin_pack_purchase" } }, "skin_pack_purchase_standard_content": { "file": "ui/skin_pack_purchase_screen.json", "type": "panel", "extend": { "name": "store_dialog_with_coin_header", "namespace": "common_store" } }, "skin_pack_purchase_dialog_content": { "file": "ui/skin_pack_purchase_screen.json", "type": "panel", "children": [ "container" ] }, "skin_pack_purchase_dialog_content/container": { "file": "ui/skin_pack_purchase_screen.json", "type": "panel" } }, "skin_picker": { "banner_fill": { "file": "ui/skin_picker_screen.json", "type": "image" }, "title_label": { "file": "ui/skin_picker_screen.json", "type": "label" }, "label": { "file": "ui/skin_picker_screen.json", "type": "label" }, "chevron_image": { "file": "ui/skin_picker_screen.json", "type": "image" }, "bumper_image": { "file": "ui/skin_picker_screen.json", "type": "image" }, "undo_image": { "file": "ui/skin_picker_screen.json", "type": "image" }, "plus_icon": { "file": "ui/skin_picker_screen.json", "type": "image" }, "direction_button_panel": { "file": "ui/skin_picker_screen.json", "type": "panel", "children": [ "chevron_image", "bumper_image" ] }, "direction_button_panel/chevron_image": { "file": "ui/skin_picker_screen.json", "type": "image", "extend": { "name": "chevron_image", "namespace": "skin_picker" } }, "direction_button_panel/bumper_image": { "file": "ui/skin_picker_screen.json", "type": "image", "extend": { "name": "bumper_image", "namespace": "skin_picker" } }, "cycle_pack_button": { "file": "ui/skin_picker_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "cycle_pack_left_button": { "file": "ui/skin_picker_screen.json", "type": "button", "extend": { "name": "cycle_pack_button", "namespace": "skin_picker" } }, "cycle_pack_right_button": { "file": "ui/skin_picker_screen.json", "type": "button", "extend": { "name": "cycle_pack_button", "namespace": "skin_picker" } }, "skin_button": { "file": "ui/skin_picker_screen.json", "type": "button", "children": [ "hover", "pressed" ] }, "skin_button/hover": { "file": "ui/skin_picker_screen.json", "type": "image", "extend": { "name": "focus_border_white", "namespace": "common" } }, "skin_button/pressed": { "file": "ui/skin_picker_screen.json", "type": "image", "extend": { "name": "focus_border_white", "namespace": "common" } }, "skin_rotation_arrows": { "file": "ui/skin_picker_screen.json", "type": "image" }, "skin_viewer_panel": { "file": "ui/skin_picker_screen.json", "type": "input_panel", "children": [ "custom_skin_button", "skin_model_panel", "lock" ] }, "skin_viewer_panel/custom_skin_button": { "file": "ui/skin_picker_screen.json", "type": "button", "extend": { "name": "light_text_form_fitting_button", "namespace": "common_buttons" } }, "skin_viewer_panel/skin_model_panel": { "file": "ui/skin_picker_screen.json", "type": "panel", "children": [ "skin_model" ] }, "skin_viewer_panel/skin_model_panel/skin_model": { "file": "ui/skin_picker_screen.json", "type": "custom" }, "skin_viewer_panel/lock": { "file": "ui/skin_picker_screen.json", "type": "image", "extend": { "name": "skin_lock", "namespace": "skin_picker" } }, "undo_skin_button": { "file": "ui/skin_picker_screen.json", "type": "button", "extend": { "name": "light_glyph_button", "namespace": "common_buttons" } }, "accept_skin_button": { "file": "ui/skin_picker_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "stack_item": { "file": "ui/skin_picker_screen.json", "type": "panel" }, "accept_skin_panel": { "file": "ui/skin_picker_screen.json", "type": "stack_panel", "children": [ "stack_item_0", "stack_item_1" ] }, "accept_skin_panel/stack_item_0": { "file": "ui/skin_picker_screen.json", "type": "panel", "extend": { "name": "stack_item", "namespace": "skin_picker" }, "children": [ "undo_btn" ] }, "accept_skin_panel/stack_item_0/undo_btn": { "file": "ui/skin_picker_screen.json", "type": "button", "extend": { "name": "undo_skin_button", "namespace": "skin_picker" } }, "accept_skin_panel/stack_item_1": { "file": "ui/skin_picker_screen.json", "type": "panel", "extend": { "name": "stack_item", "namespace": "skin_picker" }, "children": [ "accept_button" ] }, "accept_skin_panel/stack_item_1/accept_button": { "file": "ui/skin_picker_screen.json", "type": "button", "extend": { "name": "accept_skin_button", "namespace": "skin_picker" } }, "appearance_status_image_panel": { "file": "ui/skin_picker_screen.json", "type": "panel", "children": [ "limited_status_image", "no_restrictions_status_image" ] }, "appearance_status_image_panel/limited_status_image": { "file": "ui/skin_picker_screen.json", "type": "image" }, "appearance_status_image_panel/no_restrictions_status_image": { "file": "ui/skin_picker_screen.json", "type": "image" }, "appearance_status_content": { "file": "ui/skin_picker_screen.json", "type": "stack_panel", "children": [ "appearance_status_image_panel", "padding", "appearance_status_label_panel" ] }, "appearance_status_content/appearance_status_image_panel": { "file": "ui/skin_picker_screen.json", "type": "panel", "extend": { "name": "appearance_status_image_panel", "namespace": "skin_picker" } }, "appearance_status_content/padding": { "file": "ui/skin_picker_screen.json", "type": "panel" }, "appearance_status_content/appearance_status_label_panel": { "file": "ui/skin_picker_screen.json", "type": "panel", "children": [ "appearance_status_label" ] }, "appearance_status_content/appearance_status_label_panel/appearance_status_label": { "file": "ui/skin_picker_screen.json", "type": "label" }, "preview_skin_panel": { "file": "ui/skin_picker_screen.json", "type": "panel", "children": [ "preview", "button_frame" ] }, "preview_skin_panel/preview": { "file": "ui/skin_picker_screen.json", "type": "input_panel", "extend": { "name": "skin_viewer_panel", "namespace": "skin_picker" } }, "preview_skin_panel/button_frame": { "file": "ui/skin_picker_screen.json", "type": "stack_panel", "children": [ "stack_item_0", "padding", "notification_and_accept_input_panel" ] }, "preview_skin_panel/button_frame/stack_item_0": { "file": "ui/skin_picker_screen.json", "type": "panel", "extend": { "name": "stack_item", "namespace": "skin_picker" }, "children": [ "rotation" ] }, "preview_skin_panel/button_frame/stack_item_0/rotation": { "file": "ui/skin_picker_screen.json", "type": "image", "extend": { "name": "skin_rotation_arrows", "namespace": "skin_picker" } }, "preview_skin_panel/button_frame/padding": { "file": "ui/skin_picker_screen.json", "type": "panel" }, "preview_skin_panel/button_frame/notification_and_accept_input_panel": { "file": "ui/skin_picker_screen.json", "type": "input_panel", "children": [ "notification_and_accept_stack" ] }, "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack": { "file": "ui/skin_picker_screen.json", "type": "stack_panel", "children": [ "skin_status_notification_section", "stack_item_1" ] }, "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/skin_status_notification_section": { "file": "ui/skin_picker_screen.json", "type": "panel", "children": [ "appearance_status_notification_panel" ] }, "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/skin_status_notification_section/appearance_status_notification_panel": { "file": "ui/skin_picker_screen.json", "type": "button", "extend": { "name": "static_tooltip_notification_panel", "namespace": "common_buttons" } }, "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/stack_item_1": { "file": "ui/skin_picker_screen.json", "type": "panel", "extend": { "name": "stack_item", "namespace": "skin_picker" }, "children": [ "accept" ] }, "preview_skin_panel/button_frame/notification_and_accept_input_panel/notification_and_accept_stack/stack_item_1/accept": { "file": "ui/skin_picker_screen.json", "type": "stack_panel", "extend": { "name": "accept_skin_panel", "namespace": "skin_picker" } }, "skin_model": { "file": "ui/skin_picker_screen.json", "type": "custom" }, "premium_skin_button": { "file": "ui/skin_picker_screen.json", "type": "button", "extend": { "name": "skin_button", "namespace": "skin_picker" } }, "skin_lock": { "file": "ui/skin_picker_screen.json", "type": "image" }, "new_pack_icon": { "file": "ui/skin_picker_screen.json", "type": "panel", "children": [ "icon" ] }, "new_pack_icon/icon": { "file": "ui/skin_picker_screen.json", "type": "image", "extend": { "name": "new_offer_icon", "namespace": "common_store" } }, "pack_lock": { "file": "ui/skin_picker_screen.json", "type": "panel", "children": [ "locked", "unlocked" ] }, "pack_lock/locked": { "file": "ui/skin_picker_screen.json", "type": "image" }, "pack_lock/unlocked": { "file": "ui/skin_picker_screen.json", "type": "image" }, "skin_input_panel": { "file": "ui/skin_picker_screen.json", "type": "input_panel", "children": [ "sg" ] }, "skin_input_panel/sg": { "file": "ui/skin_picker_screen.json", "type": "grid", "extend": { "name": "skins_grid", "namespace": "skin_picker" } }, "skins_grid_item": { "file": "ui/skin_picker_screen.json", "type": "panel", "children": [ "clip", "lock", "button" ] }, "skins_grid_item/clip": { "file": "ui/skin_picker_screen.json", "type": "panel", "children": [ "model" ] }, "skins_grid_item/clip/model": { "file": "ui/skin_picker_screen.json", "type": "custom", "extend": { "name": "skin_model", "namespace": "skin_picker" } }, "skins_grid_item/lock": { "file": "ui/skin_picker_screen.json", "type": "image", "extend": { "name": "skin_lock", "namespace": "skin_picker" } }, "skins_grid_item/button": { "file": "ui/skin_picker_screen.json", "type": "button", "extend": { "name": "premium_skin_button", "namespace": "skin_picker" } }, "skins_grid": { "file": "ui/skin_picker_screen.json", "type": "grid" }, "pack_name": { "file": "ui/skin_picker_screen.json", "type": "label" }, "pack_grid_item": { "file": "ui/skin_picker_screen.json", "type": "panel", "children": [ "header", "bg" ] }, "pack_grid_item/header": { "file": "ui/skin_picker_screen.json", "type": "stack_panel", "children": [ "padding", "pack_lock", "pack_name", "padding_2", "new_pack_icon", "padding_3" ] }, "pack_grid_item/header/padding": { "file": "ui/skin_picker_screen.json", "type": "panel" }, "pack_grid_item/header/pack_lock": { "file": "ui/skin_picker_screen.json", "type": "panel", "extend": { "name": "pack_lock", "namespace": "skin_picker" } }, "pack_grid_item/header/pack_name": { "file": "ui/skin_picker_screen.json", "type": "label", "extend": { "name": "pack_name", "namespace": "skin_picker" } }, "pack_grid_item/header/padding_2": { "file": "ui/skin_picker_screen.json", "type": "panel" }, "pack_grid_item/header/new_pack_icon": { "file": "ui/skin_picker_screen.json", "type": "panel", "extend": { "name": "new_pack_icon", "namespace": "skin_picker" } }, "pack_grid_item/header/padding_3": { "file": "ui/skin_picker_screen.json", "type": "panel" }, "pack_grid_item/bg": { "file": "ui/skin_picker_screen.json", "type": "image", "extend": { "name": "banner_fill", "namespace": "skin_picker" }, "children": [ "skin_input_panel", "expand_view_button", "progress_loading_no_connection", "progress_loading" ] }, "pack_grid_item/bg/skin_input_panel": { "file": "ui/skin_picker_screen.json", "type": "input_panel", "extend": { "name": "skin_input_panel", "namespace": "skin_picker" } }, "pack_grid_item/bg/expand_view_button": { "file": "ui/skin_picker_screen.json", "type": "button", "extend": { "name": "light_glyph_button", "namespace": "common_buttons" } }, "pack_grid_item/bg/progress_loading_no_connection": { "file": "ui/skin_picker_screen.json", "type": "panel", "extend": { "name": "progress_loading", "namespace": "common_store" } }, "pack_grid_item/bg/progress_loading": { "file": "ui/skin_picker_screen.json", "type": "panel", "extend": { "name": "progress_loading", "namespace": "common_store" } }, "premium_packs_grid": { "file": "ui/skin_picker_screen.json", "type": "grid" }, "standard_skin_button": { "file": "ui/skin_picker_screen.json", "type": "button", "extend": { "name": "skin_button", "namespace": "skin_picker" } }, "default_skins_grid_item": { "file": "ui/skin_picker_screen.json", "type": "panel", "children": [ "model", "button" ] }, "default_skins_grid_item/model": { "file": "ui/skin_picker_screen.json", "type": "custom", "extend": { "name": "skin_model", "namespace": "skin_picker" } }, "default_skins_grid_item/button": { "file": "ui/skin_picker_screen.json", "type": "button", "extend": { "name": "standard_skin_button", "namespace": "skin_picker" } }, "default_skins_grid": { "file": "ui/skin_picker_screen.json", "type": "grid" }, "recent_skins_grid_item": { "file": "ui/skin_picker_screen.json", "type": "panel", "children": [ "clip", "button" ] }, "recent_skins_grid_item/clip": { "file": "ui/skin_picker_screen.json", "type": "panel", "children": [ "model" ] }, "recent_skins_grid_item/clip/model": { "file": "ui/skin_picker_screen.json", "type": "custom", "extend": { "name": "skin_model", "namespace": "skin_picker" } }, "recent_skins_grid_item/button": { "file": "ui/skin_picker_screen.json", "type": "button", "extend": { "name": "standard_skin_button", "namespace": "skin_picker" } }, "recent_skins_grid": { "file": "ui/skin_picker_screen.json", "type": "grid" }, "standard_frame": { "file": "ui/skin_picker_screen.json", "type": "panel" }, "standard_header": { "file": "ui/skin_picker_screen.json", "type": "label", "extend": { "name": "label", "namespace": "skin_picker" } }, "standard_fill": { "file": "ui/skin_picker_screen.json", "type": "image", "extend": { "name": "banner_fill", "namespace": "skin_picker" } }, "standard_panel": { "file": "ui/skin_picker_screen.json", "type": "panel", "children": [ "default_skins", "recent_skins" ] }, "standard_panel/default_skins": { "file": "ui/skin_picker_screen.json", "type": "panel", "extend": { "name": "standard_frame", "namespace": "skin_picker" }, "children": [ "header", "fill" ] }, "standard_panel/default_skins/header": { "file": "ui/skin_picker_screen.json", "type": "label", "extend": { "name": "standard_header", "namespace": "skin_picker" } }, "standard_panel/default_skins/fill": { "file": "ui/skin_picker_screen.json", "type": "image", "extend": { "name": "standard_fill", "namespace": "skin_picker" }, "children": [ "default_skins_grid" ] }, "standard_panel/default_skins/fill/default_skins_grid": { "file": "ui/skin_picker_screen.json", "type": "grid", "extend": { "name": "default_skins_grid", "namespace": "skin_picker" } }, "standard_panel/recent_skins": { "file": "ui/skin_picker_screen.json", "type": "panel", "extend": { "name": "standard_frame", "namespace": "skin_picker" }, "children": [ "header", "fill" ] }, "standard_panel/recent_skins/header": { "file": "ui/skin_picker_screen.json", "type": "label", "extend": { "name": "standard_header", "namespace": "skin_picker" } }, "standard_panel/recent_skins/fill": { "file": "ui/skin_picker_screen.json", "type": "image", "extend": { "name": "standard_fill", "namespace": "skin_picker" }, "children": [ "recent_skins_grid", "recent_skins_loading_panel" ] }, "standard_panel/recent_skins/fill/recent_skins_grid": { "file": "ui/skin_picker_screen.json", "type": "grid", "extend": { "name": "recent_skins_grid", "namespace": "skin_picker" } }, "standard_panel/recent_skins/fill/recent_skins_loading_panel": { "file": "ui/skin_picker_screen.json", "type": "panel", "extend": { "name": "progress_loading", "namespace": "common_store" } }, "scrolling_content_stack": { "file": "ui/skin_picker_screen.json", "type": "stack_panel", "children": [ "standard_panel", "premium_packs_grid" ] }, "scrolling_content_stack/standard_panel": { "file": "ui/skin_picker_screen.json", "type": "panel", "extend": { "name": "standard_panel", "namespace": "skin_picker" } }, "scrolling_content_stack/premium_packs_grid": { "file": "ui/skin_picker_screen.json", "type": "grid", "extend": { "name": "premium_packs_grid", "namespace": "skin_picker" } }, "all_skins_content": { "file": "ui/skin_picker_screen.json", "type": "input_panel", "children": [ "scrolling_frame" ] }, "all_skins_content/scrolling_frame": { "file": "ui/skin_picker_screen.json", "type": "panel", "children": [ "change_skin_scroll", "progress_loading" ] }, "all_skins_content/scrolling_frame/change_skin_scroll": { "file": "ui/skin_picker_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "all_skins_content/scrolling_frame/progress_loading": { "file": "ui/skin_picker_screen.json", "type": "panel", "extend": { "name": "progress_loading", "namespace": "common_store" } }, "all_skins_frame": { "file": "ui/skin_picker_screen.json", "type": "panel", "children": [ "all_skins_content" ] }, "all_skins_frame/all_skins_content": { "file": "ui/skin_picker_screen.json", "type": "input_panel", "extend": { "name": "all_skins_content", "namespace": "skin_picker" } }, "title_bar": { "file": "ui/skin_picker_screen.json", "type": "stack_panel", "children": [ "padding_0", "fill_panel", "padding_1", "skin_name_holder", "padding_2" ] }, "title_bar/padding_0": { "file": "ui/skin_picker_screen.json", "type": "panel" }, "title_bar/fill_panel": { "file": "ui/skin_picker_screen.json", "type": "panel", "children": [ "title_holder" ] }, "title_bar/fill_panel/title_holder": { "file": "ui/skin_picker_screen.json", "type": "panel", "children": [ "change_skin_title" ] }, "title_bar/fill_panel/title_holder/change_skin_title": { "file": "ui/skin_picker_screen.json", "type": "label", "extend": { "name": "title_label", "namespace": "skin_picker" } }, "title_bar/padding_1": { "file": "ui/skin_picker_screen.json", "type": "panel" }, "title_bar/skin_name_holder": { "file": "ui/skin_picker_screen.json", "type": "panel", "children": [ "preview_skin_name" ] }, "title_bar/skin_name_holder/preview_skin_name": { "file": "ui/skin_picker_screen.json", "type": "label", "extend": { "name": "title_label", "namespace": "skin_picker" } }, "title_bar/padding_2": { "file": "ui/skin_picker_screen.json", "type": "panel" }, "popup_dialog_skin_model": { "file": "ui/skin_picker_screen.json", "type": "panel", "children": [ "paper_doll" ] }, "popup_dialog_skin_model/paper_doll": { "file": "ui/skin_picker_screen.json", "type": "custom" }, "popup_dialog_choose_skin_type_button": { "file": "ui/skin_picker_screen.json", "type": "button", "children": [ "hover", "pressed" ] }, "popup_dialog_choose_skin_type_button/hover": { "file": "ui/skin_picker_screen.json", "type": "image", "extend": { "name": "focus_border_white", "namespace": "common" } }, "popup_dialog_choose_skin_type_button/pressed": { "file": "ui/skin_picker_screen.json", "type": "image", "extend": { "name": "focus_border_white", "namespace": "common" } }, "popup_dialog_choose_skin_type_panel": { "file": "ui/skin_picker_screen.json", "type": "panel", "children": [ "model", "button_highlight" ] }, "popup_dialog_choose_skin_type_panel/model": { "file": "ui/skin_picker_screen.json", "type": "panel", "extend": { "name": "popup_dialog_skin_model", "namespace": "skin_picker" } }, "popup_dialog_choose_skin_type_panel/button_highlight": { "file": "ui/skin_picker_screen.json", "type": "button", "extend": { "name": "popup_dialog_choose_skin_type_button", "namespace": "skin_picker" } }, "popup_dialog__invalid_custom_skin": { "file": "ui/skin_picker_screen.json", "type": "input_panel", "extend": { "name": "popup_dialog", "namespace": "popup_dialog" }, "children": [ "popup_dialog_bg", "popup_dialog_message", "popup_dialog_middle_button" ] }, "popup_dialog__invalid_custom_skin/popup_dialog_bg": { "file": "ui/skin_picker_screen.json", "type": "image", "extend": { "name": "popup_dialog_bg", "namespace": "popup_dialog" } }, "popup_dialog__invalid_custom_skin/popup_dialog_message": { "file": "ui/skin_picker_screen.json", "type": "label", "extend": { "name": "popup_dialog_message", "namespace": "popup_dialog" } }, "popup_dialog__invalid_custom_skin/popup_dialog_middle_button": { "file": "ui/skin_picker_screen.json", "type": "button", "extend": { "name": "popup_dialog_middle_button", "namespace": "popup_dialog" } }, "popup_dialog__upsell_without_store": { "file": "ui/skin_picker_screen.json", "type": "input_panel", "extend": { "name": "popup_dialog__invalid_custom_skin", "namespace": "skin_picker" } }, "popup_dialog__choose_skin_type": { "file": "ui/skin_picker_screen.json", "type": "input_panel", "extend": { "name": "popup_dialog", "namespace": "popup_dialog" }, "children": [ "popup_dialog_bg", "popup_dialog_message", "left", "right" ] }, "popup_dialog__choose_skin_type/popup_dialog_bg": { "file": "ui/skin_picker_screen.json", "type": "image", "extend": { "name": "popup_dialog_bg", "namespace": "popup_dialog" } }, "popup_dialog__choose_skin_type/popup_dialog_message": { "file": "ui/skin_picker_screen.json", "type": "label", "extend": { "name": "popup_dialog_message", "namespace": "popup_dialog" } }, "popup_dialog__choose_skin_type/left": { "file": "ui/skin_picker_screen.json", "type": "panel", "extend": { "name": "popup_dialog_choose_skin_type_panel", "namespace": "skin_picker" } }, "popup_dialog__choose_skin_type/right": { "file": "ui/skin_picker_screen.json", "type": "panel", "extend": { "name": "popup_dialog_choose_skin_type_panel", "namespace": "skin_picker" } }, "content": { "file": "ui/skin_picker_screen.json", "type": "panel", "children": [ "title", "selector_area", "content_area", "section_divider" ] }, "content/title": { "file": "ui/skin_picker_screen.json", "type": "stack_panel", "extend": { "name": "title_bar", "namespace": "skin_picker" } }, "content/selector_area": { "file": "ui/skin_picker_screen.json", "type": "input_panel", "extend": { "name": "selector_area", "namespace": "skin_picker" } }, "content/content_area": { "file": "ui/skin_picker_screen.json", "type": "input_panel", "extend": { "name": "content_area", "namespace": "skin_picker" } }, "content/section_divider": { "file": "ui/skin_picker_screen.json", "type": "image", "extend": { "name": "section_divider", "namespace": "skin_picker" } }, "skin_picker_screen": { "file": "ui/skin_picker_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "skin_picker_screen_content": { "file": "ui/skin_picker_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" }, "children": [ "bg", "container", "popup_dialog_factory" ] }, "skin_picker_screen_content/bg": { "file": "ui/skin_picker_screen.json", "type": "stack_panel", "extend": { "name": "fullscreen_header", "namespace": "common" } }, "skin_picker_screen_content/container": { "file": "ui/skin_picker_screen.json", "type": "panel", "children": [ "content" ] }, "skin_picker_screen_content/container/content": { "file": "ui/skin_picker_screen.json", "type": "panel", "extend": { "name": "content", "namespace": "skin_picker" } }, "skin_picker_screen_content/popup_dialog_factory": { "file": "ui/skin_picker_screen.json", "type": "factory" }, "scrollable_selector_area_content": { "file": "ui/skin_picker_screen.json", "type": "panel" }, "selector_area": { "file": "ui/skin_picker_screen.json", "type": "input_panel", "extend": { "name": "modal_area_panel_base", "namespace": "common" }, "children": [ "all_skins", "inactive_modal_pane_fade" ] }, "selector_area/all_skins": { "file": "ui/skin_picker_screen.json", "type": "panel", "extend": { "name": "all_skins_frame", "namespace": "skin_picker" } }, "selector_area/inactive_modal_pane_fade": { "file": "ui/skin_picker_screen.json", "type": "image", "extend": { "name": "inactive_modal_pane_fade", "namespace": "common" } }, "content_area": { "file": "ui/skin_picker_screen.json", "type": "input_panel", "extend": { "name": "modal_area_panel_base", "namespace": "common" }, "children": [ "preview_skin", "inactive_modal_pane_fade" ] }, "content_area/preview_skin": { "file": "ui/skin_picker_screen.json", "type": "panel", "extend": { "name": "preview_skin_panel", "namespace": "skin_picker" } }, "content_area/inactive_modal_pane_fade": { "file": "ui/skin_picker_screen.json", "type": "image", "extend": { "name": "inactive_modal_pane_fade", "namespace": "common" } }, "section_divider": { "file": "ui/skin_picker_screen.json", "type": "image" } }, "smithing_table": { "smithing_image": { "file": "ui/smithing_table_screen.json", "type": "image" }, "ingot_image": { "file": "ui/smithing_table_screen.json", "type": "image", "extend": { "name": "smithing_image", "namespace": "smithing_table" } }, "smithing_icon": { "file": "ui/smithing_table_screen.json", "type": "image" }, "upgrade_label": { "file": "ui/smithing_table_screen.json", "type": "label" }, "icon_and_text_panel": { "file": "ui/smithing_table_screen.json", "type": "panel", "children": [ "smithing_icon_panel", "upgrade_label" ] }, "icon_and_text_panel/smithing_icon_panel": { "file": "ui/smithing_table_screen.json", "type": "panel", "extend": { "name": "smithing_icon_panel", "namespace": "smithing_table" } }, "icon_and_text_panel/upgrade_label": { "file": "ui/smithing_table_screen.json", "type": "label", "extend": { "name": "upgrade_label", "namespace": "smithing_table" } }, "smithing_icon_panel": { "file": "ui/smithing_table_screen.json", "type": "panel", "children": [ "smithing_icon" ] }, "smithing_icon_panel/smithing_icon": { "file": "ui/smithing_table_screen.json", "type": "image", "extend": { "name": "smithing_icon", "namespace": "smithing_table" } }, "plus_sign_icon": { "file": "ui/smithing_table_screen.json", "type": "image" }, "arrow_icon": { "file": "ui/smithing_table_screen.json", "type": "image" }, "cross_out_icon": { "file": "ui/smithing_table_screen.json", "type": "image" }, "smithing_table_output_slot_button": { "file": "ui/smithing_table_screen.json", "type": "button", "extend": { "name": "container_slot_button_prototype", "namespace": "common" } }, "smithing_table_item_slot": { "file": "ui/smithing_table_screen.json", "type": "panel", "children": [ "container_item" ] }, "smithing_table_item_slot/container_item": { "file": "ui/smithing_table_screen.json", "type": "input_panel", "extend": { "name": "container_item", "namespace": "common" } }, "recipe_grid": { "file": "ui/smithing_table_screen.json", "type": "grid", "children": [ "input_item_slot", "plus", "material_item_slot", "yields", "result_item_slot" ] }, "recipe_grid/input_item_slot": { "file": "ui/smithing_table_screen.json", "type": "panel", "extend": { "name": "smithing_table_item_slot", "namespace": "smithing_table" } }, "recipe_grid/plus": { "file": "ui/smithing_table_screen.json", "type": "panel", "children": [ "plus_sign_icon" ] }, "recipe_grid/plus/plus_sign_icon": { "file": "ui/smithing_table_screen.json", "type": "image", "extend": { "name": "plus_sign_icon", "namespace": "smithing_table" } }, "recipe_grid/material_item_slot": { "file": "ui/smithing_table_screen.json", "type": "panel", "extend": { "name": "smithing_table_item_slot", "namespace": "smithing_table" } }, "recipe_grid/yields": { "file": "ui/smithing_table_screen.json", "type": "panel", "children": [ "arrow_icon", "cross_out_icon" ] }, "recipe_grid/yields/arrow_icon": { "file": "ui/smithing_table_screen.json", "type": "image", "extend": { "name": "arrow_icon", "namespace": "smithing_table" } }, "recipe_grid/yields/cross_out_icon": { "file": "ui/smithing_table_screen.json", "type": "image", "extend": { "name": "cross_out_icon", "namespace": "smithing_table" } }, "recipe_grid/result_item_slot": { "file": "ui/smithing_table_screen.json", "type": "panel", "extend": { "name": "smithing_table_item_slot", "namespace": "smithing_table" } }, "recipe_panel": { "file": "ui/smithing_table_screen.json", "type": "panel", "children": [ "recipe_grid" ] }, "recipe_panel/recipe_grid": { "file": "ui/smithing_table_screen.json", "type": "grid", "extend": { "name": "recipe_grid", "namespace": "smithing_table" } }, "top_half_panel": { "file": "ui/smithing_table_screen.json", "type": "panel", "children": [ "icon_and_text_panel", "recipe_panel" ] }, "top_half_panel/icon_and_text_panel": { "file": "ui/smithing_table_screen.json", "type": "panel", "extend": { "name": "icon_and_text_panel", "namespace": "smithing_table" } }, "top_half_panel/recipe_panel": { "file": "ui/smithing_table_screen.json", "type": "panel", "extend": { "name": "recipe_panel", "namespace": "smithing_table" } }, "smithing_table_panel": { "file": "ui/smithing_table_screen.json", "type": "panel", "children": [ "container_gamepad_helpers", "selected_item_details_factory", "item_lock_notification_factory", "root_panel", "flying_item_renderer" ] }, "smithing_table_panel/container_gamepad_helpers": { "file": "ui/smithing_table_screen.json", "type": "stack_panel", "extend": { "name": "container_gamepad_helpers", "namespace": "common" } }, "smithing_table_panel/selected_item_details_factory": { "file": "ui/smithing_table_screen.json", "type": "factory", "extend": { "name": "selected_item_details_factory", "namespace": "common" } }, "smithing_table_panel/item_lock_notification_factory": { "file": "ui/smithing_table_screen.json", "type": "factory", "extend": { "name": "item_lock_notification_factory", "namespace": "common" } }, "smithing_table_panel/root_panel": { "file": "ui/smithing_table_screen.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "common_panel", "smithing_table_screen_inventory", "inventory_selected_icon_button", "gamepad_cursor" ] }, "smithing_table_panel/root_panel/common_panel": { "file": "ui/smithing_table_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "smithing_table_panel/root_panel/smithing_table_screen_inventory": { "file": "ui/smithing_table_screen.json", "type": "panel", "children": [ "top_half_panel", "inventory_panel_bottom_half_with_label", "hotbar_grid", "inventory_take_progress_icon_button" ] }, "smithing_table_panel/root_panel/smithing_table_screen_inventory/top_half_panel": { "file": "ui/smithing_table_screen.json", "type": "panel", "extend": { "name": "top_half_panel", "namespace": "smithing_table" } }, "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_panel_bottom_half_with_label": { "file": "ui/smithing_table_screen.json", "type": "panel", "extend": { "name": "inventory_panel_bottom_half_with_label", "namespace": "common" } }, "smithing_table_panel/root_panel/smithing_table_screen_inventory/hotbar_grid": { "file": "ui/smithing_table_screen.json", "type": "grid", "extend": { "name": "hotbar_grid_template", "namespace": "common" } }, "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_take_progress_icon_button": { "file": "ui/smithing_table_screen.json", "type": "button", "extend": { "name": "inventory_take_progress_icon_button", "namespace": "common" } }, "smithing_table_panel/root_panel/inventory_selected_icon_button": { "file": "ui/smithing_table_screen.json", "type": "button", "extend": { "name": "inventory_selected_icon_button", "namespace": "common" } }, "smithing_table_panel/root_panel/gamepad_cursor": { "file": "ui/smithing_table_screen.json", "type": "button", "extend": { "name": "gamepad_cursor_button", "namespace": "common" } }, "smithing_table_panel/flying_item_renderer": { "file": "ui/smithing_table_screen.json", "type": "custom", "extend": { "name": "flying_item_renderer", "namespace": "common" } }, "smithing_table_screen": { "file": "ui/smithing_table_screen.json", "type": "screen", "extend": { "name": "inventory_screen_common", "namespace": "common" } } }, "smithing_table_2": { "smithing_icon": { "file": "ui/smithing_table_2_screen.json", "type": "image" }, "upgrade_label": { "file": "ui/smithing_table_2_screen.json", "type": "label" }, "icon_and_text_panel": { "file": "ui/smithing_table_2_screen.json", "type": "panel", "children": [ "smithing_icon_panel", "upgrade_label" ] }, "icon_and_text_panel/smithing_icon_panel": { "file": "ui/smithing_table_2_screen.json", "type": "panel", "extend": { "name": "smithing_icon_panel", "namespace": "smithing_table_2" } }, "icon_and_text_panel/upgrade_label": { "file": "ui/smithing_table_2_screen.json", "type": "label", "extend": { "name": "upgrade_label", "namespace": "smithing_table_2" } }, "smithing_icon_panel": { "file": "ui/smithing_table_2_screen.json", "type": "panel", "children": [ "smithing_icon" ] }, "smithing_icon_panel/smithing_icon": { "file": "ui/smithing_table_2_screen.json", "type": "image", "extend": { "name": "smithing_icon", "namespace": "smithing_table_2" } }, "smithing_image": { "file": "ui/smithing_table_2_screen.json", "type": "image" }, "smithing_material_image_ingot": { "file": "ui/smithing_table_2_screen.json", "type": "image", "extend": { "name": "smithing_image", "namespace": "smithing_table_2" } }, "arrow_icon": { "file": "ui/smithing_table_2_screen.json", "type": "image" }, "cross_out_icon_image": { "file": "ui/smithing_table_2_screen.json", "type": "image" }, "cross_out_icon_button": { "file": "ui/smithing_table_2_screen.json", "type": "button", "children": [ "default", "hover" ] }, "cross_out_icon_button/default": { "file": "ui/smithing_table_2_screen.json", "type": "image", "extend": { "name": "cross_out_icon_image", "namespace": "smithing_table_2" } }, "cross_out_icon_button/hover": { "file": "ui/smithing_table_2_screen.json", "type": "custom", "extend": { "name": "hover_text", "namespace": "common" } }, "smithing_input_image_templates": { "file": "ui/smithing_table_2_screen.json", "type": "image", "extend": { "name": "smithing_image", "namespace": "smithing_table_2" } }, "smithing_input_image_armors": { "file": "ui/smithing_table_2_screen.json", "type": "image", "extend": { "name": "smithing_image", "namespace": "smithing_table_2" } }, "smithing_input_image_armors_and_tools": { "file": "ui/smithing_table_2_screen.json", "type": "image", "extend": { "name": "smithing_image", "namespace": "smithing_table_2" } }, "smithing_material_image_all": { "file": "ui/smithing_table_2_screen.json", "type": "image", "extend": { "name": "smithing_image", "namespace": "smithing_table_2" } }, "template_overlay_image": { "file": "ui/smithing_table_2_screen.json", "type": "panel", "children": [ "templates" ] }, "template_overlay_image/templates": { "file": "ui/smithing_table_2_screen.json", "type": "image", "extend": { "name": "smithing_input_image_templates", "namespace": "smithing_table_2" } }, "input_overlay_image": { "file": "ui/smithing_table_2_screen.json", "type": "panel", "children": [ "armors_and_tools", "armors" ] }, "input_overlay_image/armors_and_tools": { "file": "ui/smithing_table_2_screen.json", "type": "image", "extend": { "name": "smithing_input_image_armors_and_tools", "namespace": "smithing_table_2" } }, "input_overlay_image/armors": { "file": "ui/smithing_table_2_screen.json", "type": "image", "extend": { "name": "smithing_input_image_armors", "namespace": "smithing_table_2" } }, "material_overlay_image": { "file": "ui/smithing_table_2_screen.json", "type": "panel", "children": [ "all_materials", "ingot" ] }, "material_overlay_image/all_materials": { "file": "ui/smithing_table_2_screen.json", "type": "image", "extend": { "name": "smithing_material_image_all", "namespace": "smithing_table_2" } }, "material_overlay_image/ingot": { "file": "ui/smithing_table_2_screen.json", "type": "image", "extend": { "name": "smithing_material_image_ingot", "namespace": "smithing_table_2" } }, "smithing_table_output_slot_button": { "file": "ui/smithing_table_2_screen.json", "type": "button", "extend": { "name": "container_slot_button_prototype", "namespace": "common" } }, "smithing_table_item_slot": { "file": "ui/smithing_table_2_screen.json", "type": "panel", "children": [ "container_item" ] }, "smithing_table_item_slot/container_item": { "file": "ui/smithing_table_2_screen.json", "type": "input_panel", "extend": { "name": "container_item", "namespace": "common" } }, "recipe_grid": { "file": "ui/smithing_table_2_screen.json", "type": "grid", "children": [ "template_item_slot", "input_item_slot", "material_item_slot", "yields", "result_item_slot", "result_item_preview" ] }, "recipe_grid/template_item_slot": { "file": "ui/smithing_table_2_screen.json", "type": "panel", "extend": { "name": "smithing_table_item_slot", "namespace": "smithing_table_2" } }, "recipe_grid/input_item_slot": { "file": "ui/smithing_table_2_screen.json", "type": "panel", "extend": { "name": "smithing_table_item_slot", "namespace": "smithing_table_2" } }, "recipe_grid/material_item_slot": { "file": "ui/smithing_table_2_screen.json", "type": "panel", "extend": { "name": "smithing_table_item_slot", "namespace": "smithing_table_2" } }, "recipe_grid/yields": { "file": "ui/smithing_table_2_screen.json", "type": "panel", "children": [ "arrow_icon", "cross_out_icon" ] }, "recipe_grid/yields/arrow_icon": { "file": "ui/smithing_table_2_screen.json", "type": "image", "extend": { "name": "arrow_icon", "namespace": "smithing_table_2" } }, "recipe_grid/yields/cross_out_icon": { "file": "ui/smithing_table_2_screen.json", "type": "button", "extend": { "name": "cross_out_icon_button", "namespace": "smithing_table_2" } }, "recipe_grid/result_item_slot": { "file": "ui/smithing_table_2_screen.json", "type": "panel", "extend": { "name": "smithing_table_item_slot", "namespace": "smithing_table_2" } }, "recipe_grid/result_item_preview": { "file": "ui/smithing_table_2_screen.json", "type": "panel", "extend": { "name": "result_item_preview", "namespace": "smithing_table_2" } }, "recipe_panel": { "file": "ui/smithing_table_2_screen.json", "type": "panel", "children": [ "recipe_grid" ] }, "recipe_panel/recipe_grid": { "file": "ui/smithing_table_2_screen.json", "type": "grid", "extend": { "name": "recipe_grid", "namespace": "smithing_table_2" } }, "result_item_preview": { "file": "ui/smithing_table_2_screen.json", "type": "panel", "children": [ "inner" ] }, "result_item_preview/inner": { "file": "ui/smithing_table_2_screen.json", "type": "panel", "extend": { "name": "result_item_preview_inner", "namespace": "smithing_table_2" } }, "result_item_preview_inner": { "file": "ui/smithing_table_2_screen.json", "type": "panel", "children": [ "smithing_preview_renderer" ] }, "result_item_preview_inner/smithing_preview_renderer": { "file": "ui/smithing_table_2_screen.json", "type": "custom" }, "toolbar_background": { "file": "ui/smithing_table_2_screen.json", "type": "image" }, "help_button": { "file": "ui/smithing_table_2_screen.json", "type": "button", "extend": { "name": "help_button", "namespace": "common" } }, "toolbar_panel": { "file": "ui/smithing_table_2_screen.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "toolbar_background" ] }, "toolbar_panel/toolbar_background": { "file": "ui/smithing_table_2_screen.json", "type": "image", "extend": { "name": "toolbar_background", "namespace": "loom" }, "children": [ "toolbar_stack_panel" ] }, "toolbar_panel/toolbar_background/toolbar_stack_panel": { "file": "ui/smithing_table_2_screen.json", "type": "stack_panel", "children": [ "padding_1", "help_button_panel", "close_button_panel", "padding_2" ] }, "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": { "file": "ui/smithing_table_2_screen.json", "type": "panel" }, "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel": { "file": "ui/smithing_table_2_screen.json", "type": "panel", "children": [ "help_button" ] }, "toolbar_panel/toolbar_background/toolbar_stack_panel/help_button_panel/help_button": { "file": "ui/smithing_table_2_screen.json", "type": "button", "extend": { "name": "help_button", "namespace": "loom" } }, "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": { "file": "ui/smithing_table_2_screen.json", "type": "panel", "children": [ "close_button" ] }, "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": { "file": "ui/smithing_table_2_screen.json", "type": "button", "extend": { "name": "light_close_button", "namespace": "common" } }, "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": { "file": "ui/smithing_table_2_screen.json", "type": "panel" }, "toolbar_anchor": { "file": "ui/smithing_table_2_screen.json", "type": "panel", "children": [ "toolbar_panel" ] }, "toolbar_anchor/toolbar_panel": { "file": "ui/smithing_table_2_screen.json", "type": "input_panel", "extend": { "name": "toolbar_panel", "namespace": "smithing_table_2" } }, "top_half_panel": { "file": "ui/smithing_table_2_screen.json", "type": "panel", "children": [ "icon_and_text_panel", "recipe_panel" ] }, "top_half_panel/icon_and_text_panel": { "file": "ui/smithing_table_2_screen.json", "type": "panel", "extend": { "name": "icon_and_text_panel", "namespace": "smithing_table_2" } }, "top_half_panel/recipe_panel": { "file": "ui/smithing_table_2_screen.json", "type": "panel", "extend": { "name": "recipe_panel", "namespace": "smithing_table_2" } }, "smithing_table_panel": { "file": "ui/smithing_table_2_screen.json", "type": "panel", "children": [ "container_gamepad_helpers", "selected_item_details_factory", "item_lock_notification_factory", "root_panel", "flying_item_renderer" ] }, "smithing_table_panel/container_gamepad_helpers": { "file": "ui/smithing_table_2_screen.json", "type": "stack_panel", "extend": { "name": "container_gamepad_helpers", "namespace": "common" } }, "smithing_table_panel/selected_item_details_factory": { "file": "ui/smithing_table_2_screen.json", "type": "factory", "extend": { "name": "selected_item_details_factory", "namespace": "common" } }, "smithing_table_panel/item_lock_notification_factory": { "file": "ui/smithing_table_2_screen.json", "type": "factory", "extend": { "name": "item_lock_notification_factory", "namespace": "common" } }, "smithing_table_panel/root_panel": { "file": "ui/smithing_table_2_screen.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "common_panel", "smithing_table_screen_inventory", "inventory_selected_icon_button", "toolbar_anchor", "gamepad_cursor" ] }, "smithing_table_panel/root_panel/common_panel": { "file": "ui/smithing_table_2_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "smithing_table_panel/root_panel/smithing_table_screen_inventory": { "file": "ui/smithing_table_2_screen.json", "type": "panel", "children": [ "top_half_panel", "inventory_panel_bottom_half_with_label", "hotbar_grid", "inventory_take_progress_icon_button" ] }, "smithing_table_panel/root_panel/smithing_table_screen_inventory/top_half_panel": { "file": "ui/smithing_table_2_screen.json", "type": "panel", "extend": { "name": "top_half_panel", "namespace": "smithing_table_2" } }, "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_panel_bottom_half_with_label": { "file": "ui/smithing_table_2_screen.json", "type": "panel", "extend": { "name": "inventory_panel_bottom_half_with_label", "namespace": "common" } }, "smithing_table_panel/root_panel/smithing_table_screen_inventory/hotbar_grid": { "file": "ui/smithing_table_2_screen.json", "type": "grid", "extend": { "name": "hotbar_grid_template", "namespace": "common" } }, "smithing_table_panel/root_panel/smithing_table_screen_inventory/inventory_take_progress_icon_button": { "file": "ui/smithing_table_2_screen.json", "type": "button", "extend": { "name": "inventory_take_progress_icon_button", "namespace": "common" } }, "smithing_table_panel/root_panel/inventory_selected_icon_button": { "file": "ui/smithing_table_2_screen.json", "type": "button", "extend": { "name": "inventory_selected_icon_button", "namespace": "common" } }, "smithing_table_panel/root_panel/toolbar_anchor": { "file": "ui/smithing_table_2_screen.json", "type": "panel", "extend": { "name": "toolbar_anchor", "namespace": "smithing_table_2" } }, "smithing_table_panel/root_panel/gamepad_cursor": { "file": "ui/smithing_table_2_screen.json", "type": "button", "extend": { "name": "gamepad_cursor_button", "namespace": "common" } }, "smithing_table_panel/flying_item_renderer": { "file": "ui/smithing_table_2_screen.json", "type": "custom", "extend": { "name": "flying_item_renderer", "namespace": "common" } } }, "smithing_table_pocket": { "ingot_image": { "file": "ui/smithing_table_screen_pocket.json", "type": "image", "extend": { "name": "smithing_image", "namespace": "smithing_table" } }, "background_image": { "file": "ui/smithing_table_screen_pocket.json", "type": "image" }, "arrow_icon": { "file": "ui/smithing_table_screen_pocket.json", "type": "image" }, "smithing_icon": { "file": "ui/smithing_table_screen_pocket.json", "type": "image" }, "upgrade_label": { "file": "ui/smithing_table_screen_pocket.json", "type": "label" }, "smithing_icon_panel": { "file": "ui/smithing_table_screen_pocket.json", "type": "panel", "children": [ "smithing_icon" ] }, "smithing_icon_panel/smithing_icon": { "file": "ui/smithing_table_screen_pocket.json", "type": "image", "extend": { "name": "smithing_icon", "namespace": "smithing_table_pocket" } }, "smithing_table_title_and_text_panel": { "file": "ui/smithing_table_screen_pocket.json", "type": "panel", "children": [ "smithing_icon_panel", "upgrade_label" ] }, "smithing_table_title_and_text_panel/smithing_icon_panel": { "file": "ui/smithing_table_screen_pocket.json", "type": "panel", "extend": { "name": "smithing_icon_panel", "namespace": "smithing_table_pocket" } }, "smithing_table_title_and_text_panel/upgrade_label": { "file": "ui/smithing_table_screen_pocket.json", "type": "label", "extend": { "name": "upgrade_label", "namespace": "smithing_table_pocket" } }, "slots_panel": { "file": "ui/smithing_table_screen_pocket.json", "type": "panel", "children": [ "input_slot", "material_slot", "result_slot", "plus_sign", "arrow" ] }, "slots_panel/input_slot": { "file": "ui/smithing_table_screen_pocket.json", "type": "input_panel", "extend": { "name": "pocket_ui_large_container_item", "namespace": "common" } }, "slots_panel/material_slot": { "file": "ui/smithing_table_screen_pocket.json", "type": "input_panel", "extend": { "name": "pocket_ui_large_container_item", "namespace": "common" } }, "slots_panel/result_slot": { "file": "ui/smithing_table_screen_pocket.json", "type": "input_panel", "extend": { "name": "pocket_ui_large_container_item", "namespace": "common" } }, "slots_panel/plus_sign": { "file": "ui/smithing_table_screen_pocket.json", "type": "label", "extend": { "name": "upgrade_label", "namespace": "smithing_table_pocket" } }, "slots_panel/arrow": { "file": "ui/smithing_table_screen_pocket.json", "type": "image", "children": [ "cross_out" ] }, "slots_panel/arrow/cross_out": { "file": "ui/smithing_table_screen_pocket.json", "type": "image" }, "smithing_table_contents_panel": { "file": "ui/smithing_table_screen_pocket.json", "type": "stack_panel", "children": [ "smithing_table_title_and_text_panel", "slots_panel" ] }, "smithing_table_contents_panel/smithing_table_title_and_text_panel": { "file": "ui/smithing_table_screen_pocket.json", "type": "panel", "extend": { "name": "smithing_table_title_and_text_panel", "namespace": "smithing_table_pocket" } }, "smithing_table_contents_panel/slots_panel": { "file": "ui/smithing_table_screen_pocket.json", "type": "panel", "extend": { "name": "slots_panel", "namespace": "smithing_table_pocket" } }, "inventory_grid": { "file": "ui/smithing_table_screen_pocket.json", "type": "grid" }, "inventory_content": { "file": "ui/smithing_table_screen_pocket.json", "type": "panel", "children": [ "scrolling_panel" ] }, "inventory_content/scrolling_panel": { "file": "ui/smithing_table_screen_pocket.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "inventory_and_smithing_table_panel": { "file": "ui/smithing_table_screen_pocket.json", "type": "panel", "children": [ "inventory_half_screen", "smithing_half_screen" ] }, "inventory_and_smithing_table_panel/inventory_half_screen": { "file": "ui/smithing_table_screen_pocket.json", "type": "panel", "children": [ "inventory_content" ] }, "inventory_and_smithing_table_panel/inventory_half_screen/inventory_content": { "file": "ui/smithing_table_screen_pocket.json", "type": "panel", "extend": { "name": "inventory_content", "namespace": "smithing_table_pocket" } }, "inventory_and_smithing_table_panel/smithing_half_screen": { "file": "ui/smithing_table_screen_pocket.json", "type": "panel", "children": [ "smithing_table_content" ] }, "inventory_and_smithing_table_panel/smithing_half_screen/smithing_table_content": { "file": "ui/smithing_table_screen_pocket.json", "type": "stack_panel", "extend": { "name": "smithing_table_contents_panel", "namespace": "smithing_table_pocket" } }, "header": { "file": "ui/smithing_table_screen_pocket.json", "type": "panel", "children": [ "header_background", "close_button", "panel" ] }, "header/header_background": { "file": "ui/smithing_table_screen_pocket.json", "type": "image" }, "header/close_button": { "file": "ui/smithing_table_screen_pocket.json", "type": "button", "extend": { "name": "legacy_pocket_close_button", "namespace": "common" } }, "header/panel": { "file": "ui/smithing_table_screen_pocket.json", "type": "panel", "children": [ "title_label" ] }, "header/panel/title_label": { "file": "ui/smithing_table_screen_pocket.json", "type": "label", "extend": { "name": "upgrade_label", "namespace": "smithing_table_pocket" } }, "header_and_content_stack_panel": { "file": "ui/smithing_table_screen_pocket.json", "type": "stack_panel", "children": [ "header", "inventory_and_smithing_table_panel" ] }, "header_and_content_stack_panel/header": { "file": "ui/smithing_table_screen_pocket.json", "type": "panel", "extend": { "name": "header", "namespace": "smithing_table_pocket" } }, "header_and_content_stack_panel/inventory_and_smithing_table_panel": { "file": "ui/smithing_table_screen_pocket.json", "type": "panel", "extend": { "name": "inventory_and_smithing_table_panel", "namespace": "smithing_table_pocket" } }, "smithing_table_panel": { "file": "ui/smithing_table_screen_pocket.json", "type": "panel", "children": [ "bg", "root_panel", "header_and_content_stack_panel", "container_gamepad_helpers", "inventory_selected_icon_button", "hold_icon", "selected_item_details_factory", "item_lock_notification_factory", "flying_item_renderer" ] }, "smithing_table_panel/bg": { "file": "ui/smithing_table_screen_pocket.json", "type": "image", "extend": { "name": "background_image", "namespace": "smithing_table_pocket" } }, "smithing_table_panel/root_panel": { "file": "ui/smithing_table_screen_pocket.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" } }, "smithing_table_panel/header_and_content_stack_panel": { "file": "ui/smithing_table_screen_pocket.json", "type": "stack_panel", "extend": { "name": "header_and_content_stack_panel", "namespace": "smithing_table_pocket" } }, "smithing_table_panel/container_gamepad_helpers": { "file": "ui/smithing_table_screen_pocket.json", "type": "stack_panel", "extend": { "name": "container_gamepad_helpers", "namespace": "common" } }, "smithing_table_panel/inventory_selected_icon_button": { "file": "ui/smithing_table_screen_pocket.json", "type": "button", "extend": { "name": "inventory_selected_icon_button", "namespace": "common" } }, "smithing_table_panel/hold_icon": { "file": "ui/smithing_table_screen_pocket.json", "type": "button", "extend": { "name": "inventory_take_progress_icon_button", "namespace": "common" } }, "smithing_table_panel/selected_item_details_factory": { "file": "ui/smithing_table_screen_pocket.json", "type": "factory", "extend": { "name": "selected_item_details_factory", "namespace": "common" } }, "smithing_table_panel/item_lock_notification_factory": { "file": "ui/smithing_table_screen_pocket.json", "type": "factory", "extend": { "name": "item_lock_notification_factory", "namespace": "common" } }, "smithing_table_panel/flying_item_renderer": { "file": "ui/smithing_table_screen_pocket.json", "type": "custom", "extend": { "name": "flying_item_renderer", "namespace": "common" } } }, "smithing_table_2_pocket": { "smithing_table_item_renderer": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "custom" }, "smithing_image": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "image" }, "smithing_material_image_ingot": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "image", "extend": { "name": "smithing_image", "namespace": "smithing_table_2_pocket" } }, "background_image": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "image" }, "smithing_input_image_templates": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "image", "extend": { "name": "smithing_image", "namespace": "smithing_table_2_pocket" } }, "smithing_material_image_all": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "image", "extend": { "name": "smithing_image", "namespace": "smithing_table_2_pocket" } }, "smithing_input_image_armors": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "image", "extend": { "name": "smithing_image", "namespace": "smithing_table_2_pocket" } }, "smithing_input_image_armors_and_tools": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "image", "extend": { "name": "smithing_image", "namespace": "smithing_table_2_pocket" } }, "template_overlay_image": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "panel", "children": [ "templates" ] }, "template_overlay_image/templates": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "image", "extend": { "name": "smithing_input_image_templates", "namespace": "smithing_table_2_pocket" } }, "input_overlay_image": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "panel", "children": [ "armors_and_tools", "armors" ] }, "input_overlay_image/armors_and_tools": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "image", "extend": { "name": "smithing_input_image_armors_and_tools", "namespace": "smithing_table_2_pocket" } }, "input_overlay_image/armors": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "image", "extend": { "name": "smithing_input_image_armors", "namespace": "smithing_table_2_pocket" } }, "material_overlay_image": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "panel", "children": [ "ingot", "all_materials" ] }, "material_overlay_image/ingot": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "image", "extend": { "name": "smithing_material_image_ingot", "namespace": "smithing_table_2_pocket" } }, "material_overlay_image/all_materials": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "image", "extend": { "name": "smithing_material_image_all", "namespace": "smithing_table_2_pocket" } }, "arrow_icon": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "image" }, "smithing_icon": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "image" }, "upgrade_label": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "label" }, "slot_grid_item": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "panel", "children": [ "slot" ] }, "slot_grid_item/slot": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "input_panel", "extend": { "name": "pocket_ui_container_item", "namespace": "common" } }, "template_slot": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "panel", "extend": { "name": "slot_grid_item", "namespace": "smithing_table_2_pocket" } }, "input_slot": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "panel", "extend": { "name": "slot_grid_item", "namespace": "smithing_table_2_pocket" } }, "material_slot": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "panel", "extend": { "name": "slot_grid_item", "namespace": "smithing_table_2_pocket" } }, "inputs_stack": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "stack_panel", "children": [ "template_slot", "padding1", "input_slot", "padding2", "material_slot" ] }, "inputs_stack/template_slot": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "panel", "extend": { "name": "template_slot", "namespace": "smithing_table_2_pocket" } }, "inputs_stack/padding1": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "panel" }, "inputs_stack/input_slot": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "panel", "extend": { "name": "input_slot", "namespace": "smithing_table_2_pocket" } }, "inputs_stack/padding2": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "panel" }, "inputs_stack/material_slot": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "panel", "extend": { "name": "material_slot", "namespace": "smithing_table_2_pocket" } }, "inputs_panel": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "panel", "children": [ "inputs_stack" ] }, "inputs_panel/inputs_stack": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "stack_panel", "extend": { "name": "inputs_stack", "namespace": "smithing_table_2_pocket" } }, "result_slot": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "panel", "extend": { "name": "slot_grid_item", "namespace": "smithing_table_2_pocket" } }, "cross_out_image": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "image" }, "cross_out_icon": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "button", "children": [ "default", "hover" ] }, "cross_out_icon/default": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "image", "extend": { "name": "cross_out_image", "namespace": "smithing_table_2_pocket" } }, "cross_out_icon/hover": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "custom", "extend": { "name": "hover_text", "namespace": "common" } }, "crafting_arrow": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "image", "children": [ "cross_out" ] }, "crafting_arrow/cross_out": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "button", "extend": { "name": "cross_out_icon", "namespace": "smithing_table_2_pocket" } }, "crafting_arrow_grid_item": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "panel", "children": [ "crafting_arrow" ] }, "crafting_arrow_grid_item/crafting_arrow": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "image", "extend": { "name": "crafting_arrow", "namespace": "smithing_table_2_pocket" } }, "result_item_preview": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "panel", "children": [ "smithing_preview_renderer" ] }, "result_item_preview/smithing_preview_renderer": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "custom" }, "result_item_preview_grid_item": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "panel", "children": [ "result_preview" ] }, "result_item_preview_grid_item/result_preview": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "panel", "extend": { "name": "result_item_preview", "namespace": "smithing_table_2_pocket" } }, "smithing_table_contents_panel": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "grid", "children": [ "label_holder", "inputs", "result_slot", "crafting_arrow", "result_item_preview" ] }, "smithing_table_contents_panel/label_holder": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "panel", "children": [ "title_label" ] }, "smithing_table_contents_panel/label_holder/title_label": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "label", "extend": { "name": "upgrade_label", "namespace": "smithing_table_2_pocket" } }, "smithing_table_contents_panel/inputs": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "panel", "extend": { "name": "inputs_panel", "namespace": "smithing_table_2_pocket" } }, "smithing_table_contents_panel/result_slot": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "panel", "extend": { "name": "result_slot", "namespace": "smithing_table_2_pocket" } }, "smithing_table_contents_panel/crafting_arrow": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "panel", "extend": { "name": "crafting_arrow_grid_item", "namespace": "smithing_table_2_pocket" } }, "smithing_table_contents_panel/result_item_preview": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "panel", "extend": { "name": "result_item_preview_grid_item", "namespace": "smithing_table_2_pocket" } }, "chest_item_renderer": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "custom" }, "left_tab_inventory": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "panel", "extend": { "name": "pocket_tab_left", "namespace": "common_tabs" } }, "left_navigation_tabs": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "stack_panel", "children": [ "left_tab_inventory" ] }, "left_navigation_tabs/left_tab_inventory": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "panel", "extend": { "name": "left_tab_inventory", "namespace": "smithing_table_2_pocket" } }, "inventory_scroll_panel": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "panel", "extend": { "name": "container_scroll_panel", "namespace": "common" } }, "left_panel": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "stack_panel", "children": [ "gamepad_helpers_and_tabs_holder", "content" ] }, "left_panel/gamepad_helpers_and_tabs_holder": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "panel", "children": [ "navigation_tabs_holder" ] }, "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "panel", "children": [ "left_navigation_tabs" ] }, "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "stack_panel", "extend": { "name": "left_navigation_tabs", "namespace": "smithing_table_2_pocket" } }, "left_panel/content": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "bg", "inventory_scroll_panel" ] }, "left_panel/content/bg": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "left_panel/content/inventory_scroll_panel": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "panel", "extend": { "name": "inventory_scroll_panel", "namespace": "smithing_table_2_pocket" } }, "right_tab_smithing_table": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "panel", "extend": { "name": "pocket_tab_right", "namespace": "common_tabs" } }, "right_navigation_tabs": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "stack_panel", "children": [ "pocket_tab_close_and_help_button", "fill", "right_tab_smithing_table" ] }, "right_navigation_tabs/pocket_tab_close_and_help_button": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "image", "extend": { "name": "pocket_tab_close_and_help_button", "namespace": "common_tabs" } }, "right_navigation_tabs/fill": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "panel" }, "right_navigation_tabs/right_tab_smithing_table": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "panel", "extend": { "name": "right_tab_smithing_table", "namespace": "smithing_table_2_pocket" } }, "right_panel": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "stack_panel", "children": [ "content", "navigation_tabs_holder" ] }, "right_panel/content": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "bg", "smithing_content_stack_panel" ] }, "right_panel/content/bg": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "right_panel/content/smithing_content_stack_panel": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "grid", "extend": { "name": "smithing_table_contents_panel", "namespace": "smithing_table_2_pocket" } }, "right_panel/navigation_tabs_holder": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "panel", "children": [ "right_navigation_tabs" ] }, "right_panel/navigation_tabs_holder/right_navigation_tabs": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "stack_panel", "extend": { "name": "right_navigation_tabs", "namespace": "smithing_table_2_pocket" } }, "pocket_hotbar_and_content_panels": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "stack_panel", "extend": { "name": "pocket_hotbar_and_content_panels", "namespace": "common" } }, "smithing_table_panel": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "panel", "children": [ "pocket_hotbar_and_content_panels", "container_gamepad_helpers", "selected_item_details_factory", "item_lock_notification_factory", "inventory_selected_icon_button", "inventory_take_progress_icon_button", "flying_item_renderer" ] }, "smithing_table_panel/pocket_hotbar_and_content_panels": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "stack_panel", "extend": { "name": "pocket_hotbar_and_content_panels", "namespace": "smithing_table_2_pocket" } }, "smithing_table_panel/container_gamepad_helpers": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "stack_panel", "extend": { "name": "container_gamepad_helpers", "namespace": "common" } }, "smithing_table_panel/selected_item_details_factory": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "factory", "extend": { "name": "selected_item_details_factory", "namespace": "common" } }, "smithing_table_panel/item_lock_notification_factory": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "factory", "extend": { "name": "item_lock_notification_factory", "namespace": "common" } }, "smithing_table_panel/inventory_selected_icon_button": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "button", "extend": { "name": "inventory_selected_icon_button", "namespace": "common" } }, "smithing_table_panel/inventory_take_progress_icon_button": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "button", "extend": { "name": "inventory_take_progress_icon_button", "namespace": "common" } }, "smithing_table_panel/flying_item_renderer": { "file": "ui/smithing_table_2_screen_pocket.json", "type": "custom", "extend": { "name": "flying_item_renderer", "namespace": "common" } } }, "smoker": { "smoker_screen": { "file": "ui/smoker_screen.json", "type": "screen", "extend": { "name": "furnace_screen", "namespace": "furnace" } } }, "start": { "achievements_icon": { "file": "ui/start_screen.json", "type": "image" }, "inbox_bell_animated_icon": { "file": "ui/start_screen.json", "type": "image" }, "inbox_icon": { "file": "ui/start_screen.json", "type": "image" }, "unread_notification_icon": { "file": "ui/start_screen.json", "type": "image" }, "feedback_icon": { "file": "ui/start_screen.json", "type": "image" }, "feedback_icon_edu": { "file": "ui/start_screen.json", "type": "image" }, "Xbox_icon": { "file": "ui/start_screen.json", "type": "image" }, "change_skin_icon": { "file": "ui/start_screen.json", "type": "image" }, "manage_accounts_icon": { "file": "ui/start_screen.json", "type": "image" }, "new_offers_icon": { "file": "ui/start_screen.json", "type": "image", "extend": { "name": "new_offer_icon", "namespace": "common_store" } }, "edu_ai_lesson_crafter_button_content": { "file": "ui/start_screen.json", "type": "stack_panel", "children": [ "padded_label", "padded_icon" ] }, "edu_ai_lesson_crafter_button_content/padded_label": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "label" ] }, "edu_ai_lesson_crafter_button_content/padded_label/label": { "file": "ui/start_screen.json", "type": "label" }, "edu_ai_lesson_crafter_button_content/padded_icon": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "icon" ] }, "edu_ai_lesson_crafter_button_content/padded_icon/icon": { "file": "ui/start_screen.json", "type": "image" }, "preview_tag": { "file": "ui/start_screen.json", "type": "image", "children": [ "preview_label" ] }, "preview_tag/preview_label": { "file": "ui/start_screen.json", "type": "label" }, "update_prompt_icon": { "file": "ui/start_screen.json", "type": "image" }, "marketplace_error_icon": { "file": "ui/start_screen.json", "type": "image", "extend": { "name": "marketplace_error_icon", "namespace": "common_store" } }, "sale_ribbon_icon": { "file": "ui/start_screen.json", "type": "image" }, "alex_icon": { "file": "ui/start_screen.json", "type": "image" }, "gamerpic": { "file": "ui/start_screen.json", "type": "custom" }, "copyright": { "file": "ui/start_screen.json", "type": "panel", "children": [ "label", "label_background" ] }, "copyright/label": { "file": "ui/start_screen.json", "type": "label" }, "copyright/label_background": { "file": "ui/start_screen.json", "type": "image" }, "development_version": { "file": "ui/start_screen.json", "type": "panel", "children": [ "label", "label_background" ] }, "development_version/label": { "file": "ui/start_screen.json", "type": "label" }, "development_version/label_background": { "file": "ui/start_screen.json", "type": "image" }, "version": { "file": "ui/start_screen.json", "type": "panel", "children": [ "label", "label_background" ] }, "version/label": { "file": "ui/start_screen.json", "type": "label" }, "version/label_background": { "file": "ui/start_screen.json", "type": "image" }, "trial_info": { "file": "ui/start_screen.json", "type": "panel", "children": [ "trial_label", "label_background" ] }, "trial_info/trial_label": { "file": "ui/start_screen.json", "type": "label" }, "trial_info/label_background": { "file": "ui/start_screen.json", "type": "image" }, "text_panel": { "file": "ui/start_screen.json", "type": "panel", "children": [ "copyright", "development_version", "version" ] }, "text_panel/copyright": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "copyright", "namespace": "start" } }, "text_panel/development_version": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "development_version", "namespace": "start" } }, "text_panel/version": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "version", "namespace": "start" } }, "skin_or_profile_panel": { "file": "ui/start_screen.json", "type": "panel", "children": [ "change_skin", "change_skin_button_demo", "dressing_room_button", "switch_accounts", "profile_button" ] }, "skin_or_profile_panel/change_skin": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "change_skin_button", "namespace": "start" } }, "skin_or_profile_panel/change_skin_button_demo": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "change_skin_button_demo", "namespace": "start" } }, "skin_or_profile_panel/dressing_room_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "dressing_room_button", "namespace": "start" } }, "skin_or_profile_panel/switch_accounts": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "switch_accounts_button", "namespace": "start" } }, "skin_or_profile_panel/profile_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "profile_button", "namespace": "start" } }, "change_skin_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "light_glyph_button", "namespace": "common_buttons" } }, "change_skin_button_demo": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "light_glyph_button", "namespace": "common_buttons" } }, "switch_accounts_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "dressing_room_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "light_text_form_fitting_button", "namespace": "common_buttons" } }, "profile_button_content": { "file": "ui/start_screen.json", "type": "stack_panel", "children": [ "gamerpic_offset_wrapper", "padding_middle", "vertically_central_text", "padding_right" ] }, "profile_button_content/gamerpic_offset_wrapper": { "file": "ui/start_screen.json", "type": "panel", "children": [ "gamerpic_with_border" ] }, "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border": { "file": "ui/start_screen.json", "type": "panel", "children": [ "gamerpic", "alex_icon", "border_black" ] }, "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/gamerpic": { "file": "ui/start_screen.json", "type": "custom", "extend": { "name": "gamerpic", "namespace": "start" } }, "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/alex_icon": { "file": "ui/start_screen.json", "type": "image", "extend": { "name": "alex_icon", "namespace": "start" } }, "profile_button_content/gamerpic_offset_wrapper/gamerpic_with_border/border_black": { "file": "ui/start_screen.json", "type": "image", "extend": { "name": "focus_border_black", "namespace": "common" } }, "profile_button_content/padding_middle": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "profile_button_content/vertically_central_text": { "file": "ui/start_screen.json", "type": "stack_panel", "children": [ "top_padding", "profile_button_label" ] }, "profile_button_content/vertically_central_text/top_padding": { "file": "ui/start_screen.json", "type": "panel" }, "profile_button_content/vertically_central_text/profile_button_label": { "file": "ui/start_screen.json", "type": "label", "extend": { "name": "new_ui_binding_button_label", "namespace": "common_buttons" } }, "profile_button_content/padding_right": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "profile_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "light_content_form_fitting_button", "namespace": "common_buttons" } }, "skin_viewer_panel": { "file": "ui/start_screen.json", "type": "input_panel", "children": [ "paper_doll_panel", "paper_doll_name_tag" ] }, "skin_viewer_panel/paper_doll_panel": { "file": "ui/start_screen.json", "type": "panel", "children": [ "paper_doll", "appearacne_loading_panel" ] }, "skin_viewer_panel/paper_doll_panel/paper_doll": { "file": "ui/start_screen.json", "type": "custom" }, "skin_viewer_panel/paper_doll_panel/appearacne_loading_panel": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "progress_loading", "namespace": "common_store" } }, "skin_viewer_panel/paper_doll_name_tag": { "file": "ui/start_screen.json", "type": "custom" }, "skin_panel": { "file": "ui/start_screen.json", "type": "panel", "children": [ "change_profile_or_skin", "viewer_panel" ] }, "skin_panel/change_profile_or_skin": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "skin_or_profile_panel", "namespace": "start" } }, "skin_panel/viewer_panel": { "file": "ui/start_screen.json", "type": "input_panel", "extend": { "name": "skin_viewer_panel", "namespace": "start" } }, "friendsdrawer_button_panel": { "file": "ui/start_screen.json", "type": "panel", "children": [ "friendsdrawer_button" ] }, "friendsdrawer_button_panel/friendsdrawer_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "button", "namespace": "friendsbutton" } }, "gathering_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "badge_and_caption_animated": { "file": "ui/start_screen.json", "type": "stack_panel", "children": [ "caption_and_padding", "badge_and_padding" ] }, "badge_and_caption_animated/caption_and_padding": { "file": "ui/start_screen.json", "type": "stack_panel", "children": [ "pad", "caption" ] }, "badge_and_caption_animated/caption_and_padding/pad": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "badge_and_caption_animated/caption_and_padding/caption": { "file": "ui/start_screen.json", "type": "image", "extend": { "name": "gathering_caption", "namespace": "start" } }, "badge_and_caption_animated/badge_and_padding": { "file": "ui/start_screen.json", "type": "stack_panel", "children": [ "badge", "fill" ] }, "badge_and_caption_animated/badge_and_padding/badge": { "file": "ui/start_screen.json", "type": "image" }, "badge_and_caption_animated/badge_and_padding/fill": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "gathering_badge": { "file": "ui/start_screen.json", "type": "image" }, "badge_and_caption": { "file": "ui/start_screen.json", "type": "stack_panel", "children": [ "caption_and_padding", "badge_and_padding" ] }, "badge_and_caption/caption_and_padding": { "file": "ui/start_screen.json", "type": "stack_panel", "children": [ "pad", "caption" ] }, "badge_and_caption/caption_and_padding/pad": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "badge_and_caption/caption_and_padding/caption": { "file": "ui/start_screen.json", "type": "image", "extend": { "name": "gathering_caption", "namespace": "start" } }, "badge_and_caption/badge_and_padding": { "file": "ui/start_screen.json", "type": "stack_panel", "children": [ "badge", "fill" ] }, "badge_and_caption/badge_and_padding/badge": { "file": "ui/start_screen.json", "type": "image", "extend": { "name": "gathering_badge", "namespace": "start" } }, "badge_and_caption/badge_and_padding/fill": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "gathering_caption": { "file": "ui/start_screen.json", "type": "image", "children": [ "countdown_text" ] }, "gathering_caption/countdown_text": { "file": "ui/start_screen.json", "type": "label" }, "gathering_panel": { "file": "ui/start_screen.json", "type": "stack_panel", "children": [ "horizontal_panel", "bottom_pad" ] }, "gathering_panel/horizontal_panel": { "file": "ui/start_screen.json", "type": "stack_panel", "children": [ "pad", "inner_panel" ] }, "gathering_panel/horizontal_panel/pad": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "gathering_panel/horizontal_panel/inner_panel": { "file": "ui/start_screen.json", "type": "stack_panel", "children": [ "badge_and_caption", "badge_and_caption_animated", "gathering_button" ] }, "gathering_panel/horizontal_panel/inner_panel/badge_and_caption": { "file": "ui/start_screen.json", "type": "stack_panel", "extend": { "name": "badge_and_caption", "namespace": "start" } }, "gathering_panel/horizontal_panel/inner_panel/badge_and_caption_animated": { "file": "ui/start_screen.json", "type": "stack_panel", "extend": { "name": "badge_and_caption_animated", "namespace": "start" } }, "gathering_panel/horizontal_panel/inner_panel/gathering_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "gathering_button", "namespace": "start" } }, "gathering_panel/bottom_pad": { "file": "ui/start_screen.json", "type": "panel" }, "edu_feedback_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "release_feedback_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "pre_release_feedback_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "release_feedback_button", "namespace": "start" } }, "feedback_button": { "file": "ui/start_screen.json", "type": "panel", "children": [ "edu_feedback_button", "release_feedback_button", "pre_release_feedback_button" ] }, "feedback_button/edu_feedback_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "edu_feedback_button", "namespace": "start" } }, "feedback_button/release_feedback_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "release_feedback_button", "namespace": "start" } }, "feedback_button/pre_release_feedback_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "pre_release_feedback_button", "namespace": "start" } }, "achievements_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "achievements_icon_button": { "file": "ui/start_screen.json", "type": "panel", "children": [ "achievements_button" ] }, "achievements_icon_button/achievements_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "achievements_button", "namespace": "start" } }, "inbox_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "inbox_button_unread_panel": { "file": "ui/start_screen.json", "type": "panel", "children": [ "background" ] }, "inbox_button_unread_panel/background": { "file": "ui/start_screen.json", "type": "image", "extend": { "name": "unread_notification_icon", "namespace": "start" } }, "inbox_icon_button": { "file": "ui/start_screen.json", "type": "panel", "children": [ "inbox_button", "inbox_button_unread_panel" ] }, "inbox_icon_button/inbox_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "inbox_button", "namespace": "start" } }, "inbox_icon_button/inbox_button_unread_panel": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "inbox_button_unread_panel", "namespace": "start" } }, "xbl_signin_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "light_text_form_fitting_button", "namespace": "common_buttons" } }, "platform_signin_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "column_frame": { "file": "ui/start_screen.json", "type": "panel" }, "educator_resources_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "main_button", "namespace": "start" } }, "upper_online_buttons_panel": { "file": "ui/start_screen.json", "type": "stack_panel", "children": [ "top_pad", "stacked_column", "bottom_pad" ] }, "upper_online_buttons_panel/top_pad": { "file": "ui/start_screen.json", "type": "panel" }, "upper_online_buttons_panel/stacked_column": { "file": "ui/start_screen.json", "type": "stack_panel", "children": [ "xbl_btn_padding", "xbl_btn", "platform_signin_btn", "gamertag_pic_and_label" ] }, "upper_online_buttons_panel/stacked_column/xbl_btn_padding": { "file": "ui/start_screen.json", "type": "panel" }, "upper_online_buttons_panel/stacked_column/xbl_btn": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "column_frame", "namespace": "start" }, "children": [ "xbl_signin_button" ] }, "upper_online_buttons_panel/stacked_column/xbl_btn/xbl_signin_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "xbl_signin_button", "namespace": "start" } }, "upper_online_buttons_panel/stacked_column/platform_signin_btn": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "column_frame", "namespace": "start" }, "children": [ "platform_signin_button" ] }, "upper_online_buttons_panel/stacked_column/platform_signin_btn/platform_signin_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "platform_signin_button", "namespace": "start" } }, "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label": { "file": "ui/start_screen.json", "type": "stack_panel", "children": [ "gamerpic_with_border", "spacer", "label_panel" ] }, "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border": { "file": "ui/start_screen.json", "type": "panel", "children": [ "gamerpic", "border_white" ] }, "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border/gamerpic": { "file": "ui/start_screen.json", "type": "custom", "extend": { "name": "gamerpic", "namespace": "start" } }, "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/gamerpic_with_border/border_white": { "file": "ui/start_screen.json", "type": "image", "extend": { "name": "focus_border_white", "namespace": "common" } }, "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/spacer": { "file": "ui/start_screen.json", "type": "panel" }, "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/label_panel": { "file": "ui/start_screen.json", "type": "panel", "children": [ "gamertag_label" ] }, "upper_online_buttons_panel/stacked_column/gamertag_pic_and_label/label_panel/gamertag_label": { "file": "ui/start_screen.json", "type": "label" }, "upper_online_buttons_panel/bottom_pad": { "file": "ui/start_screen.json", "type": "panel" }, "lower_online_buttons_panel": { "file": "ui/start_screen.json", "type": "stack_panel", "children": [ "stacked_column" ] }, "lower_online_buttons_panel/stacked_column": { "file": "ui/start_screen.json", "type": "stack_panel", "children": [ "feedback_padding", "feedback_btn", "signingin", "achievements_padding", "achievements_btn", "inbox_padding", "inbox_btn", "profile_btn_padding", "profile_btn" ] }, "lower_online_buttons_panel/stacked_column/feedback_padding": { "file": "ui/start_screen.json", "type": "panel" }, "lower_online_buttons_panel/stacked_column/feedback_btn": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "column_frame", "namespace": "start" }, "children": [ "feedback_button" ] }, "lower_online_buttons_panel/stacked_column/feedback_btn/feedback_button": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "feedback_button", "namespace": "start" } }, "lower_online_buttons_panel/stacked_column/signingin": { "file": "ui/start_screen.json", "type": "label" }, "lower_online_buttons_panel/stacked_column/achievements_padding": { "file": "ui/start_screen.json", "type": "panel" }, "lower_online_buttons_panel/stacked_column/achievements_btn": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "column_frame", "namespace": "start" }, "children": [ "achievements_icon_button" ] }, "lower_online_buttons_panel/stacked_column/achievements_btn/achievements_icon_button": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "achievements_icon_button", "namespace": "start" } }, "lower_online_buttons_panel/stacked_column/inbox_padding": { "file": "ui/start_screen.json", "type": "panel" }, "lower_online_buttons_panel/stacked_column/inbox_btn": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "column_frame", "namespace": "start" }, "children": [ "inbox_icon_button" ] }, "lower_online_buttons_panel/stacked_column/inbox_btn/inbox_icon_button": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "inbox_icon_button", "namespace": "start" } }, "lower_online_buttons_panel/stacked_column/profile_btn_padding": { "file": "ui/start_screen.json", "type": "panel" }, "lower_online_buttons_panel/stacked_column/profile_btn": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "column_frame", "namespace": "start" }, "children": [ "profile_button" ] }, "lower_online_buttons_panel/stacked_column/profile_btn/profile_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "profile_button", "namespace": "start" } }, "main_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "main_button_dark": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "dark_text_button", "namespace": "common_buttons" } }, "main_content_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "main_button_gif": { "file": "ui/start_screen.json", "type": "custom" }, "main_button_banner": { "file": "ui/start_screen.json", "type": "image", "children": [ "banner_label" ] }, "main_button_banner/banner_label": { "file": "ui/start_screen.json", "type": "label" }, "play_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "main_button", "namespace": "start" } }, "play_button_art": { "file": "ui/start_screen.json", "type": "panel", "children": [ "default_background", "hover_background", "label", "default_foreground", "hover_foreground" ] }, "play_button_art/default_background": { "file": "ui/start_screen.json", "type": "custom", "extend": { "name": "main_button_gif", "namespace": "start" } }, "play_button_art/hover_background": { "file": "ui/start_screen.json", "type": "custom", "extend": { "name": "main_button_gif", "namespace": "start" } }, "play_button_art/label": { "file": "ui/start_screen.json", "type": "label" }, "play_button_art/default_foreground": { "file": "ui/start_screen.json", "type": "custom", "extend": { "name": "main_button_gif", "namespace": "start" } }, "play_button_art/hover_foreground": { "file": "ui/start_screen.json", "type": "custom", "extend": { "name": "main_button_gif", "namespace": "start" } }, "play_button_stack": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "stacked_row", "namespace": "start" }, "children": [ "play_button", "play_button_art", "play_button_banner" ] }, "play_button_stack/play_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "play_button", "namespace": "start" } }, "play_button_stack/play_button_art": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "play_button_art", "namespace": "start" } }, "play_button_stack/play_button_banner": { "file": "ui/start_screen.json", "type": "image", "extend": { "name": "main_button_banner", "namespace": "start" } }, "get_started_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "main_button", "namespace": "start" } }, "main_menu_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "underline_button", "namespace": "edu_common" } }, "featured_world_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "main_button", "namespace": "start" } }, "unlock_full_game_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "main_button", "namespace": "start" } }, "launch_editions_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "main_button", "namespace": "start" } }, "ai_lesson_crafter_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "settings_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "main_button", "namespace": "start" } }, "realms_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "main_button_dark", "namespace": "start" } }, "servers_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "main_button", "namespace": "start" } }, "store_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "error_store_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "store_button_sale_banner": { "file": "ui/start_screen.json", "type": "image", "extend": { "name": "sale_ribbon_icon", "namespace": "start" }, "children": [ "banner_label_padding" ] }, "store_button_sale_banner/banner_label_padding": { "file": "ui/start_screen.json", "type": "panel", "children": [ "banner_label" ] }, "store_button_sale_banner/banner_label_padding/banner_label": { "file": "ui/start_screen.json", "type": "label" }, "store_button_content": { "file": "ui/start_screen.json", "type": "panel", "children": [ "button_label", "sales_banner" ] }, "store_button_content/button_label": { "file": "ui/start_screen.json", "type": "label", "extend": { "name": "new_ui_binding_button_label", "namespace": "common_buttons" } }, "store_button_content/sales_banner": { "file": "ui/start_screen.json", "type": "image", "extend": { "name": "store_button_sale_banner", "namespace": "start" } }, "store_error_image": { "file": "ui/start_screen.json", "type": "image" }, "store_error_content": { "file": "ui/start_screen.json", "type": "image", "children": [ "marketplace_button_label" ] }, "store_error_content/marketplace_button_label": { "file": "ui/start_screen.json", "type": "label" }, "store_sale_label": { "file": "ui/start_screen.json", "type": "label" }, "store_button_art": { "file": "ui/start_screen.json", "type": "panel", "children": [ "default_background", "hover_background", "label", "default_foreground", "hover_foreground" ] }, "store_button_art/default_background": { "file": "ui/start_screen.json", "type": "custom", "extend": { "name": "main_button_gif", "namespace": "start" } }, "store_button_art/hover_background": { "file": "ui/start_screen.json", "type": "custom", "extend": { "name": "main_button_gif", "namespace": "start" } }, "store_button_art/label": { "file": "ui/start_screen.json", "type": "label" }, "store_button_art/default_foreground": { "file": "ui/start_screen.json", "type": "custom", "extend": { "name": "main_button_gif", "namespace": "start" } }, "store_button_art/hover_foreground": { "file": "ui/start_screen.json", "type": "custom", "extend": { "name": "main_button_gif", "namespace": "start" } }, "store_button_stack": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "stacked_row", "namespace": "start" }, "children": [ "store_button", "store_button_art", "store_button_banner", "update_icon", "new_offers_icon" ] }, "store_button_stack/store_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "store_button", "namespace": "start" } }, "store_button_stack/store_button_art": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "store_button_art", "namespace": "start" } }, "store_button_stack/store_button_banner": { "file": "ui/start_screen.json", "type": "image", "extend": { "name": "main_button_banner", "namespace": "start" } }, "store_button_stack/update_icon": { "file": "ui/start_screen.json", "type": "image", "extend": { "name": "update_prompt_icon", "namespace": "start" } }, "store_button_stack/new_offers_icon": { "file": "ui/start_screen.json", "type": "image", "extend": { "name": "new_offers_icon", "namespace": "start" } }, "buy_game_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "main_button", "namespace": "start" } }, "stacked_row": { "file": "ui/start_screen.json", "type": "panel" }, "main_buttons_stack_panel": { "file": "ui/start_screen.json", "type": "stack_panel", "children": [ "title_offset_padding", "title_panel_content", "padding_fill_1", "main_buttons_panel", "main_buttons_panel_new_player_flow", "padding_fill_2", "padding_3" ] }, "main_buttons_stack_panel/title_offset_padding": { "file": "ui/start_screen.json", "type": "panel" }, "main_buttons_stack_panel/title_panel_content": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "start_title_panel_content", "namespace": "common_art" } }, "main_buttons_stack_panel/padding_fill_1": { "file": "ui/start_screen.json", "type": "panel" }, "main_buttons_stack_panel/main_buttons_panel": { "file": "ui/start_screen.json", "type": "panel", "children": [ "main_buttons_panel" ] }, "main_buttons_stack_panel/main_buttons_panel/main_buttons_panel": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "main_buttons_panel", "namespace": "start" } }, "main_buttons_stack_panel/main_buttons_panel_new_player_flow": { "file": "ui/start_screen.json", "type": "panel", "children": [ "main_buttons_panel_new_player_flow" ] }, "main_buttons_stack_panel/main_buttons_panel_new_player_flow/main_buttons_panel_new_player_flow": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "main_buttons_panel_new_player_flow", "namespace": "start" } }, "main_buttons_stack_panel/padding_fill_2": { "file": "ui/start_screen.json", "type": "panel", "children": [ "gamepad_helpers" ] }, "main_buttons_stack_panel/padding_fill_2/gamepad_helpers": { "file": "ui/start_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helpers", "namespace": "start" } }, "main_buttons_stack_panel/padding_3": { "file": "ui/start_screen.json", "type": "panel" }, "main_buttons_panel_new_player_flow": { "file": "ui/start_screen.json", "type": "panel", "children": [ "stacked_rows" ] }, "main_buttons_panel_new_player_flow/stacked_rows": { "file": "ui/start_screen.json", "type": "stack_panel", "children": [ "test_label_row", "spacer", "get_started_row", "main_menu_row" ] }, "main_buttons_panel_new_player_flow/stacked_rows/test_label_row": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "stacked_row", "namespace": "start" }, "children": [ "trial_info" ] }, "main_buttons_panel_new_player_flow/stacked_rows/test_label_row/trial_info": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "trial_info", "namespace": "start" } }, "main_buttons_panel_new_player_flow/stacked_rows/spacer": { "file": "ui/start_screen.json", "type": "panel" }, "main_buttons_panel_new_player_flow/stacked_rows/get_started_row": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "stacked_row", "namespace": "start" }, "children": [ "get_started_button" ] }, "main_buttons_panel_new_player_flow/stacked_rows/get_started_row/get_started_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "get_started_button", "namespace": "start" } }, "main_buttons_panel_new_player_flow/stacked_rows/main_menu_row": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "stacked_row", "namespace": "start" }, "children": [ "main_menu_button" ] }, "main_buttons_panel_new_player_flow/stacked_rows/main_menu_row/main_menu_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "main_menu_button", "namespace": "start" } }, "main_buttons_panel": { "file": "ui/start_screen.json", "type": "panel", "children": [ "stacked_rows" ] }, "main_buttons_panel/stacked_rows": { "file": "ui/start_screen.json", "type": "stack_panel", "children": [ "play", "featured_world", "stacked_row_2", "ai_lesson_crafter_row", "edu_featured_button", "settings_and_editions_panel", "settings", "realms", "unlock_full_game_row", "store", "buy_game", "launch_editions" ] }, "main_buttons_panel/stacked_rows/play": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "play_button_stack", "namespace": "start" } }, "main_buttons_panel/stacked_rows/featured_world": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "stacked_row", "namespace": "start" }, "children": [ "featured_world_button" ] }, "main_buttons_panel/stacked_rows/featured_world/featured_world_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "featured_world_button", "namespace": "start" } }, "main_buttons_panel/stacked_rows/stacked_row_2": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "stacked_row", "namespace": "start" }, "children": [ "stacked_columns" ] }, "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns": { "file": "ui/start_screen.json", "type": "stack_panel", "children": [ "stacked_col_0", "stacked_col_1" ] }, "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_0": { "file": "ui/start_screen.json", "type": "panel", "children": [ "settings_button" ] }, "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_0/settings_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "settings_button", "namespace": "start" } }, "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1": { "file": "ui/start_screen.json", "type": "panel", "children": [ "store_button", "update_icon", "new_offers_icon" ] }, "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/store_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "store_button", "namespace": "start" } }, "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/update_icon": { "file": "ui/start_screen.json", "type": "image", "extend": { "name": "update_prompt_icon", "namespace": "start" } }, "main_buttons_panel/stacked_rows/stacked_row_2/stacked_columns/stacked_col_1/new_offers_icon": { "file": "ui/start_screen.json", "type": "image", "extend": { "name": "new_offers_icon", "namespace": "start" } }, "main_buttons_panel/stacked_rows/ai_lesson_crafter_row": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "stacked_row", "namespace": "start" }, "children": [ "ai_lesson_crafter_button", "lesson_crafter_preview_overlay" ] }, "main_buttons_panel/stacked_rows/ai_lesson_crafter_row/ai_lesson_crafter_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "ai_lesson_crafter_button", "namespace": "start" } }, "main_buttons_panel/stacked_rows/ai_lesson_crafter_row/lesson_crafter_preview_overlay": { "file": "ui/start_screen.json", "type": "image", "extend": { "name": "preview_tag", "namespace": "start" } }, "main_buttons_panel/stacked_rows/edu_featured_button": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "stacked_row", "namespace": "start" }, "children": [ "new_and_featured_button" ] }, "main_buttons_panel/stacked_rows/edu_featured_button/new_and_featured_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "featured_button", "namespace": "edu_featured" } }, "main_buttons_panel/stacked_rows/settings_and_editions_panel": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "stacked_row", "namespace": "start" }, "children": [ "settings_and_editions", "settings_panel" ] }, "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions": { "file": "ui/start_screen.json", "type": "stack_panel", "children": [ "settings_panel", "editions_panel" ] }, "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/settings_panel": { "file": "ui/start_screen.json", "type": "panel", "children": [ "settings_button" ] }, "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/settings_panel/settings_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "settings_button", "namespace": "start" } }, "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/editions_panel": { "file": "ui/start_screen.json", "type": "panel", "children": [ "launch_editions_button" ] }, "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_and_editions/editions_panel/launch_editions_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "launch_editions_button", "namespace": "start" } }, "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_panel": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "stacked_row", "namespace": "start" }, "children": [ "settings_button" ] }, "main_buttons_panel/stacked_rows/settings_and_editions_panel/settings_panel/settings_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "settings_button", "namespace": "start" } }, "main_buttons_panel/stacked_rows/settings": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "stacked_row", "namespace": "start" }, "children": [ "settings_button" ] }, "main_buttons_panel/stacked_rows/settings/settings_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "settings_button", "namespace": "start" } }, "main_buttons_panel/stacked_rows/realms": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "stacked_row", "namespace": "start" }, "children": [ "realms_button" ] }, "main_buttons_panel/stacked_rows/realms/realms_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "realms_button", "namespace": "start" } }, "main_buttons_panel/stacked_rows/unlock_full_game_row": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "stacked_row", "namespace": "start" }, "children": [ "unlock_full_game" ] }, "main_buttons_panel/stacked_rows/unlock_full_game_row/unlock_full_game": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "unlock_full_game_button", "namespace": "start" } }, "main_buttons_panel/stacked_rows/store": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "store_button_stack", "namespace": "start" } }, "main_buttons_panel/stacked_rows/buy_game": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "stacked_row", "namespace": "start" }, "children": [ "buy_game_button" ] }, "main_buttons_panel/stacked_rows/buy_game/buy_game_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "buy_game_button", "namespace": "start" } }, "main_buttons_panel/stacked_rows/launch_editions": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "stacked_row", "namespace": "start" }, "children": [ "launch_editions_button" ] }, "main_buttons_panel/stacked_rows/launch_editions/launch_editions_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "launch_editions_button", "namespace": "start" } }, "gamepad_helpers": { "file": "ui/start_screen.json", "type": "stack_panel", "children": [ "gamepad_helper_a", "gamepad_helper_b_and_padding", "gamepad_helper_y_and_padding", "gamepad_helper_x_and_padding" ] }, "gamepad_helpers/gamepad_helper_a": { "file": "ui/start_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_a", "namespace": "common" } }, "gamepad_helpers/gamepad_helper_b_and_padding": { "file": "ui/start_screen.json", "type": "panel", "children": [ "gamepad_helper_b" ] }, "gamepad_helpers/gamepad_helper_b_and_padding/gamepad_helper_b": { "file": "ui/start_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_b", "namespace": "common" } }, "gamepad_helpers/gamepad_helper_y_and_padding": { "file": "ui/start_screen.json", "type": "panel", "children": [ "gamepad_helper_y" ] }, "gamepad_helpers/gamepad_helper_y_and_padding/gamepad_helper_y": { "file": "ui/start_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_y", "namespace": "common" } }, "gamepad_helpers/gamepad_helper_x_and_padding": { "file": "ui/start_screen.json", "type": "panel", "children": [ "gamepad_helper_x" ] }, "gamepad_helpers/gamepad_helper_x_and_padding/gamepad_helper_x": { "file": "ui/start_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_x", "namespace": "common" } }, "invite_notification_icon": { "file": "ui/start_screen.json", "type": "image" }, "invite_notification_button": { "file": "ui/start_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "notification_button_text": { "file": "ui/start_screen.json", "type": "label" }, "notification_button_text_background": { "file": "ui/start_screen.json", "type": "image" }, "notification_button_text_panel": { "file": "ui/start_screen.json", "type": "panel", "children": [ "text" ] }, "notification_button_text_panel/text": { "file": "ui/start_screen.json", "type": "label", "extend": { "name": "notification_button_text", "namespace": "start" }, "children": [ "background" ] }, "notification_button_text_panel/text/background": { "file": "ui/start_screen.json", "type": "image", "extend": { "name": "notification_button_text_background", "namespace": "start" } }, "start_screen": { "file": "ui/start_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "start_screen_content": { "file": "ui/start_screen.json", "type": "panel", "children": [ "main_buttons_and_title_panel", "online_button_stack", "skin_panel", "text_panel", "friendsdrawer_button_panel" ] }, "start_screen_content/main_buttons_and_title_panel": { "file": "ui/start_screen.json", "type": "stack_panel", "extend": { "name": "main_buttons_stack_panel", "namespace": "start" } }, "start_screen_content/online_button_stack": { "file": "ui/start_screen.json", "type": "stack_panel", "children": [ "gathering_panel", "upper_online_buttons_panel", "lower_online_buttons_panel" ] }, "start_screen_content/online_button_stack/gathering_panel": { "file": "ui/start_screen.json", "type": "stack_panel", "extend": { "name": "gathering_panel", "namespace": "start" } }, "start_screen_content/online_button_stack/upper_online_buttons_panel": { "file": "ui/start_screen.json", "type": "stack_panel", "extend": { "name": "upper_online_buttons_panel", "namespace": "start" } }, "start_screen_content/online_button_stack/lower_online_buttons_panel": { "file": "ui/start_screen.json", "type": "stack_panel", "extend": { "name": "lower_online_buttons_panel", "namespace": "start" } }, "start_screen_content/skin_panel": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "skin_panel", "namespace": "start" } }, "start_screen_content/text_panel": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "text_panel", "namespace": "start" } }, "start_screen_content/friendsdrawer_button_panel": { "file": "ui/start_screen.json", "type": "panel", "extend": { "name": "friendsdrawer_button_panel", "namespace": "start" } } }, "stonecutter": { "stonecutter_label": { "file": "ui/stonecutter_screen.json", "type": "label" }, "arrow_icon": { "file": "ui/stonecutter_screen.json", "type": "image" }, "stone_cell_image": { "file": "ui/stonecutter_screen.json", "type": "image" }, "container_cell_image": { "file": "ui/stonecutter_screen.json", "type": "image" }, "toolbar_background": { "file": "ui/stonecutter_screen.json", "type": "image" }, "highlight_slot_panel": { "file": "ui/stonecutter_screen.json", "type": "panel", "children": [ "hover_text", "highlight", "white_border" ] }, "highlight_slot_panel/hover_text": { "file": "ui/stonecutter_screen.json", "type": "custom", "extend": { "name": "hover_text", "namespace": "common" } }, "highlight_slot_panel/highlight": { "file": "ui/stonecutter_screen.json", "type": "image", "extend": { "name": "highlight_slot", "namespace": "common" } }, "highlight_slot_panel/white_border": { "file": "ui/stonecutter_screen.json", "type": "image", "extend": { "name": "white_border_slot", "namespace": "common" } }, "stone_slot_button": { "file": "ui/stonecutter_screen.json", "type": "button", "children": [ "hover" ] }, "stone_slot_button/hover": { "file": "ui/stonecutter_screen.json", "type": "unknown" }, "item_panel": { "file": "ui/stonecutter_screen.json", "type": "panel", "children": [ "item_renderer" ] }, "item_panel/item_renderer": { "file": "ui/stonecutter_screen.json", "type": "custom", "extend": { "name": "item_renderer", "namespace": "common" }, "children": [ "stack_count_label" ] }, "item_panel/item_renderer/stack_count_label": { "file": "ui/stonecutter_screen.json", "type": "label", "extend": { "name": "stack_count_label", "namespace": "common" } }, "stone_button": { "file": "ui/stonecutter_screen.json", "type": "input_panel", "children": [ "banner_pattern", "item_button_ref" ] }, "stone_button/banner_pattern": { "file": "ui/stonecutter_screen.json", "type": "unknown" }, "stone_button/item_button_ref": { "file": "ui/stonecutter_screen.json", "type": "unknown" }, "scroll_grid": { "file": "ui/stonecutter_screen.json", "type": "grid" }, "scroll_grid_panel": { "file": "ui/stonecutter_screen.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "grid" ] }, "scroll_grid_panel/grid": { "file": "ui/stonecutter_screen.json", "type": "grid", "extend": { "name": "scroll_grid", "namespace": "stonecutter" } }, "scroll_panel": { "file": "ui/stonecutter_screen.json", "type": "panel", "extend": { "name": "container_scroll_panel", "namespace": "common" } }, "stone_book_panel": { "file": "ui/stonecutter_screen.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "bg", "scroll_panel" ] }, "stone_book_panel/bg": { "file": "ui/stonecutter_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "stone_book_panel/scroll_panel": { "file": "ui/stonecutter_screen.json", "type": "panel", "extend": { "name": "scroll_panel", "namespace": "stonecutter" } }, "result_slot_button": { "file": "ui/stonecutter_screen.json", "type": "button", "extend": { "name": "no_coalesce_container_slot_button", "namespace": "common" } }, "input_item_slot": { "file": "ui/stonecutter_screen.json", "type": "input_panel", "extend": { "name": "container_item", "namespace": "common" } }, "result_item_slot": { "file": "ui/stonecutter_screen.json", "type": "input_panel", "extend": { "name": "container_item", "namespace": "common" } }, "input_slots_stack_panel": { "file": "ui/stonecutter_screen.json", "type": "stack_panel", "children": [ "input_item_slot" ] }, "input_slots_stack_panel/input_item_slot": { "file": "ui/stonecutter_screen.json", "type": "input_panel", "extend": { "name": "input_item_slot", "namespace": "stonecutter" } }, "top_half_stack_panel": { "file": "ui/stonecutter_screen.json", "type": "stack_panel", "children": [ "input_slots_holder", "padding_1", "arrow_holder", "padding_2", "result_item_slot_holder" ] }, "top_half_stack_panel/input_slots_holder": { "file": "ui/stonecutter_screen.json", "type": "panel", "children": [ "input_slots_stack_panel" ] }, "top_half_stack_panel/input_slots_holder/input_slots_stack_panel": { "file": "ui/stonecutter_screen.json", "type": "stack_panel", "extend": { "name": "input_slots_stack_panel", "namespace": "stonecutter" } }, "top_half_stack_panel/padding_1": { "file": "ui/stonecutter_screen.json", "type": "panel" }, "top_half_stack_panel/arrow_holder": { "file": "ui/stonecutter_screen.json", "type": "panel", "children": [ "arrow_icon" ] }, "top_half_stack_panel/arrow_holder/arrow_icon": { "file": "ui/stonecutter_screen.json", "type": "image", "extend": { "name": "arrow_icon", "namespace": "stonecutter" } }, "top_half_stack_panel/padding_2": { "file": "ui/stonecutter_screen.json", "type": "panel" }, "top_half_stack_panel/result_item_slot_holder": { "file": "ui/stonecutter_screen.json", "type": "panel", "children": [ "result_item_slot" ] }, "top_half_stack_panel/result_item_slot_holder/result_item_slot": { "file": "ui/stonecutter_screen.json", "type": "input_panel", "extend": { "name": "result_item_slot", "namespace": "stonecutter" } }, "top_half_panel": { "file": "ui/stonecutter_screen.json", "type": "panel", "children": [ "top_half_stack_panel" ] }, "top_half_panel/top_half_stack_panel": { "file": "ui/stonecutter_screen.json", "type": "stack_panel", "extend": { "name": "top_half_stack_panel", "namespace": "stonecutter" } }, "right_panel": { "file": "ui/stonecutter_screen.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "common_panel", "stonecutter_screen_inventory" ] }, "right_panel/common_panel": { "file": "ui/stonecutter_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "right_panel/stonecutter_screen_inventory": { "file": "ui/stonecutter_screen.json", "type": "panel", "children": [ "stonecutter_label", "top_half_panel", "inventory_panel_bottom_half_with_label", "hotbar_grid" ] }, "right_panel/stonecutter_screen_inventory/stonecutter_label": { "file": "ui/stonecutter_screen.json", "type": "label", "extend": { "name": "stonecutter_label", "namespace": "stonecutter" } }, "right_panel/stonecutter_screen_inventory/top_half_panel": { "file": "ui/stonecutter_screen.json", "type": "panel", "extend": { "name": "top_half_panel", "namespace": "stonecutter" } }, "right_panel/stonecutter_screen_inventory/inventory_panel_bottom_half_with_label": { "file": "ui/stonecutter_screen.json", "type": "panel", "extend": { "name": "inventory_panel_bottom_half_with_label", "namespace": "common" } }, "right_panel/stonecutter_screen_inventory/hotbar_grid": { "file": "ui/stonecutter_screen.json", "type": "grid", "extend": { "name": "hotbar_grid_template", "namespace": "common" } }, "toolbar_panel": { "file": "ui/stonecutter_screen.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "toolbar_background" ] }, "toolbar_panel/toolbar_background": { "file": "ui/stonecutter_screen.json", "type": "image", "extend": { "name": "toolbar_background", "namespace": "stonecutter" }, "children": [ "toolbar_stack_panel" ] }, "toolbar_panel/toolbar_background/toolbar_stack_panel": { "file": "ui/stonecutter_screen.json", "type": "stack_panel", "children": [ "padding_1", "close_button_panel", "padding_2" ] }, "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": { "file": "ui/stonecutter_screen.json", "type": "panel" }, "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": { "file": "ui/stonecutter_screen.json", "type": "panel", "children": [ "close_button" ] }, "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": { "file": "ui/stonecutter_screen.json", "type": "button", "extend": { "name": "light_close_button", "namespace": "common" } }, "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": { "file": "ui/stonecutter_screen.json", "type": "panel" }, "toolbar_anchor": { "file": "ui/stonecutter_screen.json", "type": "panel", "children": [ "toolbar_panel" ] }, "toolbar_anchor/toolbar_panel": { "file": "ui/stonecutter_screen.json", "type": "input_panel", "extend": { "name": "toolbar_panel", "namespace": "stonecutter" } }, "center_fold": { "file": "ui/stonecutter_screen.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "center_bg" ] }, "center_fold/center_bg": { "file": "ui/stonecutter_screen.json", "type": "image" }, "screen_stack_panel": { "file": "ui/stonecutter_screen.json", "type": "stack_panel", "children": [ "stone_book_panel", "center_fold", "right_panel", "toolbar_anchor" ] }, "screen_stack_panel/stone_book_panel": { "file": "ui/stonecutter_screen.json", "type": "input_panel", "extend": { "name": "stone_book_panel", "namespace": "stonecutter" } }, "screen_stack_panel/center_fold": { "file": "ui/stonecutter_screen.json", "type": "input_panel", "extend": { "name": "center_fold", "namespace": "stonecutter" } }, "screen_stack_panel/right_panel": { "file": "ui/stonecutter_screen.json", "type": "input_panel", "extend": { "name": "right_panel", "namespace": "stonecutter" } }, "screen_stack_panel/toolbar_anchor": { "file": "ui/stonecutter_screen.json", "type": "panel", "extend": { "name": "toolbar_anchor", "namespace": "stonecutter" } }, "stonecutter_panel": { "file": "ui/stonecutter_screen.json", "type": "panel", "children": [ "screen_stack_panel", "container_gamepad_helpers", "selected_item_details_factory", "item_lock_notification_factory", "inventory_selected_icon_button", "inventory_take_progress_icon_button", "flying_item_renderer" ] }, "stonecutter_panel/screen_stack_panel": { "file": "ui/stonecutter_screen.json", "type": "stack_panel", "extend": { "name": "screen_stack_panel", "namespace": "stonecutter" } }, "stonecutter_panel/container_gamepad_helpers": { "file": "ui/stonecutter_screen.json", "type": "stack_panel", "extend": { "name": "container_gamepad_helpers", "namespace": "common" } }, "stonecutter_panel/selected_item_details_factory": { "file": "ui/stonecutter_screen.json", "type": "factory", "extend": { "name": "selected_item_details_factory", "namespace": "common" } }, "stonecutter_panel/item_lock_notification_factory": { "file": "ui/stonecutter_screen.json", "type": "factory", "extend": { "name": "item_lock_notification_factory", "namespace": "common" } }, "stonecutter_panel/inventory_selected_icon_button": { "file": "ui/stonecutter_screen.json", "type": "button", "extend": { "name": "inventory_selected_icon_button", "namespace": "common" } }, "stonecutter_panel/inventory_take_progress_icon_button": { "file": "ui/stonecutter_screen.json", "type": "button", "extend": { "name": "inventory_take_progress_icon_button", "namespace": "common" } }, "stonecutter_panel/flying_item_renderer": { "file": "ui/stonecutter_screen.json", "type": "custom", "extend": { "name": "flying_item_renderer", "namespace": "common" } }, "stonecutter_screen": { "file": "ui/stonecutter_screen.json", "type": "screen", "extend": { "name": "inventory_screen_common", "namespace": "common" } } }, "stonecutter_pocket": { "vertical_arrow_icon": { "file": "ui/stonecutter_screen_pocket.json", "type": "image" }, "chest_item_renderer": { "file": "ui/stonecutter_screen_pocket.json", "type": "custom" }, "stonecutter_item_renderer": { "file": "ui/stonecutter_screen_pocket.json", "type": "custom" }, "input_item_slot": { "file": "ui/stonecutter_screen_pocket.json", "type": "input_panel", "extend": { "name": "pocket_ui_container_item", "namespace": "common" } }, "result_item_slot": { "file": "ui/stonecutter_screen_pocket.json", "type": "input_panel", "extend": { "name": "pocket_ui_container_item", "namespace": "common" } }, "right_panel": { "file": "ui/stonecutter_screen_pocket.json", "type": "stack_panel", "children": [ "content", "navigation_tabs_holder" ] }, "right_panel/content": { "file": "ui/stonecutter_screen_pocket.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "bg", "stonecutter_content_stack_panel" ] }, "right_panel/content/bg": { "file": "ui/stonecutter_screen_pocket.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "right_panel/content/stonecutter_content_stack_panel": { "file": "ui/stonecutter_screen_pocket.json", "type": "stack_panel", "extend": { "name": "stonecutter_content_stack_panel", "namespace": "stonecutter_pocket" } }, "right_panel/navigation_tabs_holder": { "file": "ui/stonecutter_screen_pocket.json", "type": "panel", "children": [ "right_navigation_tabs" ] }, "right_panel/navigation_tabs_holder/right_navigation_tabs": { "file": "ui/stonecutter_screen_pocket.json", "type": "stack_panel", "extend": { "name": "right_navigation_tabs", "namespace": "stonecutter_pocket" } }, "right_tab_stonecutter": { "file": "ui/stonecutter_screen_pocket.json", "type": "panel", "extend": { "name": "pocket_tab_right", "namespace": "common_tabs" } }, "right_navigation_tabs": { "file": "ui/stonecutter_screen_pocket.json", "type": "stack_panel", "children": [ "close", "fill", "right_tab_stonecutter" ] }, "right_navigation_tabs/close": { "file": "ui/stonecutter_screen_pocket.json", "type": "image", "children": [ "nodrop_zone", "close_button" ] }, "right_navigation_tabs/close/nodrop_zone": { "file": "ui/stonecutter_screen_pocket.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" } }, "right_navigation_tabs/close/close_button": { "file": "ui/stonecutter_screen_pocket.json", "type": "button", "extend": { "name": "light_close_button", "namespace": "common" } }, "right_navigation_tabs/fill": { "file": "ui/stonecutter_screen_pocket.json", "type": "panel" }, "right_navigation_tabs/right_tab_stonecutter": { "file": "ui/stonecutter_screen_pocket.json", "type": "panel", "extend": { "name": "right_tab_stonecutter", "namespace": "stonecutter_pocket" } }, "input_slots_stack_panel": { "file": "ui/stonecutter_screen_pocket.json", "type": "stack_panel", "children": [ "input_item_slot" ] }, "input_slots_stack_panel/input_item_slot": { "file": "ui/stonecutter_screen_pocket.json", "type": "input_panel", "extend": { "name": "input_item_slot", "namespace": "stonecutter_pocket" } }, "stonecutter_content_stack_panel": { "file": "ui/stonecutter_screen_pocket.json", "type": "stack_panel", "children": [ "label_holder", "padding_1", "panel" ] }, "stonecutter_content_stack_panel/label_holder": { "file": "ui/stonecutter_screen_pocket.json", "type": "panel", "children": [ "stonecutter_label" ] }, "stonecutter_content_stack_panel/label_holder/stonecutter_label": { "file": "ui/stonecutter_screen_pocket.json", "type": "label", "extend": { "name": "stonecutter_label", "namespace": "stonecutter" } }, "stonecutter_content_stack_panel/padding_1": { "file": "ui/stonecutter_screen_pocket.json", "type": "panel" }, "stonecutter_content_stack_panel/panel": { "file": "ui/stonecutter_screen_pocket.json", "type": "panel", "children": [ "stack_panel" ] }, "stonecutter_content_stack_panel/panel/stack_panel": { "file": "ui/stonecutter_screen_pocket.json", "type": "stack_panel", "children": [ "input_slots_holder", "padding_3", "arrow_holder", "padding_4", "result_item_slot_holder", "padding_5" ] }, "stonecutter_content_stack_panel/panel/stack_panel/input_slots_holder": { "file": "ui/stonecutter_screen_pocket.json", "type": "panel", "children": [ "input_slots_stack_panel" ] }, "stonecutter_content_stack_panel/panel/stack_panel/input_slots_holder/input_slots_stack_panel": { "file": "ui/stonecutter_screen_pocket.json", "type": "stack_panel", "extend": { "name": "input_slots_stack_panel", "namespace": "stonecutter_pocket" } }, "stonecutter_content_stack_panel/panel/stack_panel/padding_3": { "file": "ui/stonecutter_screen_pocket.json", "type": "panel" }, "stonecutter_content_stack_panel/panel/stack_panel/arrow_holder": { "file": "ui/stonecutter_screen_pocket.json", "type": "panel", "children": [ "vertical_arrow_icon" ] }, "stonecutter_content_stack_panel/panel/stack_panel/arrow_holder/vertical_arrow_icon": { "file": "ui/stonecutter_screen_pocket.json", "type": "image", "extend": { "name": "vertical_arrow_icon", "namespace": "stonecutter_pocket" } }, "stonecutter_content_stack_panel/panel/stack_panel/padding_4": { "file": "ui/stonecutter_screen_pocket.json", "type": "panel" }, "stonecutter_content_stack_panel/panel/stack_panel/result_item_slot_holder": { "file": "ui/stonecutter_screen_pocket.json", "type": "panel", "children": [ "result_item_slot" ] }, "stonecutter_content_stack_panel/panel/stack_panel/result_item_slot_holder/result_item_slot": { "file": "ui/stonecutter_screen_pocket.json", "type": "input_panel", "extend": { "name": "result_item_slot", "namespace": "stonecutter_pocket" } }, "stonecutter_content_stack_panel/panel/stack_panel/padding_5": { "file": "ui/stonecutter_screen_pocket.json", "type": "panel" }, "inventory_panel": { "file": "ui/stonecutter_screen_pocket.json", "type": "stack_panel", "children": [ "inventory_title_label_centerer", "inventory_scroll_panel" ] }, "inventory_panel/inventory_title_label_centerer": { "file": "ui/stonecutter_screen_pocket.json", "type": "panel", "children": [ "inventory_title_label" ] }, "inventory_panel/inventory_title_label_centerer/inventory_title_label": { "file": "ui/stonecutter_screen_pocket.json", "type": "label" }, "inventory_panel/inventory_scroll_panel": { "file": "ui/stonecutter_screen_pocket.json", "type": "panel", "extend": { "name": "inventory_scroll_panel", "namespace": "stonecutter_pocket" } }, "inventory_scroll_panel": { "file": "ui/stonecutter_screen_pocket.json", "type": "panel", "extend": { "name": "container_scroll_panel", "namespace": "common" } }, "pattern_button": { "file": "ui/stonecutter_screen_pocket.json", "type": "input_panel", "extend": { "name": "stone_button", "namespace": "stonecutter" } }, "pattern_scroll_panel": { "file": "ui/stonecutter_screen_pocket.json", "type": "panel", "extend": { "name": "scroll_panel", "namespace": "stonecutter" } }, "left_panel": { "file": "ui/stonecutter_screen_pocket.json", "type": "stack_panel", "children": [ "gamepad_helpers_and_tabs_holder", "content" ] }, "left_panel/gamepad_helpers_and_tabs_holder": { "file": "ui/stonecutter_screen_pocket.json", "type": "panel", "children": [ "tabs_left_gamepad_helpers", "navigation_tabs_holder" ] }, "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": { "file": "ui/stonecutter_screen_pocket.json", "type": "panel", "extend": { "name": "tabs_left_gamepad_helpers", "namespace": "common" } }, "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": { "file": "ui/stonecutter_screen_pocket.json", "type": "panel", "children": [ "left_navigation_tabs" ] }, "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": { "file": "ui/stonecutter_screen_pocket.json", "type": "stack_panel", "extend": { "name": "left_navigation_tabs", "namespace": "stonecutter_pocket" } }, "left_panel/content": { "file": "ui/stonecutter_screen_pocket.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "bg", "inventory_panel", "pattern_scroll_panel" ] }, "left_panel/content/bg": { "file": "ui/stonecutter_screen_pocket.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "left_panel/content/inventory_panel": { "file": "ui/stonecutter_screen_pocket.json", "type": "stack_panel", "extend": { "name": "inventory_panel", "namespace": "stonecutter_pocket" } }, "left_panel/content/pattern_scroll_panel": { "file": "ui/stonecutter_screen_pocket.json", "type": "panel", "extend": { "name": "pattern_scroll_panel", "namespace": "stonecutter_pocket" } }, "left_tab_stones": { "file": "ui/stonecutter_screen_pocket.json", "type": "panel", "extend": { "name": "pocket_tab_left", "namespace": "common_tabs" } }, "left_tab_inventory": { "file": "ui/stonecutter_screen_pocket.json", "type": "panel", "extend": { "name": "pocket_tab_left", "namespace": "common_tabs" } }, "left_navigation_tabs": { "file": "ui/stonecutter_screen_pocket.json", "type": "stack_panel", "children": [ "left_tab_stones", "padding", "left_tab_inventory" ] }, "left_navigation_tabs/left_tab_stones": { "file": "ui/stonecutter_screen_pocket.json", "type": "panel", "extend": { "name": "left_tab_stones", "namespace": "stonecutter_pocket" } }, "left_navigation_tabs/padding": { "file": "ui/stonecutter_screen_pocket.json", "type": "panel" }, "left_navigation_tabs/left_tab_inventory": { "file": "ui/stonecutter_screen_pocket.json", "type": "panel", "extend": { "name": "left_tab_inventory", "namespace": "stonecutter_pocket" } }, "pocket_hotbar_and_content_panels": { "file": "ui/stonecutter_screen_pocket.json", "type": "stack_panel", "extend": { "name": "pocket_hotbar_and_content_panels", "namespace": "common" } }, "stonecutter_panel": { "file": "ui/stonecutter_screen_pocket.json", "type": "panel", "children": [ "pocket_hotbar_and_content_panels", "container_gamepad_helpers", "selected_item_details_factory", "item_lock_notification_factory", "inventory_selected_icon_button", "inventory_take_progress_icon_button", "flying_item_renderer" ] }, "stonecutter_panel/pocket_hotbar_and_content_panels": { "file": "ui/stonecutter_screen_pocket.json", "type": "stack_panel", "extend": { "name": "pocket_hotbar_and_content_panels", "namespace": "stonecutter_pocket" } }, "stonecutter_panel/container_gamepad_helpers": { "file": "ui/stonecutter_screen_pocket.json", "type": "stack_panel", "extend": { "name": "container_gamepad_helpers", "namespace": "common" } }, "stonecutter_panel/selected_item_details_factory": { "file": "ui/stonecutter_screen_pocket.json", "type": "factory", "extend": { "name": "selected_item_details_factory", "namespace": "common" } }, "stonecutter_panel/item_lock_notification_factory": { "file": "ui/stonecutter_screen_pocket.json", "type": "factory", "extend": { "name": "item_lock_notification_factory", "namespace": "common" } }, "stonecutter_panel/inventory_selected_icon_button": { "file": "ui/stonecutter_screen_pocket.json", "type": "button", "extend": { "name": "inventory_selected_icon_button", "namespace": "common" } }, "stonecutter_panel/inventory_take_progress_icon_button": { "file": "ui/stonecutter_screen_pocket.json", "type": "button", "extend": { "name": "inventory_take_progress_icon_button", "namespace": "common" } }, "stonecutter_panel/flying_item_renderer": { "file": "ui/stonecutter_screen_pocket.json", "type": "custom", "extend": { "name": "flying_item_renderer", "namespace": "common" } } }, "storage_management": { "lock_icon": { "file": "ui/storage_management.json", "type": "image" }, "storage_header_panel": { "file": "ui/storage_management.json", "type": "panel", "children": [ "header_panel" ] }, "storage_header_panel/header_panel": { "file": "ui/storage_management.json", "type": "stack_panel", "children": [ "file_storage_dropdown", "file_storage_dropdown_edu", "clear_cache_button_panel", "clear_download_cache_button_panel", "clear_screenshots_cache_button_panel", "delete_local_screenshots_button_panel", "panel" ] }, "storage_header_panel/header_panel/file_storage_dropdown": { "file": "ui/storage_management.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "storage_header_panel/header_panel/file_storage_dropdown_edu": { "file": "ui/storage_management.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "storage_header_panel/header_panel/clear_cache_button_panel": { "file": "ui/storage_management.json", "type": "panel", "children": [ "clear_cache_button" ] }, "storage_header_panel/header_panel/clear_cache_button_panel/clear_cache_button": { "file": "ui/storage_management.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "storage_header_panel/header_panel/clear_download_cache_button_panel": { "file": "ui/storage_management.json", "type": "panel", "children": [ "clear_download_button" ] }, "storage_header_panel/header_panel/clear_download_cache_button_panel/clear_download_button": { "file": "ui/storage_management.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "storage_header_panel/header_panel/clear_screenshots_cache_button_panel": { "file": "ui/storage_management.json", "type": "panel", "children": [ "clear_screenshots_cache_button" ] }, "storage_header_panel/header_panel/clear_screenshots_cache_button_panel/clear_screenshots_cache_button": { "file": "ui/storage_management.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "storage_header_panel/header_panel/delete_local_screenshots_button_panel": { "file": "ui/storage_management.json", "type": "panel", "children": [ "delete_local_screenshots_button" ] }, "storage_header_panel/header_panel/delete_local_screenshots_button_panel/delete_local_screenshots_button": { "file": "ui/storage_management.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "storage_header_panel/header_panel/panel": { "file": "ui/storage_management.json", "type": "panel", "children": [ "multiselect_button" ] }, "storage_header_panel/header_panel/panel/multiselect_button": { "file": "ui/storage_management.json", "type": "panel", "extend": { "name": "light_image_toggle", "namespace": "common_toggles" } }, "x_button_image": { "file": "ui/storage_management.json", "type": "image" }, "storage_main_panel": { "file": "ui/storage_management.json", "type": "panel", "children": [ "scroll_content" ] }, "storage_main_panel/scroll_content": { "file": "ui/storage_management.json", "type": "stack_panel", "extend": { "name": "storage_scroll_pane", "namespace": "storage_management" } }, "storage_footer_panel": { "file": "ui/storage_management.json", "type": "panel", "children": [ "visibleContent" ] }, "storage_footer_panel/visibleContent": { "file": "ui/storage_management.json", "type": "stack_panel", "children": [ "delete_button", "share_button" ] }, "storage_footer_panel/visibleContent/delete_button": { "file": "ui/storage_management.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "storage_footer_panel/visibleContent/share_button": { "file": "ui/storage_management.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "delete_checkbox": { "file": "ui/storage_management.json", "type": "panel", "children": [ "selected_checkbox_image" ] }, "delete_checkbox/selected_checkbox_image": { "file": "ui/storage_management.json", "type": "image", "extend": { "name": "checkbox_image", "namespace": "common" } }, "generic_button": { "file": "ui/storage_management.json", "type": "image", "children": [ "picture", "text" ] }, "generic_button/picture": { "file": "ui/storage_management.json", "type": "image" }, "generic_button/text": { "file": "ui/storage_management.json", "type": "label" }, "common_scroll_pane": { "file": "ui/storage_management.json", "type": "panel" }, "common_label": { "file": "ui/storage_management.json", "type": "label" }, "main_content_panel": { "file": "ui/storage_management.json", "type": "stack_panel", "children": [ "panel" ] }, "main_content_panel/panel": { "file": "ui/storage_management.json", "type": "stack_panel", "children": [ "spacing", "delete_checkbox", "image_panel", "text_panel_offset" ] }, "main_content_panel/panel/spacing": { "file": "ui/storage_management.json", "type": "panel" }, "main_content_panel/panel/delete_checkbox": { "file": "ui/storage_management.json", "type": "panel", "extend": { "name": "delete_checkbox", "namespace": "storage_management" } }, "main_content_panel/panel/image_panel": { "file": "ui/storage_management.json", "type": "panel", "children": [ "image_border" ] }, "main_content_panel/panel/image_panel/image_border": { "file": "ui/storage_management.json", "type": "image", "children": [ "image" ] }, "main_content_panel/panel/image_panel/image_border/image": { "file": "ui/storage_management.json", "type": "image" }, "main_content_panel/panel/text_panel_offset": { "file": "ui/storage_management.json", "type": "panel", "children": [ "text_panel" ] }, "main_content_panel/panel/text_panel_offset/text_panel": { "file": "ui/storage_management.json", "type": "panel", "children": [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ] }, "main_content_panel/panel/text_panel_offset/text_panel/0": { "file": "ui/storage_management.json", "type": "unknown" }, "common_main_button": { "file": "ui/storage_management.json", "type": "panel", "children": [ "background", "border", "main_content_panel" ] }, "common_main_button/background": { "file": "ui/storage_management.json", "type": "image" }, "common_main_button/border": { "file": "ui/storage_management.json", "type": "image" }, "common_main_button/main_content_panel": { "file": "ui/storage_management.json", "type": "stack_panel", "extend": { "name": "main_content_panel", "namespace": "storage_management" } }, "base_glyph": { "file": "ui/storage_management.json", "type": "stack_panel", "children": [ "image", "padding" ] }, "base_glyph/image": { "file": "ui/storage_management.json", "type": "image" }, "base_glyph/padding": { "file": "ui/storage_management.json", "type": "panel" }, "main_item_text": { "file": "ui/storage_management.json", "type": "stack_panel", "extend": { "name": "main_content_panel", "namespace": "storage_management" } }, "grey_button": { "file": "ui/storage_management.json", "type": "panel", "extend": { "name": "common_main_button", "namespace": "storage_management" } }, "icon_item_text": { "file": "ui/storage_management.json", "type": "panel", "extend": { "name": "grey_button", "namespace": "storage_management" } }, "world_item_text": { "file": "ui/storage_management.json", "type": "panel", "extend": { "name": "grey_button", "namespace": "storage_management" } }, "storage_main_item_toggle": { "file": "ui/storage_management.json", "type": "stack_panel", "children": [ "main_item_toggle", "contentPanel", "padding" ] }, "storage_main_item_toggle/main_item_toggle": { "file": "ui/storage_management.json", "type": "panel", "extend": { "name": "light_ui_toggle", "namespace": "common_toggles" } }, "storage_main_item_toggle/contentPanel": { "file": "ui/storage_management.json", "type": "stack_panel" }, "storage_main_item_toggle/padding": { "file": "ui/storage_management.json", "type": "panel" }, "storage_scroll_pane": { "file": "ui/storage_management.json", "type": "stack_panel", "children": [ "category_stack_panel", "multiselect_padding" ] }, "storage_scroll_pane/category_stack_panel": { "file": "ui/storage_management.json", "type": "stack_panel", "children": [ "stack_panel", "legacy_world_stack_panel", "retailtopreview_world_stack_panel" ] }, "storage_scroll_pane/category_stack_panel/stack_panel": { "file": "ui/storage_management.json", "type": "stack_panel" }, "storage_scroll_pane/category_stack_panel/legacy_world_stack_panel": { "file": "ui/storage_management.json", "type": "stack_panel", "children": [ "legacy_world_controls" ] }, "storage_scroll_pane/category_stack_panel/legacy_world_stack_panel/legacy_world_controls": { "file": "ui/storage_management.json", "type": "stack_panel", "extend": { "name": "storage_main_item_legacy_world_toggle", "namespace": "storage_management" } }, "storage_scroll_pane/category_stack_panel/retailtopreview_world_stack_panel": { "file": "ui/storage_management.json", "type": "stack_panel", "children": [ "retailtopreview_world_controls" ] }, "storage_scroll_pane/category_stack_panel/retailtopreview_world_stack_panel/retailtopreview_world_controls": { "file": "ui/storage_management.json", "type": "stack_panel", "extend": { "name": "storage_main_item_retailtopreview_world_toggle", "namespace": "storage_management" } }, "storage_scroll_pane/multiselect_padding": { "file": "ui/storage_management.json", "type": "panel" }, "world_controls": { "file": "ui/storage_management.json", "type": "stack_panel", "extend": { "name": "storage_main_item_toggle", "namespace": "storage_management" } }, "world_template_controls": { "file": "ui/storage_management.json", "type": "stack_panel", "extend": { "name": "storage_main_item_toggle", "namespace": "storage_management" } }, "resource_controls": { "file": "ui/storage_management.json", "type": "stack_panel", "extend": { "name": "storage_main_item_toggle", "namespace": "storage_management" } }, "behavior_controls": { "file": "ui/storage_management.json", "type": "stack_panel", "extend": { "name": "storage_main_item_toggle", "namespace": "storage_management" } }, "skin_controls": { "file": "ui/storage_management.json", "type": "stack_panel", "extend": { "name": "storage_main_item_toggle", "namespace": "storage_management" } }, "cached_controls": { "file": "ui/storage_management.json", "type": "stack_panel", "extend": { "name": "storage_main_item_toggle", "namespace": "storage_management" } }, "resource_sub_item": { "file": "ui/storage_management.json", "type": "stack_panel", "children": [ "dummy_panel", "main_panel" ] }, "resource_sub_item/dummy_panel": { "file": "ui/storage_management.json", "type": "panel" }, "resource_sub_item/main_panel": { "file": "ui/storage_management.json", "type": "panel", "children": [ "content" ] }, "resource_sub_item/main_panel/content": { "file": "ui/storage_management.json", "type": "unknown" }, "resource_toggle": { "file": "ui/storage_management.json", "type": "stack_panel", "children": [ "content_toggle", "item_button_panel" ] }, "resource_toggle/content_toggle": { "file": "ui/storage_management.json", "type": "toggle", "extend": { "name": "toggle", "namespace": "common" }, "children": [ "default", "hover", "unchecked", "unchecked_hover" ] }, "resource_toggle/content_toggle/default": { "file": "ui/storage_management.json", "type": "unknown" }, "resource_toggle/content_toggle/hover": { "file": "ui/storage_management.json", "type": "unknown" }, "resource_toggle/content_toggle/unchecked": { "file": "ui/storage_management.json", "type": "unknown" }, "resource_toggle/content_toggle/unchecked_hover": { "file": "ui/storage_management.json", "type": "unknown" }, "resource_toggle/item_button_panel": { "file": "ui/storage_management.json", "type": "input_panel", "children": [ "y_sizing_panel" ] }, "resource_toggle/item_button_panel/y_sizing_panel": { "file": "ui/storage_management.json", "type": "panel", "children": [ "border" ] }, "resource_toggle/item_button_panel/y_sizing_panel/border": { "file": "ui/storage_management.json", "type": "image", "children": [ "button_panel" ] }, "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel": { "file": "ui/storage_management.json", "type": "stack_panel", "children": [ "blank", "padding_0", "generate_texture_list_panel", "padding_1", "delete_button", "padding_2", "share_panel", "padding_3", "blank_3", "padding_4", "dependency_panel" ] }, "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/blank": { "file": "ui/storage_management.json", "type": "panel", "extend": { "name": "sub_item_blank_button", "namespace": "storage_management" } }, "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_0": { "file": "ui/storage_management.json", "type": "panel" }, "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel": { "file": "ui/storage_management.json", "type": "panel", "children": [ "blank", "generate_texture_list_button" ] }, "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel/blank": { "file": "ui/storage_management.json", "type": "panel", "extend": { "name": "sub_item_blank_button", "namespace": "storage_management" } }, "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/generate_texture_list_panel/generate_texture_list_button": { "file": "ui/storage_management.json", "type": "button", "extend": { "name": "sub_item_tray_button", "namespace": "storage_management" } }, "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_1": { "file": "ui/storage_management.json", "type": "panel" }, "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/delete_button": { "file": "ui/storage_management.json", "type": "button", "extend": { "name": "sub_item_tray_button", "namespace": "storage_management" } }, "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_2": { "file": "ui/storage_management.json", "type": "panel" }, "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel": { "file": "ui/storage_management.json", "type": "panel", "children": [ "blank", "share_button" ] }, "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel/blank": { "file": "ui/storage_management.json", "type": "panel", "extend": { "name": "sub_item_blank_button", "namespace": "storage_management" } }, "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/share_panel/share_button": { "file": "ui/storage_management.json", "type": "button", "extend": { "name": "sub_item_tray_button", "namespace": "storage_management" } }, "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_3": { "file": "ui/storage_management.json", "type": "panel" }, "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/blank_3": { "file": "ui/storage_management.json", "type": "panel", "extend": { "name": "sub_item_blank_button", "namespace": "storage_management" } }, "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/padding_4": { "file": "ui/storage_management.json", "type": "panel" }, "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel": { "file": "ui/storage_management.json", "type": "panel", "children": [ "blank", "dependency_button" ] }, "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel/blank": { "file": "ui/storage_management.json", "type": "panel", "extend": { "name": "sub_item_blank_button", "namespace": "storage_management" } }, "resource_toggle/item_button_panel/y_sizing_panel/border/button_panel/dependency_panel/dependency_button": { "file": "ui/storage_management.json", "type": "button", "extend": { "name": "sub_item_tray_button", "namespace": "storage_management" } }, "sub_item_tray_button": { "file": "ui/storage_management.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "glyph_sub_icon": { "file": "ui/storage_management.json", "type": "image" }, "sub_item_blank_button": { "file": "ui/storage_management.json", "type": "panel", "extend": { "name": "new_ui_button_panel", "namespace": "common_buttons" } }, "texture_icon_text": { "file": "ui/storage_management.json", "type": "panel", "extend": { "name": "icon_item_text", "namespace": "storage_management" } }, "texture_icon_sub_item": { "file": "ui/storage_management.json", "type": "panel", "extend": { "name": "texture_icon_text", "namespace": "storage_management" } }, "version_sub_item": { "file": "ui/storage_management.json", "type": "panel", "extend": { "name": "texture_icon_text", "namespace": "storage_management" } }, "pack_description_sub_item": { "file": "ui/storage_management.json", "type": "panel", "extend": { "name": "texture_icon_text", "namespace": "storage_management" } }, "world_sub_text": { "file": "ui/storage_management.json", "type": "panel", "extend": { "name": "world_item_text", "namespace": "storage_management" } }, "world_template_sub_text": { "file": "ui/storage_management.json", "type": "panel", "extend": { "name": "world_item_text", "namespace": "storage_management" } }, "basic_sub_item": { "file": "ui/storage_management.json", "type": "panel", "extend": { "name": "icon_item_text", "namespace": "storage_management" } }, "dropdown_button": { "file": "ui/storage_management.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "dropdown_button_content": { "file": "ui/storage_management.json", "type": "stack_panel", "children": [ "image_panel", "text_panel" ] }, "dropdown_button_content/image_panel": { "file": "ui/storage_management.json", "type": "panel", "children": [ "icon" ] }, "dropdown_button_content/image_panel/icon": { "file": "ui/storage_management.json", "type": "image" }, "dropdown_button_content/text_panel": { "file": "ui/storage_management.json", "type": "panel", "children": [ "main_label" ] }, "dropdown_button_content/text_panel/main_label": { "file": "ui/storage_management.json", "type": "label", "extend": { "name": "common_label", "namespace": "storage_management" } }, "filter_options": { "file": "ui/storage_management.json", "type": "input_panel", "children": [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ] }, "filter_options/0": { "file": "ui/storage_management.json", "type": "unknown" }, "light_assets": { "file": "ui/storage_management.json", "type": "panel" }, "button_add": { "file": "ui/storage_management.json", "type": "image" }, "sort_panel": { "file": "ui/storage_management.json", "type": "panel", "extend": { "name": "light_assets", "namespace": "storage_management" }, "children": [ "default" ] }, "sort_panel/default": { "file": "ui/storage_management.json", "type": "panel", "extend": { "name": "new_ui_button_panel", "namespace": "common_buttons" } }, "sort_toggle": { "file": "ui/storage_management.json", "type": "toggle", "extend": { "name": "toggle", "namespace": "common" } }, "storage_scroll_panel": { "file": "ui/storage_management.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "storage_main_item_legacy_world_toggle": { "file": "ui/storage_management.json", "type": "stack_panel", "children": [ "main_item_toggle", "contentPanel", "padding" ] }, "storage_main_item_legacy_world_toggle/main_item_toggle": { "file": "ui/storage_management.json", "type": "panel", "extend": { "name": "light_ui_toggle", "namespace": "common_toggles" } }, "storage_main_item_legacy_world_toggle/contentPanel": { "file": "ui/storage_management.json", "type": "stack_panel", "children": [ "sync_legacy_world_button_panel", "dummy_panel", "sync_legacy_world_description_panel", "itemsPanel", "sync_legacy_world_conversion_description_panel_dummy_panel", "sync_legacy_world_conversion_description_panel", "loading_legacy_worlds_panel" ] }, "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel": { "file": "ui/storage_management.json", "type": "stack_panel", "children": [ "dummy_panel", "sync_legacy_world_button" ] }, "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel/dummy_panel": { "file": "ui/storage_management.json", "type": "panel" }, "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_button_panel/sync_legacy_world_button": { "file": "ui/storage_management.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "storage_main_item_legacy_world_toggle/contentPanel/dummy_panel": { "file": "ui/storage_management.json", "type": "panel" }, "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel": { "file": "ui/storage_management.json", "type": "stack_panel", "children": [ "dummy_panel", "sync_legacy_world_description" ] }, "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel/dummy_panel": { "file": "ui/storage_management.json", "type": "panel" }, "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_description_panel/sync_legacy_world_description": { "file": "ui/storage_management.json", "type": "label" }, "storage_main_item_legacy_world_toggle/contentPanel/itemsPanel": { "file": "ui/storage_management.json", "type": "stack_panel" }, "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel_dummy_panel": { "file": "ui/storage_management.json", "type": "panel" }, "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel": { "file": "ui/storage_management.json", "type": "stack_panel", "children": [ "dummy_panel", "sync_legacy_world_conversion_description" ] }, "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel/dummy_panel": { "file": "ui/storage_management.json", "type": "panel" }, "storage_main_item_legacy_world_toggle/contentPanel/sync_legacy_world_conversion_description_panel/sync_legacy_world_conversion_description": { "file": "ui/storage_management.json", "type": "label" }, "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel": { "file": "ui/storage_management.json", "type": "image", "extend": { "name": "label_background", "namespace": "play" }, "children": [ "loading_legacy_worlds_label", "padding", "progress_loading_bars" ] }, "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/loading_legacy_worlds_label": { "file": "ui/storage_management.json", "type": "label" }, "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/padding": { "file": "ui/storage_management.json", "type": "panel" }, "storage_main_item_legacy_world_toggle/contentPanel/loading_legacy_worlds_panel/progress_loading_bars": { "file": "ui/storage_management.json", "type": "image" }, "storage_main_item_legacy_world_toggle/padding": { "file": "ui/storage_management.json", "type": "panel" }, "legacy_world_main_item_text": { "file": "ui/storage_management.json", "type": "stack_panel", "extend": { "name": "main_content_panel", "namespace": "storage_management" } }, "storage_main_item_retailtopreview_world_toggle": { "file": "ui/storage_management.json", "type": "stack_panel", "children": [ "main_item_toggle", "contentPanel", "padding" ] }, "storage_main_item_retailtopreview_world_toggle/main_item_toggle": { "file": "ui/storage_management.json", "type": "panel", "extend": { "name": "light_ui_toggle", "namespace": "common_toggles" } }, "storage_main_item_retailtopreview_world_toggle/contentPanel": { "file": "ui/storage_management.json", "type": "stack_panel", "children": [ "sync_retailtopreview_world_button_panel", "dummy_panel", "sync_retailtopreview_world_description_panel", "itemsPanel", "sync_retailtopreview_world_conversion_description_panel_dummy_panel", "sync_retailtopreview_world_conversion_description_panel", "loading_retailtopreview_worlds_panel" ] }, "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel": { "file": "ui/storage_management.json", "type": "stack_panel", "children": [ "dummy_panel", "sync_retailtopreview_world_button" ] }, "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel/dummy_panel": { "file": "ui/storage_management.json", "type": "panel" }, "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_button_panel/sync_retailtopreview_world_button": { "file": "ui/storage_management.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "storage_main_item_retailtopreview_world_toggle/contentPanel/dummy_panel": { "file": "ui/storage_management.json", "type": "panel" }, "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel": { "file": "ui/storage_management.json", "type": "stack_panel", "children": [ "dummy_panel", "sync_retailtopreview_world_description" ] }, "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel/dummy_panel": { "file": "ui/storage_management.json", "type": "panel" }, "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_description_panel/sync_retailtopreview_world_description": { "file": "ui/storage_management.json", "type": "label" }, "storage_main_item_retailtopreview_world_toggle/contentPanel/itemsPanel": { "file": "ui/storage_management.json", "type": "stack_panel" }, "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel_dummy_panel": { "file": "ui/storage_management.json", "type": "panel" }, "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel": { "file": "ui/storage_management.json", "type": "stack_panel", "children": [ "dummy_panel", "sync_retailtopreview_world_conversion_description" ] }, "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel/dummy_panel": { "file": "ui/storage_management.json", "type": "panel" }, "storage_main_item_retailtopreview_world_toggle/contentPanel/sync_retailtopreview_world_conversion_description_panel/sync_retailtopreview_world_conversion_description": { "file": "ui/storage_management.json", "type": "label" }, "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel": { "file": "ui/storage_management.json", "type": "image", "extend": { "name": "label_background", "namespace": "play" }, "children": [ "loading_retailtopreview_worlds_label", "padding", "progress_loading_bars" ] }, "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/loading_retailtopreview_worlds_label": { "file": "ui/storage_management.json", "type": "label" }, "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/padding": { "file": "ui/storage_management.json", "type": "panel" }, "storage_main_item_retailtopreview_world_toggle/contentPanel/loading_retailtopreview_worlds_panel/progress_loading_bars": { "file": "ui/storage_management.json", "type": "image" }, "storage_main_item_retailtopreview_world_toggle/padding": { "file": "ui/storage_management.json", "type": "panel" }, "retailtopreview_world_main_item_text": { "file": "ui/storage_management.json", "type": "stack_panel", "extend": { "name": "main_content_panel", "namespace": "storage_management" } } }, "storage_management_popup": { "storage_dependency_modal": { "file": "ui/storage_management_popup.json", "type": "input_panel", "extend": { "name": "modal_input_panel", "namespace": "popup_dialog" }, "children": [ "base" ] }, "storage_dependency_modal/base": { "file": "ui/storage_management_popup.json", "type": "unknown", "extend": { "name": "modal_dialog_base", "namespace": "popup_dialog" }, "children": [ "background_with_buttons", "title", "dependencies", "two_buttons" ] }, "storage_dependency_modal/base/background_with_buttons": { "file": "ui/storage_management_popup.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "storage_dependency_modal/base/title": { "file": "ui/storage_management_popup.json", "type": "label", "extend": { "name": "modal_title_text", "namespace": "popup_dialog" } }, "storage_dependency_modal/base/dependencies": { "file": "ui/storage_management_popup.json", "type": "panel", "extend": { "name": "storage_dependency_panel", "namespace": "storage_management_popup" } }, "storage_dependency_modal/base/two_buttons": { "file": "ui/storage_management_popup.json", "type": "panel", "children": [ "disabled_left", "left", "right" ] }, "storage_dependency_modal/base/two_buttons/disabled_left": { "file": "ui/storage_management_popup.json", "type": "unknown", "extend": { "name": "modal_first_button", "namespace": "popup_dialog" } }, "storage_dependency_modal/base/two_buttons/left": { "file": "ui/storage_management_popup.json", "type": "unknown", "extend": { "name": "modal_first_button", "namespace": "popup_dialog" } }, "storage_dependency_modal/base/two_buttons/right": { "file": "ui/storage_management_popup.json", "type": "unknown", "extend": { "name": "modal_second_button", "namespace": "popup_dialog" } }, "storage_dependency_panel": { "file": "ui/storage_management_popup.json", "type": "panel", "children": [ "scroll" ] }, "storage_dependency_panel/scroll": { "file": "ui/storage_management_popup.json", "type": "panel", "extend": { "name": "storage_dependency_scroll_panel", "namespace": "storage_management_popup" } }, "storage_dependency_scroll_panel": { "file": "ui/storage_management_popup.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "dependency_item_content": { "file": "ui/storage_management_popup.json", "type": "panel", "children": [ "content" ] }, "dependency_item_content/content": { "file": "ui/storage_management_popup.json", "type": "unknown" }, "dependency_scroll_pane": { "file": "ui/storage_management_popup.json", "type": "stack_panel", "children": [ "main_label", "contentPanel" ] }, "dependency_scroll_pane/main_label": { "file": "ui/storage_management_popup.json", "type": "label" }, "dependency_scroll_pane/contentPanel": { "file": "ui/storage_management_popup.json", "type": "stack_panel" }, "dependency_item": { "file": "ui/storage_management_popup.json", "type": "panel", "extend": { "name": "pack_description_sub_item", "namespace": "storage_management" } }, "dependency_item_small": { "file": "ui/storage_management_popup.json", "type": "panel", "extend": { "name": "version_sub_item", "namespace": "storage_management" } }, "dependency_resource_item": { "file": "ui/storage_management_popup.json", "type": "panel", "extend": { "name": "dependency_item", "namespace": "storage_management_popup" } }, "dependency_resource_item_small": { "file": "ui/storage_management_popup.json", "type": "panel", "extend": { "name": "dependency_item_small", "namespace": "storage_management_popup" } }, "dependency_sub_item": { "file": "ui/storage_management_popup.json", "type": "stack_panel", "children": [ "border", "padding" ] }, "dependency_sub_item/border": { "file": "ui/storage_management_popup.json", "type": "image", "children": [ "stack" ] }, "dependency_sub_item/border/stack": { "file": "ui/storage_management_popup.json", "type": "stack_panel", "children": [ "padding_0", "wrapper", "panel_0", "contentPanel", "panel_1", "padding_1" ] }, "dependency_sub_item/border/stack/padding_0": { "file": "ui/storage_management_popup.json", "type": "panel" }, "dependency_sub_item/border/stack/wrapper": { "file": "ui/storage_management_popup.json", "type": "panel", "children": [ "dependency_item" ] }, "dependency_sub_item/border/stack/wrapper/dependency_item": { "file": "ui/storage_management_popup.json", "type": "panel", "extend": { "name": "dependency_item", "namespace": "storage_management_popup" } }, "dependency_sub_item/border/stack/panel_0": { "file": "ui/storage_management_popup.json", "type": "panel", "children": [ "main_label" ] }, "dependency_sub_item/border/stack/panel_0/main_label": { "file": "ui/storage_management_popup.json", "type": "label" }, "dependency_sub_item/border/stack/contentPanel": { "file": "ui/storage_management_popup.json", "type": "stack_panel" }, "dependency_sub_item/border/stack/panel_1": { "file": "ui/storage_management_popup.json", "type": "panel", "children": [ "remove_pack_button" ] }, "dependency_sub_item/border/stack/panel_1/remove_pack_button": { "file": "ui/storage_management_popup.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "dependency_sub_item/border/stack/padding_1": { "file": "ui/storage_management_popup.json", "type": "panel" }, "dependency_sub_item/padding": { "file": "ui/storage_management_popup.json", "type": "panel" }, "sharing_popup_content": { "file": "ui/storage_management_popup.json", "type": "panel", "extend": { "name": "progress_dialog_popup", "namespace": "popup_dialog" } } }, "common_store": { "store_base_screen": { "file": "ui/store_common.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "label": { "file": "ui/store_common.json", "type": "label" }, "offer_image_panel": { "file": "ui/store_common.json", "type": "image" }, "banner_fill": { "file": "ui/store_common.json", "type": "image" }, "store_description_background": { "file": "ui/store_common.json", "type": "image" }, "store_description_background_dark": { "file": "ui/store_common.json", "type": "image" }, "text_style_label": { "file": "ui/store_common.json", "type": "panel", "children": [ "text_label" ] }, "text_style_label/text_label": { "file": "ui/store_common.json", "type": "label" }, "sdl_texture": { "file": "ui/store_common.json", "type": "image" }, "store_offer_grid_button": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "hover", "pressed", "icon_overlay_panel" ] }, "store_offer_grid_button/hover": { "file": "ui/store_common.json", "type": "panel", "children": [ "key_art_size_panel" ] }, "store_offer_grid_button/hover/key_art_size_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "key_art_frame" ] }, "store_offer_grid_button/hover/key_art_size_panel/key_art_frame": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "square_image_border_white", "namespace": "common" } }, "store_offer_grid_button/pressed": { "file": "ui/store_common.json", "type": "panel", "children": [ "key_art_size_panel" ] }, "store_offer_grid_button/pressed/key_art_size_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "key_art_frame" ] }, "store_offer_grid_button/pressed/key_art_size_panel/key_art_frame": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "square_image_border_white", "namespace": "common" } }, "store_offer_grid_button/icon_overlay_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "icon_overlay_panel", "namespace": "common_store" } }, "ribbon_bar_text_background": { "file": "ui/store_common.json", "type": "image" }, "ribbon_bar_red_hover_text_background": { "file": "ui/store_common.json", "type": "image" }, "store_background": { "file": "ui/store_common.json", "type": "image" }, "coin_icon": { "file": "ui/store_common.json", "type": "image" }, "tag": { "file": "ui/store_common.json", "type": "image", "children": [ "new_offer_label" ] }, "tag/new_offer_label": { "file": "ui/store_common.json", "type": "label" }, "marketplace_error_icon": { "file": "ui/store_common.json", "type": "image" }, "new_offer_icon": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "tag", "namespace": "common_store" } }, "status_new_offer_icon": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "new_offer_icon", "namespace": "common_store" } }, "update_balloon_icon": { "file": "ui/store_common.json", "type": "image" }, "badge_overlay_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "top", "bottom" ] }, "badge_overlay_panel/top": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "badge_overlay_stack", "namespace": "common_store" } }, "badge_overlay_panel/bottom": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "badge_overlay_stack", "namespace": "common_store" } }, "badge_overlay_stack": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "left_badge", "padding", "right_badge" ] }, "badge_overlay_stack/left_badge": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "content_card_badge", "namespace": "common_store" } }, "badge_overlay_stack/padding": { "file": "ui/store_common.json", "type": "panel" }, "badge_overlay_stack/right_badge": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "content_card_badge", "namespace": "common_store" } }, "content_card_tail_image": { "file": "ui/store_common.json", "type": "image" }, "content_card_badge": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "leftTail", "background", "rightTail" ] }, "content_card_badge/leftTail": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "content_card_tail_image", "namespace": "common_store" } }, "content_card_badge/background": { "file": "ui/store_common.json", "type": "image", "children": [ "outline" ] }, "content_card_badge/background/outline": { "file": "ui/store_common.json", "type": "image", "children": [ "badgeStackPanel" ] }, "content_card_badge/background/outline/badgeStackPanel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "paddingLeft", "badgeIcon", "paddingMiddle", "badgeText", "paddingRight" ] }, "content_card_badge/background/outline/badgeStackPanel/paddingLeft": { "file": "ui/store_common.json", "type": "panel" }, "content_card_badge/background/outline/badgeStackPanel/badgeIcon": { "file": "ui/store_common.json", "type": "image" }, "content_card_badge/background/outline/badgeStackPanel/paddingMiddle": { "file": "ui/store_common.json", "type": "panel" }, "content_card_badge/background/outline/badgeStackPanel/badgeText": { "file": "ui/store_common.json", "type": "label" }, "content_card_badge/background/outline/badgeStackPanel/paddingRight": { "file": "ui/store_common.json", "type": "panel" }, "content_card_badge/rightTail": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "content_card_tail_image", "namespace": "common_store" } }, "icon_overlay_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "icon_overlay_position_factory" ] }, "icon_overlay_panel/icon_overlay_position_factory": { "file": "ui/store_common.json", "type": "collection_panel", "extend": { "name": "icon_overlay_position_factory", "namespace": "common_store" } }, "icon_overlay_position_factory": { "file": "ui/store_common.json", "type": "collection_panel" }, "top_left_icon_factory": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "icon_factory", "namespace": "common_store" } }, "top_middle_icon_factory": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "icon_factory", "namespace": "common_store" } }, "top_right_icon_factory": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "icon_factory", "namespace": "common_store" } }, "left_middle_icon_factory": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "icon_factory", "namespace": "common_store" } }, "center_icon_factory": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "icon_factory", "namespace": "common_store" } }, "right_middle_icon_factory": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "icon_factory", "namespace": "common_store" } }, "bottom_left_icon_factory": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "icon_factory", "namespace": "common_store" } }, "bottom_middle_icon_factory": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "icon_factory", "namespace": "common_store" } }, "bottom_right_icon_factory": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "icon_factory", "namespace": "common_store" } }, "icon_factory": { "file": "ui/store_common.json", "type": "stack_panel" }, "new_offer_icon_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "new_icon" ] }, "new_offer_icon_panel/new_icon": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "status_new_offer_icon", "namespace": "common_store" } }, "update_offer_icon_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "update_icon" ] }, "update_offer_icon_panel/update_icon": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "update_balloon_icon", "namespace": "common_store" } }, "icon_overlay_image_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "image_stack_panel" ] }, "icon_overlay_image_panel/image_stack_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "icon", "padding" ] }, "icon_overlay_image_panel/image_stack_panel/icon": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "status_icon_overlay", "namespace": "common_store" } }, "icon_overlay_image_panel/image_stack_panel/padding": { "file": "ui/store_common.json", "type": "panel" }, "icon_overlay_sdl_padding": { "file": "ui/store_common.json", "type": "panel" }, "status_icon_overlay": { "file": "ui/store_common.json", "type": "image", "children": [ "icon_overlay_label_panel" ] }, "status_icon_overlay/icon_overlay_label_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "left_margin_padding", "left_padding_1", "left_padding_2", "icon_panel", "right_padding_1", "right_padding_2", "right_margin_padding" ] }, "status_icon_overlay/icon_overlay_label_panel/left_margin_padding": { "file": "ui/store_common.json", "type": "panel" }, "status_icon_overlay/icon_overlay_label_panel/left_padding_1": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "icon_overlay_sdl_padding", "namespace": "common_store" } }, "status_icon_overlay/icon_overlay_label_panel/left_padding_2": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "icon_overlay_sdl_padding", "namespace": "common_store" } }, "status_icon_overlay/icon_overlay_label_panel/icon_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "icon_overlay_label" ] }, "status_icon_overlay/icon_overlay_label_panel/icon_panel/icon_overlay_label": { "file": "ui/store_common.json", "type": "label" }, "status_icon_overlay/icon_overlay_label_panel/right_padding_1": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "icon_overlay_sdl_padding", "namespace": "common_store" } }, "status_icon_overlay/icon_overlay_label_panel/right_padding_2": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "icon_overlay_sdl_padding", "namespace": "common_store" } }, "status_icon_overlay/icon_overlay_label_panel/right_margin_padding": { "file": "ui/store_common.json", "type": "panel" }, "status_icon_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "new_offer_icon", "update_icon" ] }, "status_icon_panel/new_offer_icon": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "status_new_offer_icon", "namespace": "common_store" } }, "status_icon_panel/update_icon": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "update_balloon_icon", "namespace": "common_store" } }, "prompt_icon": { "file": "ui/store_common.json", "type": "image" }, "up_arrow_icon": { "file": "ui/store_common.json", "type": "image" }, "plus_icon": { "file": "ui/store_common.json", "type": "image" }, "bang_icon": { "file": "ui/store_common.json", "type": "image" }, "user_icon_small": { "file": "ui/store_common.json", "type": "image" }, "user_icon_hover": { "file": "ui/store_common.json", "type": "image" }, "gamepad_store_helper": { "file": "ui/store_common.json", "type": "panel" }, "purchase_coins_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "plus_button" ] }, "purchase_coins_panel/plus_button": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "inventory_panel": { "file": "ui/store_common.json", "type": "input_panel", "children": [ "inventory_button" ] }, "inventory_panel/inventory_button": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "progress_loading_bars": { "file": "ui/store_common.json", "type": "image" }, "progress_loading_spinner": { "file": "ui/store_common.json", "type": "image" }, "progress_loading": { "file": "ui/store_common.json", "type": "panel", "children": [ "centerer", "progress_loading_outline", "stack_panel", "store_failure_code" ] }, "progress_loading/centerer": { "file": "ui/store_common.json", "type": "panel", "children": [ "progress_loading_spinner" ] }, "progress_loading/centerer/progress_loading_spinner": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "progress_loading_spinner", "namespace": "common_store" } }, "progress_loading/progress_loading_outline": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "banner_fill", "namespace": "common_store" } }, "progress_loading/stack_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "top_panel", "padding", "image" ] }, "progress_loading/stack_panel/top_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "error_glyph_panel", "padding", "store_failure_text" ] }, "progress_loading/stack_panel/top_panel/error_glyph_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "error_image" ] }, "progress_loading/stack_panel/top_panel/error_glyph_panel/error_image": { "file": "ui/store_common.json", "type": "image" }, "progress_loading/stack_panel/top_panel/padding": { "file": "ui/store_common.json", "type": "panel" }, "progress_loading/stack_panel/top_panel/store_failure_text": { "file": "ui/store_common.json", "type": "label" }, "progress_loading/stack_panel/padding": { "file": "ui/store_common.json", "type": "panel" }, "progress_loading/stack_panel/image": { "file": "ui/store_common.json", "type": "image" }, "progress_loading/store_failure_code": { "file": "ui/store_common.json", "type": "label" }, "store_empty_progress_bar_icon": { "file": "ui/store_common.json", "type": "image" }, "store_full_progress_bar_icon": { "file": "ui/store_common.json", "type": "image" }, "store_progress_bar_nub": { "file": "ui/store_common.json", "type": "image" }, "store_progress_bar_icon": { "file": "ui/store_common.json", "type": "panel", "children": [ "empty_progress_bar_icon", "progress_percent_panel" ] }, "store_progress_bar_icon/empty_progress_bar_icon": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "store_empty_progress_bar_icon", "namespace": "common_store" } }, "store_progress_bar_icon/progress_percent_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "full_progress_bar_icon", "progress_bar_nub" ] }, "store_progress_bar_icon/progress_percent_panel/full_progress_bar_icon": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "store_full_progress_bar_icon", "namespace": "common_store" } }, "store_progress_bar_icon/progress_percent_panel/progress_bar_nub": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "store_progress_bar_nub", "namespace": "common_store" } }, "screen_contents_with_gamepad_helpers": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "dialog_panel", "padding", "gamepad_helpers_panel" ] }, "screen_contents_with_gamepad_helpers/dialog_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "dialog" ] }, "screen_contents_with_gamepad_helpers/dialog_panel/dialog": { "file": "ui/store_common.json", "type": "unknown" }, "screen_contents_with_gamepad_helpers/padding": { "file": "ui/store_common.json", "type": "panel" }, "screen_contents_with_gamepad_helpers/gamepad_helpers_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "gamepad_helpers_a_and_b" ] }, "screen_contents_with_gamepad_helpers/gamepad_helpers_panel/gamepad_helpers_a_and_b": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helpers_a_and_b", "namespace": "common" } }, "text_strike_through": { "file": "ui/store_common.json", "type": "image" }, "markdown_banner": { "file": "ui/store_common.json", "type": "image" }, "markdown_triangle": { "file": "ui/store_common.json", "type": "image" }, "timer_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "timer" ] }, "timer_panel/timer": { "file": "ui/store_common.json", "type": "label" }, "store_offer_type_icon": { "file": "ui/store_common.json", "type": "image" }, "addon_pack_icon": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "store_offer_type_icon", "namespace": "common_store" } }, "addon_pack_small_icon": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "store_offer_type_icon", "namespace": "common_store" } }, "realms_plus_icon": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "store_offer_type_icon", "namespace": "common_store" } }, "resource_pack_icon": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "store_offer_type_icon", "namespace": "common_store" } }, "resource_pack_small_icon": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "store_offer_type_icon", "namespace": "common_store" } }, "skinpack_icon": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "store_offer_type_icon", "namespace": "common_store" } }, "skinpack_small_icon": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "store_offer_type_icon", "namespace": "common_store" } }, "world_icon": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "store_offer_type_icon", "namespace": "common_store" } }, "world_small_icon": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "store_offer_type_icon", "namespace": "common_store" } }, "mashup_icon": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "store_offer_type_icon", "namespace": "common_store" } }, "mashup_small_icon": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "store_offer_type_icon", "namespace": "common_store" } }, "persona_icon": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "store_offer_type_icon", "namespace": "common_store" } }, "persona_small_icon": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "store_offer_type_icon", "namespace": "common_store" } }, "small_padding_panel": { "file": "ui/store_common.json", "type": "panel" }, "resource_pack_small_icon_with_buffer": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "resource_pack_small_icon", "small_padding_panel" ] }, "resource_pack_small_icon_with_buffer/resource_pack_small_icon": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "resource_pack_small_icon", "namespace": "common_store" } }, "resource_pack_small_icon_with_buffer/small_padding_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "small_padding_panel", "namespace": "common_store" } }, "addon_pack_small_icon_with_buffer": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "addon_pack_small_icon", "small_padding_panel" ] }, "addon_pack_small_icon_with_buffer/addon_pack_small_icon": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "addon_pack_small_icon", "namespace": "common_store" } }, "addon_pack_small_icon_with_buffer/small_padding_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "small_padding_panel", "namespace": "common_store" } }, "skinpack_small_icon_with_buffer": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "skinpack_small_icon", "small_padding_panel" ] }, "skinpack_small_icon_with_buffer/skinpack_small_icon": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "skinpack_small_icon", "namespace": "common_store" } }, "skinpack_small_icon_with_buffer/small_padding_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "small_padding_panel", "namespace": "common_store" } }, "world_small_icon_with_buffer": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "world_small_icon", "small_padding_panel" ] }, "world_small_icon_with_buffer/world_small_icon": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "world_small_icon", "namespace": "common_store" } }, "world_small_icon_with_buffer/small_padding_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "small_padding_panel", "namespace": "common_store" } }, "mashup_small_icon_with_buffer": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "mashup_small_icon", "small_padding_panel" ] }, "mashup_small_icon_with_buffer/mashup_small_icon": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "mashup_small_icon", "namespace": "common_store" } }, "mashup_small_icon_with_buffer/small_padding_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "small_padding_panel", "namespace": "common_store" } }, "persona_small_icon_with_buffer": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "persona_small_icon", "small_padding_panel" ] }, "persona_small_icon_with_buffer/persona_small_icon": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "persona_small_icon", "namespace": "common_store" } }, "persona_small_icon_with_buffer/small_padding_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "small_padding_panel", "namespace": "common_store" } }, "realms_icon": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "store_offer_type_icon", "namespace": "common_store" } }, "realms_banner_icon": { "file": "ui/store_common.json", "type": "image" }, "csb_banner_icon": { "file": "ui/store_common.json", "type": "image" }, "csb_expiration": { "file": "ui/store_common.json", "type": "panel", "children": [ "background", "contents" ] }, "csb_expiration/background": { "file": "ui/store_common.json", "type": "image" }, "csb_expiration/contents": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "csb_icon", "pad_0", "text_panel" ] }, "csb_expiration/contents/csb_icon": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "csb_banner_icon", "namespace": "common_store" } }, "csb_expiration/contents/pad_0": { "file": "ui/store_common.json", "type": "panel" }, "csb_expiration/contents/text_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "text" ] }, "csb_expiration/contents/text_panel/text": { "file": "ui/store_common.json", "type": "label" }, "pack_icon_stack": { "file": "ui/store_common.json", "type": "panel", "children": [ "pack_icon_stack_factory" ] }, "pack_icon_stack/pack_icon_stack_factory": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "pack_icon_stack_factory", "namespace": "common_store" } }, "pack_icon_stack_factory": { "file": "ui/store_common.json", "type": "stack_panel" }, "markdown_background": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "banner_panel", "triangle_panel" ] }, "markdown_background/banner_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "banner" ] }, "markdown_background/banner_panel/banner": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "markdown_banner", "namespace": "common_store" }, "children": [ "banner_content_stack_panel" ] }, "markdown_background/banner_panel/banner/banner_content_stack_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "timer_panel", "pack_icon_panel", "markdown_panel" ] }, "markdown_background/banner_panel/banner/banner_content_stack_panel/timer_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "timer_panel", "namespace": "common_store" } }, "markdown_background/banner_panel/banner/banner_content_stack_panel/pack_icon_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "pack_icon_stack" ] }, "markdown_background/banner_panel/banner/banner_content_stack_panel/pack_icon_panel/pack_icon_stack": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "pack_icon_stack", "namespace": "common_store" } }, "markdown_background/banner_panel/banner/banner_content_stack_panel/markdown_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "markdown_label" ] }, "markdown_background/banner_panel/banner/banner_content_stack_panel/markdown_panel/markdown_label": { "file": "ui/store_common.json", "type": "unknown" }, "markdown_background/triangle_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "triangle" ] }, "markdown_background/triangle_panel/triangle": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "markdown_triangle", "namespace": "common_store" } }, "store_top_bar": { "file": "ui/store_common.json", "type": "image" }, "store_top_bar_filler": { "file": "ui/store_common.json", "type": "image" }, "direction_button_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "chevron_image" ] }, "direction_button_panel/chevron_image": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "chevron_image", "namespace": "common" } }, "cycle_pack_button": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "cycle_pack_left_button": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "cycle_pack_button", "namespace": "common_store" } }, "cycle_pack_right_button": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "cycle_pack_button", "namespace": "common_store" } }, "restore_purchases": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "back_content_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "back_button" ] }, "back_content_panel/back_button": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "back_title_button", "namespace": "common" } }, "unlock_with_coins_button_stack_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "coin_panel", "padding_1", "unlock_text" ] }, "unlock_with_coins_button_stack_panel/coin_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "coin" ] }, "unlock_with_coins_button_stack_panel/coin_panel/coin": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "coin_icon", "namespace": "common_store" } }, "unlock_with_coins_button_stack_panel/padding_1": { "file": "ui/store_common.json", "type": "panel" }, "unlock_with_coins_button_stack_panel/unlock_text": { "file": "ui/store_common.json", "type": "label", "extend": { "name": "new_ui_binding_button_label", "namespace": "common_buttons" } }, "store_dialog_with_coin_header": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "main_panel_no_buttons", "namespace": "common_dialogs" } }, "store_coins_title_label": { "file": "ui/store_common.json", "type": "label", "extend": { "name": "standard_title_label", "namespace": "common_dialogs" } }, "search_header_stack": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "gamepad_helper_y_alignment_hack", "search_header_text_box_panel", "store_layout_search_button", "padding0" ] }, "search_header_stack/gamepad_helper_y_alignment_hack": { "file": "ui/store_common.json", "type": "panel", "children": [ "gamepad_helper_y" ] }, "search_header_stack/gamepad_helper_y_alignment_hack/gamepad_helper_y": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_y", "namespace": "common" } }, "search_header_stack/search_header_text_box_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "search_header_text_box", "clear_button" ] }, "search_header_stack/search_header_text_box_panel/search_header_text_box": { "file": "ui/store_common.json", "type": "edit_box", "extend": { "name": "text_edit_box", "namespace": "common" } }, "search_header_stack/search_header_text_box_panel/clear_button": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "close_button", "namespace": "common" } }, "search_header_stack/store_layout_search_button": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "store_layout_ribbon_search_button", "namespace": "store_layout" } }, "search_header_stack/padding0": { "file": "ui/store_common.json", "type": "panel" }, "sdl_store_header_with_coins": { "file": "ui/store_common.json", "type": "panel", "children": [ "sdl_store_header_with_coins_content" ] }, "sdl_store_header_with_coins/sdl_store_header_with_coins_content": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "sdl_store_header_with_coins_content", "namespace": "common_store" } }, "top_bar_with_coins_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "top_bar" ] }, "top_bar_with_coins_panel/top_bar": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "store_top_bar", "namespace": "common_store" }, "children": [ "title_stack_panel" ] }, "top_bar_with_coins_panel/top_bar/title_stack_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "padding1", "back_button_content_panel", "padding2", "header_title_panel", "padding3", "padding4", "status_and_coins", "padding5", "search_header_stack" ] }, "top_bar_with_coins_panel/top_bar/title_stack_panel/padding1": { "file": "ui/store_common.json", "type": "panel" }, "top_bar_with_coins_panel/top_bar/title_stack_panel/back_button_content_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "back_content_panel", "namespace": "common_store" } }, "top_bar_with_coins_panel/top_bar/title_stack_panel/padding2": { "file": "ui/store_common.json", "type": "panel" }, "top_bar_with_coins_panel/top_bar/title_stack_panel/header_title_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "screen_header_title_panel", "namespace": "common" } }, "top_bar_with_coins_panel/top_bar/title_stack_panel/padding3": { "file": "ui/store_common.json", "type": "panel" }, "top_bar_with_coins_panel/top_bar/title_stack_panel/padding4": { "file": "ui/store_common.json", "type": "panel" }, "top_bar_with_coins_panel/top_bar/title_stack_panel/status_and_coins": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "status_with_coins", "namespace": "common_store" } }, "top_bar_with_coins_panel/top_bar/title_stack_panel/padding5": { "file": "ui/store_common.json", "type": "panel" }, "top_bar_with_coins_panel/top_bar/title_stack_panel/search_header_stack": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "search_header_stack", "namespace": "common_store" } }, "sdl_store_header_with_coins_content": { "file": "ui/store_common.json", "type": "panel", "children": [ "top_bar_coins" ] }, "sdl_store_header_with_coins_content/top_bar_coins": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "top_bar_with_coins_panel", "namespace": "common_store" } }, "store_header_with_coins": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "top_bar_coins", "child_control" ] }, "store_header_with_coins/top_bar_coins": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "top_bar_with_coins_panel", "namespace": "common_store" } }, "store_header_with_coins/child_control": { "file": "ui/store_common.json", "type": "unknown" }, "status_with_coins": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "inventory_panel", "padding0", "coin_balance_panel", "padding1" ] }, "status_with_coins/inventory_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "inventory_button" ] }, "status_with_coins/inventory_panel/inventory_button": { "file": "ui/store_common.json", "type": "input_panel", "extend": { "name": "inventory_panel", "namespace": "common_store" } }, "status_with_coins/padding0": { "file": "ui/store_common.json", "type": "panel" }, "status_with_coins/coin_balance_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "coin_balance_panel" ] }, "status_with_coins/coin_balance_panel/coin_balance_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "purchase_coins_panel", "namespace": "common_store" } }, "status_with_coins/padding1": { "file": "ui/store_common.json", "type": "panel" }, "coins_with_title": { "file": "ui/store_common.json", "type": "panel", "children": [ "coin_balance_panel", "title_panel" ] }, "coins_with_title/coin_balance_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "purchase_coins_panel", "namespace": "common_store" } }, "coins_with_title/title_panel": { "file": "ui/store_common.json", "type": "unknown" }, "wallet_button_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "purchase_coin_panel_alignment_hack", "plus_image", "gamepad_helper_x_alignment_hack" ] }, "wallet_button_panel/purchase_coin_panel_alignment_hack": { "file": "ui/store_common.json", "type": "panel", "children": [ "purchase_coin_panel" ] }, "wallet_button_panel/purchase_coin_panel_alignment_hack/purchase_coin_panel": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "coin_balance_panel", "namespace": "common_store" } }, "wallet_button_panel/plus_image": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "new_ui_button_panel", "namespace": "common_buttons" } }, "wallet_button_panel/gamepad_helper_x_alignment_hack": { "file": "ui/store_common.json", "type": "panel", "children": [ "gamepad_helper_x" ] }, "wallet_button_panel/gamepad_helper_x_alignment_hack/gamepad_helper_x": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_x_14", "namespace": "common" } }, "coin_balance_panel": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "ribbon_bar_text_background", "namespace": "common_store" }, "children": [ "coin_purchase_in_progress_panel", "horizontal_coin_stack" ] }, "coin_balance_panel/coin_purchase_in_progress_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "coin_purchase_in_progress" ] }, "coin_balance_panel/coin_purchase_in_progress_panel/coin_purchase_in_progress": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "progress_loading_spinner", "namespace": "common_store" } }, "coin_balance_panel/horizontal_coin_stack": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "padding", "coin_icon", "small_filler", "coin_text_holder" ] }, "coin_balance_panel/horizontal_coin_stack/padding": { "file": "ui/store_common.json", "type": "panel" }, "coin_balance_panel/horizontal_coin_stack/coin_icon": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "coin_icon", "namespace": "common_store" } }, "coin_balance_panel/horizontal_coin_stack/small_filler": { "file": "ui/store_common.json", "type": "panel" }, "coin_balance_panel/horizontal_coin_stack/coin_text_holder": { "file": "ui/store_common.json", "type": "panel", "children": [ "coin_balance_text" ] }, "coin_balance_panel/horizontal_coin_stack/coin_text_holder/coin_balance_text": { "file": "ui/store_common.json", "type": "label" }, "my_account_button_content": { "file": "ui/store_common.json", "type": "panel", "children": [ "my_account_content" ] }, "my_account_button_content/my_account_content": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "user_icon", "my_account_label_panel" ] }, "my_account_button_content/my_account_content/user_icon": { "file": "ui/store_common.json", "type": "image" }, "my_account_button_content/my_account_content/my_account_label_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "padding", "my_account_center_label" ] }, "my_account_button_content/my_account_content/my_account_label_panel/padding": { "file": "ui/store_common.json", "type": "panel" }, "my_account_button_content/my_account_content/my_account_label_panel/my_account_center_label": { "file": "ui/store_common.json", "type": "panel", "children": [ "my_account_label" ] }, "my_account_button_content/my_account_content/my_account_label_panel/my_account_center_label/my_account_label": { "file": "ui/store_common.json", "type": "label" }, "inventory_button_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "inventory_button" ] }, "inventory_button_panel/inventory_button": { "file": "ui/store_common.json", "type": "panel", "children": [ "status_panel" ] }, "inventory_button_panel/inventory_button/status_panel": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "inventory_button", "namespace": "common_store" } }, "inventory_button": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "my_content_button", "updates_with_bevel", "label_alignment_pannel" ] }, "inventory_button/my_content_button": { "file": "ui/store_common.json", "type": "panel", "children": [ "library_icon", "library_icon_bevel" ] }, "inventory_button/my_content_button/library_icon": { "file": "ui/store_common.json", "type": "image" }, "inventory_button/my_content_button/library_icon_bevel": { "file": "ui/store_common.json", "type": "image" }, "inventory_button/updates_with_bevel": { "file": "ui/store_common.json", "type": "panel", "children": [ "update_glyph", "updates_bevel" ] }, "inventory_button/updates_with_bevel/update_glyph": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "bang_icon", "namespace": "common_store" } }, "inventory_button/updates_with_bevel/updates_bevel": { "file": "ui/store_common.json", "type": "image" }, "inventory_button/label_alignment_pannel": { "file": "ui/store_common.json", "type": "panel", "children": [ "label_panel" ] }, "inventory_button/label_alignment_pannel/label_panel": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "ribbon_bar_text_background", "namespace": "common_store" }, "children": [ "inventory_label" ] }, "inventory_button/label_alignment_pannel/label_panel/inventory_label": { "file": "ui/store_common.json", "type": "label" }, "xbl_button_content": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "xbl_icon", "padding_0", "disconnected_label", "padding_1", "error_icon_panel" ] }, "xbl_button_content/xbl_icon": { "file": "ui/store_common.json", "type": "image" }, "xbl_button_content/padding_0": { "file": "ui/store_common.json", "type": "panel" }, "xbl_button_content/disconnected_label": { "file": "ui/store_common.json", "type": "label" }, "xbl_button_content/padding_1": { "file": "ui/store_common.json", "type": "panel" }, "xbl_button_content/error_icon_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "error_icon" ] }, "xbl_button_content/error_icon_panel/error_icon": { "file": "ui/store_common.json", "type": "image" }, "disclaimer_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "legal_text_label" ] }, "disclaimer_panel/legal_text_label": { "file": "ui/store_common.json", "type": "label" }, "grey_bar_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "color_panel", "pad" ] }, "grey_bar_panel/color_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "grey_bar", "green_bar" ] }, "grey_bar_panel/color_panel/grey_bar": { "file": "ui/store_common.json", "type": "image" }, "grey_bar_panel/color_panel/green_bar": { "file": "ui/store_common.json", "type": "image" }, "grey_bar_panel/pad": { "file": "ui/store_common.json", "type": "panel" }, "tab_name_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "bar_panel", "button_panel", "pad_1" ] }, "tab_name_panel/bar_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "green_bar" ] }, "tab_name_panel/bar_panel/green_bar": { "file": "ui/store_common.json", "type": "image" }, "tab_name_panel/button_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "tab_name_button_grey", "tab_name_button_white" ] }, "tab_name_panel/button_panel/tab_name_button_grey": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "light_text_form_fitting_button", "namespace": "common_buttons" } }, "tab_name_panel/button_panel/tab_name_button_white": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "light_text_form_fitting_button", "namespace": "common_buttons" } }, "tab_name_panel/pad_1": { "file": "ui/store_common.json", "type": "panel" }, "store_offer_item_title_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "offer_title" ] }, "store_offer_item_title_panel/offer_title": { "file": "ui/store_common.json", "type": "label", "extend": { "name": "store_offer_title", "namespace": "common_store" } }, "store_offer_item_creator_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "pack_icon_panel", "creator_label" ] }, "store_offer_item_creator_panel/pack_icon_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "pack_icon_stack" ] }, "store_offer_item_creator_panel/pack_icon_panel/pack_icon_stack": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "pack_icon_stack", "namespace": "common_store" } }, "store_offer_item_creator_panel/creator_label": { "file": "ui/store_common.json", "type": "label" }, "store_offer_ratings": { "file": "ui/store_common.json", "type": "panel", "children": [ "rating_text_panel" ] }, "store_offer_ratings/rating_text_panel": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "rating_text_panel", "namespace": "common_store" } }, "vertical_store_offer_price_info_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "sales_banner" ] }, "vertical_store_offer_price_info_panel/sales_banner": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "markdown_stack_panels", "store_offer_prompt_panel", "padding_to_right" ] }, "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "markdown_panel", "padding_markdown_panel_right" ] }, "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels/markdown_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "offer_price_markdown_panel", "namespace": "common_store" } }, "vertical_store_offer_price_info_panel/sales_banner/markdown_stack_panels/padding_markdown_panel_right": { "file": "ui/store_common.json", "type": "panel" }, "vertical_store_offer_price_info_panel/sales_banner/store_offer_prompt_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "offer_status_text" ] }, "vertical_store_offer_price_info_panel/sales_banner/store_offer_prompt_panel/offer_status_text": { "file": "ui/store_common.json", "type": "label" }, "vertical_store_offer_price_info_panel/sales_banner/padding_to_right": { "file": "ui/store_common.json", "type": "panel" }, "store_offer_price_info_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "sales_banner" ] }, "store_offer_price_info_panel/sales_banner": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "sales_markdown_percentage_panel", "fill_panel_with_markdown", "coin_panel", "padding_3", "offer_prompt_panel" ] }, "store_offer_price_info_panel/sales_banner/sales_markdown_percentage_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "store_offer_sales_markdown_percentage_panel", "namespace": "common_store" } }, "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "fill_markdown_panel_left", "markdown_panel", "padding_markdown_panel_right" ] }, "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/fill_markdown_panel_left": { "file": "ui/store_common.json", "type": "panel" }, "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/markdown_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "offer_price_markdown_panel", "namespace": "common_store" } }, "store_offer_price_info_panel/sales_banner/fill_panel_with_markdown/padding_markdown_panel_right": { "file": "ui/store_common.json", "type": "panel" }, "store_offer_price_info_panel/sales_banner/coin_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "offer_coin_icon" ] }, "store_offer_price_info_panel/sales_banner/coin_panel/offer_coin_icon": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "coin_icon", "namespace": "common_store" } }, "store_offer_price_info_panel/sales_banner/padding_3": { "file": "ui/store_common.json", "type": "panel" }, "store_offer_price_info_panel/sales_banner/offer_prompt_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "store_offer_prompt_panel", "namespace": "common_store" } }, "store_offer_sales_markdown_percentage_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "markdown_background" ] }, "store_offer_sales_markdown_percentage_panel/markdown_background": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "markdown_background", "namespace": "common_store" } }, "store_offer_prompt_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "offer_status_text" ] }, "store_offer_prompt_panel/offer_status_text": { "file": "ui/store_common.json", "type": "label" }, "featured_key_art": { "file": "ui/store_common.json", "type": "panel", "children": [ "bg", "focus_border" ] }, "featured_key_art/bg": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "banner_fill", "namespace": "common_store" }, "children": [ "featured_key_art", "progress_loading", "new_offer_icon" ] }, "featured_key_art/bg/featured_key_art": { "file": "ui/store_common.json", "type": "image" }, "featured_key_art/bg/progress_loading": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "progress_loading", "namespace": "common_store" } }, "featured_key_art/bg/new_offer_icon": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "status_new_offer_icon", "namespace": "common_store" } }, "featured_key_art/focus_border": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "square_image_border_white", "namespace": "common" } }, "price_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "featured_icon_panel", "price_label_panel", "padding" ] }, "price_panel/featured_icon_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "featured_offer_coin_icon" ] }, "price_panel/featured_icon_panel/featured_offer_coin_icon": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "coin_icon", "namespace": "common_store" } }, "price_panel/price_label_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "price" ] }, "price_panel/price_label_panel/price": { "file": "ui/store_common.json", "type": "label", "extend": { "name": "label", "namespace": "common_store" } }, "price_panel/padding": { "file": "ui/store_common.json", "type": "panel" }, "vertical_padding_4": { "file": "ui/store_common.json", "type": "panel" }, "vertical_padding_2": { "file": "ui/store_common.json", "type": "panel" }, "sdl_vertical_padding_fill": { "file": "ui/store_common.json", "type": "panel" }, "footer": { "file": "ui/store_common.json", "type": "panel", "children": [ "restore_purchases" ] }, "footer/restore_purchases": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "restore_purchases", "namespace": "common_store" } }, "store_section_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "store_section_panel_outline", "section_panel" ] }, "store_section_panel/store_section_panel_outline": { "file": "ui/store_common.json", "type": "image" }, "store_section_panel/section_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "header", "section_panel" ] }, "store_section_panel/section_panel/header": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "style_header", "namespace": "common_store" } }, "store_section_panel/section_panel/section_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "background" ] }, "store_section_panel/section_panel/section_panel/background": { "file": "ui/store_common.json", "type": "image" }, "store_section_factory": { "file": "ui/store_common.json", "type": "stack_panel" }, "store_static_section_factory": { "file": "ui/store_common.json", "type": "stack_panel" }, "rtx_label": { "file": "ui/store_common.json", "type": "panel", "children": [ "banner" ] }, "rtx_label/banner": { "file": "ui/store_common.json", "type": "image", "children": [ "icon" ] }, "rtx_label/banner/icon": { "file": "ui/store_common.json", "type": "image" }, "subscription_chevron": { "file": "ui/store_common.json", "type": "panel", "children": [ "subscription_chevron_panel" ] }, "subscription_chevron/subscription_chevron_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "csb_chevron", "sales_banner_background" ] }, "subscription_chevron/subscription_chevron_panel/csb_chevron": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "csb_banner", "namespace": "common_store" } }, "subscription_chevron/subscription_chevron_panel/sales_banner_background": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "markdown_banner", "namespace": "common_store" } }, "csb_banner": { "file": "ui/store_common.json", "type": "panel", "children": [ "banner" ] }, "csb_banner/banner": { "file": "ui/store_common.json", "type": "image" }, "pagination_content_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "padding_left", "first_page_button", "pagination_middle_buttons_panel", "padding_right_fill", "go_to_top_button" ] }, "pagination_content_panel/padding_left": { "file": "ui/store_common.json", "type": "panel" }, "pagination_content_panel/first_page_button": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "pagination_content_panel/pagination_middle_buttons_panel": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "pagination_middle_buttons_panel", "namespace": "common_store" } }, "pagination_content_panel/padding_right_fill": { "file": "ui/store_common.json", "type": "panel" }, "pagination_content_panel/go_to_top_button": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "pagination_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "top_padding", "pagination_content", "bottom_padding" ] }, "pagination_panel/top_padding": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "vertical_padding_8px", "namespace": "common" } }, "pagination_panel/pagination_content": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "pagination_content_panel", "namespace": "common_store" } }, "pagination_panel/bottom_padding": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "vertical_padding_8px", "namespace": "common" } }, "store_offer_grid_panel_content": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "header_centerer_panel", "store_offer_grid_factory", "pagination_centerer", "divider" ] }, "store_offer_grid_panel_content/header_centerer_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "vert_stack_centering_panel", "namespace": "common" } }, "store_offer_grid_panel_content/store_offer_grid_factory": { "file": "ui/store_common.json", "type": "collection_panel", "extend": { "name": "store_offer_grid_factory", "namespace": "common_store" } }, "store_offer_grid_panel_content/pagination_centerer": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "vert_stack_centering_panel", "namespace": "common" } }, "store_offer_grid_panel_content/divider": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "section_divider", "namespace": "common" } }, "store_offer_grid_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "vert_stack_centering_panel", "namespace": "common" } }, "pagination_top_button_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "top_button_image" ] }, "pagination_top_button_panel/top_button_image": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "up_arrow_icon", "namespace": "common_store" } }, "pagination_middle_buttons_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "previous_page_button", "current_page_number_panel", "next_page_button" ] }, "pagination_middle_buttons_panel/previous_page_button": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "pagination_middle_buttons_panel/current_page_number_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "current_page_number" ] }, "pagination_middle_buttons_panel/current_page_number_panel/current_page_number": { "file": "ui/store_common.json", "type": "label" }, "pagination_middle_buttons_panel/next_page_button": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "vertical_store_offer_grid_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "header", "centering_panel", "padding_0", "divider" ] }, "vertical_store_offer_grid_panel/header": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "style_header", "namespace": "common_store" } }, "vertical_store_offer_grid_panel/centering_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "vertical_store_offer_grid_content" ] }, "vertical_store_offer_grid_panel/centering_panel/vertical_store_offer_grid_content": { "file": "ui/store_common.json", "type": "grid", "extend": { "name": "store_offer_grid", "namespace": "store_item_list" } }, "vertical_store_offer_grid_panel/padding_0": { "file": "ui/store_common.json", "type": "panel" }, "vertical_store_offer_grid_panel/divider": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "section_divider", "namespace": "common" } }, "carousel_row_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "top_panel", "top_padding", "middle_panel", "bottom_panel", "bottom_padding", "divider_panel" ] }, "carousel_row_panel/top_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "pad_0", "tab_names_factory_panel" ] }, "carousel_row_panel/top_panel/pad_0": { "file": "ui/store_common.json", "type": "panel" }, "carousel_row_panel/top_panel/tab_names_factory_panel": { "file": "ui/store_common.json", "type": "stack_panel" }, "carousel_row_panel/top_padding": { "file": "ui/store_common.json", "type": "panel" }, "carousel_row_panel/middle_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "left_button_panel", "main_panel_factory", "right_button_panel" ] }, "carousel_row_panel/middle_panel/left_button_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "left_button", "left_bumper" ] }, "carousel_row_panel/middle_panel/left_button_panel/left_button": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "cycle_pack_button", "namespace": "common_store" } }, "carousel_row_panel/middle_panel/left_button_panel/left_bumper": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_left_bumper", "namespace": "common" } }, "carousel_row_panel/middle_panel/main_panel_factory": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "carousel_factory", "namespace": "common_store" } }, "carousel_row_panel/middle_panel/right_button_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "right_button", "right_bumper" ] }, "carousel_row_panel/middle_panel/right_button_panel/right_button": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "cycle_pack_button", "namespace": "common_store" } }, "carousel_row_panel/middle_panel/right_button_panel/right_bumper": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_right_bumper", "namespace": "common" } }, "carousel_row_panel/bottom_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "grey_bar_factory_panel" ] }, "carousel_row_panel/bottom_panel/grey_bar_factory_panel": { "file": "ui/store_common.json", "type": "stack_panel" }, "carousel_row_panel/bottom_padding": { "file": "ui/store_common.json", "type": "panel" }, "carousel_row_panel/divider_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "divider" ] }, "carousel_row_panel/divider_panel/divider": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "horizontal_divider", "namespace": "common" } }, "carousel_factory": { "file": "ui/store_common.json", "type": "stack_panel" }, "hero_row_l2_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "header", "centering_panel", "padding_0", "divider" ] }, "hero_row_l2_panel/header": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "style_header", "namespace": "common_store" } }, "hero_row_l2_panel/centering_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "l2_featured_stack" ] }, "hero_row_l2_panel/centering_panel/l2_featured_stack": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "padding_0", "featured_item_1", "padding_1", "featured_item_2", "padding_2", "featured_item_3", "padding_3" ] }, "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_0": { "file": "ui/store_common.json", "type": "panel" }, "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_1": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "store_offer_grid_item", "namespace": "common_store" } }, "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_1": { "file": "ui/store_common.json", "type": "panel" }, "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_2": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "store_offer_grid_item", "namespace": "common_store" } }, "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_2": { "file": "ui/store_common.json", "type": "panel" }, "hero_row_l2_panel/centering_panel/l2_featured_stack/featured_item_3": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "store_offer_grid_item", "namespace": "common_store" } }, "hero_row_l2_panel/centering_panel/l2_featured_stack/padding_3": { "file": "ui/store_common.json", "type": "panel" }, "hero_row_l2_panel/padding_0": { "file": "ui/store_common.json", "type": "panel" }, "hero_row_l2_panel/divider": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "section_divider", "namespace": "common" } }, "blade_row_key_art": { "file": "ui/store_common.json", "type": "panel", "children": [ "blade_row_key_art_image" ] }, "blade_row_key_art/blade_row_key_art_image": { "file": "ui/store_common.json", "type": "image", "children": [ "key_art_border" ] }, "blade_row_key_art/blade_row_key_art_image/key_art_border": { "file": "ui/store_common.json", "type": "image" }, "one_key_art_screenshot": { "file": "ui/store_common.json", "type": "image" }, "one_key_art_screenshot_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "blade_offer_frame" ] }, "one_key_art_screenshot_panel/blade_offer_frame": { "file": "ui/store_common.json", "type": "unknown", "children": [ "one_key_art_screenshot" ] }, "one_key_art_screenshot_panel/blade_offer_frame/one_key_art_screenshot": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "one_key_art_screenshot", "namespace": "common_store" }, "children": [ "one_key_art_frame" ] }, "one_key_art_screenshot_panel/blade_offer_frame/one_key_art_screenshot/one_key_art_frame": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "square_image_border_white", "namespace": "common" } }, "screenshots_grid": { "file": "ui/store_common.json", "type": "collection_panel", "children": [ "screenshot_1", "screenshot_2", "screenshot_3", "screenshot_4" ] }, "screenshots_grid/screenshot_1": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "one_key_art_screenshot_panel", "namespace": "common_store" } }, "screenshots_grid/screenshot_2": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "one_key_art_screenshot_panel", "namespace": "common_store" } }, "screenshots_grid/screenshot_3": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "one_key_art_screenshot_panel", "namespace": "common_store" } }, "screenshots_grid/screenshot_4": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "one_key_art_screenshot_panel", "namespace": "common_store" } }, "blade_offer_details_title": { "file": "ui/store_common.json", "type": "label" }, "blade_offer_sale_markdown": { "file": "ui/store_common.json", "type": "label" }, "blade_offer_description_details": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "blade_title_stack", "blade_offer_creator_label", "blade_offer_description_padding_2", "ratings_and_coins", "blade_offer_description_padding_3" ] }, "blade_offer_description_details/blade_title_stack": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "blade_title" ] }, "blade_offer_description_details/blade_title_stack/blade_title": { "file": "ui/store_common.json", "type": "label", "extend": { "name": "blade_offer_details_title", "namespace": "common_store" } }, "blade_offer_description_details/blade_offer_creator_label": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "store_offer_item_creator_panel", "namespace": "common_store" } }, "blade_offer_description_details/blade_offer_description_padding_2": { "file": "ui/store_common.json", "type": "panel" }, "blade_offer_description_details/ratings_and_coins": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "subscription_panel", "blade_sales_markdown_percentage_panel", "ratings_panel", "blade_rating_count_panel", "fill_padding", "blade_offer_price_markdown_panel", "price_panel", "price_panel_padding_right" ] }, "blade_offer_description_details/ratings_and_coins/subscription_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "subscription_chevron", "namespace": "common_store" } }, "blade_offer_description_details/ratings_and_coins/blade_sales_markdown_percentage_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "blade_markdown_background" ] }, "blade_offer_description_details/ratings_and_coins/blade_sales_markdown_percentage_panel/blade_markdown_background": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "markdown_background", "namespace": "common_store" } }, "blade_offer_description_details/ratings_and_coins/ratings_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "blade_ratings" ] }, "blade_offer_description_details/ratings_and_coins/ratings_panel/blade_ratings": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "ratings_description", "namespace": "common_store" } }, "blade_offer_description_details/ratings_and_coins/blade_rating_count_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "store_rating_count_panel", "namespace": "common_store" } }, "blade_offer_description_details/ratings_and_coins/fill_padding": { "file": "ui/store_common.json", "type": "panel" }, "blade_offer_description_details/ratings_and_coins/blade_offer_price_markdown_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "offer_price_markdown_panel", "namespace": "common_store" } }, "blade_offer_description_details/ratings_and_coins/price_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "price" ] }, "blade_offer_description_details/ratings_and_coins/price_panel/price": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "price_panel", "namespace": "common_store" } }, "blade_offer_description_details/ratings_and_coins/price_panel_padding_right": { "file": "ui/store_common.json", "type": "panel" }, "blade_offer_description_details/blade_offer_description_padding_3": { "file": "ui/store_common.json", "type": "panel" }, "screenshots_and_offer_details_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "blade_offer_screenshots_grid", "blade_offer_description_area" ] }, "screenshots_and_offer_details_panel/blade_offer_screenshots_grid": { "file": "ui/store_common.json", "type": "collection_panel", "extend": { "name": "screenshots_grid", "namespace": "common_store" } }, "screenshots_and_offer_details_panel/blade_offer_description_area": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "store_description_background", "namespace": "common_store" }, "children": [ "blade_offer_description_border", "hero_blade_offer_description_details" ] }, "screenshots_and_offer_details_panel/blade_offer_description_area/blade_offer_description_border": { "file": "ui/store_common.json", "type": "image" }, "screenshots_and_offer_details_panel/blade_offer_description_area/hero_blade_offer_description_details": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "blade_offer_description_details", "namespace": "common_store" } }, "blade_row_featured_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "blade_row_featured_key_art", "blade_offer_screenshots_and_details_panel" ] }, "blade_row_featured_panel/blade_row_featured_key_art": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "blade_row_key_art", "namespace": "common_store" } }, "blade_row_featured_panel/blade_offer_screenshots_and_details_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "screenshots_and_offer_details_panel", "namespace": "common_store" } }, "transparent_content_button": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "hero_blade_row_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "blade_row_transparent_button" ] }, "hero_blade_row_panel/blade_row_transparent_button": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "transparent_content_button", "namespace": "common_store" } }, "hero_row_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "header", "centering_panel", "padding_0", "divider" ] }, "hero_row_panel/header": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "style_header", "namespace": "common_store" } }, "hero_row_panel/centering_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "featured_stack" ] }, "hero_row_panel/centering_panel/featured_stack": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "hero_offer", "padding_0", "hero_offer_grid" ] }, "hero_row_panel/centering_panel/featured_stack/hero_offer": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "single_image_with_border_button", "namespace": "common_buttons" } }, "hero_row_panel/centering_panel/featured_stack/padding_0": { "file": "ui/store_common.json", "type": "panel" }, "hero_row_panel/centering_panel/featured_stack/hero_offer_grid": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "hero_offer_grid", "namespace": "common_store" } }, "hero_row_panel/padding_0": { "file": "ui/store_common.json", "type": "panel" }, "hero_row_panel/divider": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "section_divider", "namespace": "common" } }, "hero_offer": { "file": "ui/store_common.json", "type": "panel", "children": [ "featured_key_art", "rtx_label", "offer_description_area" ] }, "hero_offer/featured_key_art": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "featured_key_art", "namespace": "common_store" } }, "hero_offer/rtx_label": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "rtx_label", "namespace": "common_store" } }, "hero_offer/offer_description_area": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "store_description_background", "namespace": "common_store" }, "children": [ "hero_offer_description_details" ] }, "hero_offer/offer_description_area/hero_offer_description_details": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "hero_offer_description_details", "namespace": "common_store" } }, "hero_offer_details_title": { "file": "ui/store_common.json", "type": "label" }, "hero_offer_description_details": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "hero_title_stack", "padding_5", "progress", "creator_label", "padding_0", "durable_offer_info_panel", "padding_1" ] }, "hero_offer_description_details/hero_title_stack": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "title" ] }, "hero_offer_description_details/hero_title_stack/title": { "file": "ui/store_common.json", "type": "label", "extend": { "name": "hero_offer_details_title", "namespace": "common_store" } }, "hero_offer_description_details/padding_5": { "file": "ui/store_common.json", "type": "panel" }, "hero_offer_description_details/progress": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "hero_offer_download_progress", "namespace": "common_store" } }, "hero_offer_description_details/creator_label": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "store_offer_item_creator_panel", "namespace": "common_store" } }, "hero_offer_description_details/padding_0": { "file": "ui/store_common.json", "type": "panel" }, "hero_offer_description_details/durable_offer_info_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "offer_status_panel" ] }, "hero_offer_description_details/durable_offer_info_panel/offer_status_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "subscription_panel", "sales_markdown_percentage_panel", "ratings_panel", "rating_count_panel", "pack_icon_panel", "fill_padding", "offer_price_markdown_panel", "price_panel" ] }, "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/subscription_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "subscription_chevron", "namespace": "common_store" } }, "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "markdown_banner" ] }, "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel/markdown_banner": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "markdown_background", "namespace": "common_store" } }, "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/ratings_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "ratings" ] }, "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/ratings_panel/ratings": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "ratings_description", "namespace": "common_store" } }, "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/rating_count_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "store_rating_count_panel", "namespace": "common_store" } }, "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/pack_icon_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "pack_icon_stack" ] }, "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "pack_icon_stack", "namespace": "common_store" } }, "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/fill_padding": { "file": "ui/store_common.json", "type": "panel" }, "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/offer_price_markdown_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "offer_price_markdown_panel", "namespace": "common_store" } }, "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/price_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "price" ] }, "hero_offer_description_details/durable_offer_info_panel/offer_status_panel/price_panel/price": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "price_panel", "namespace": "common_store" } }, "hero_offer_description_details/padding_1": { "file": "ui/store_common.json", "type": "panel" }, "hero_offer_download_progress": { "file": "ui/store_common.json", "type": "panel", "children": [ "label", "bar" ] }, "hero_offer_download_progress/label": { "file": "ui/store_common.json", "type": "label" }, "hero_offer_download_progress/bar": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "store_progress_bar_icon", "namespace": "common_store" } }, "rating_text_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "left_padding", "star_panel", "middle_padding", "rating_label" ] }, "rating_text_panel/left_padding": { "file": "ui/store_common.json", "type": "panel" }, "rating_text_panel/star_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "rating_star" ] }, "rating_text_panel/star_panel/rating_star": { "file": "ui/store_common.json", "type": "image" }, "rating_text_panel/middle_padding": { "file": "ui/store_common.json", "type": "panel" }, "rating_text_panel/rating_label": { "file": "ui/store_common.json", "type": "label" }, "ratings_description": { "file": "ui/store_common.json", "type": "panel", "children": [ "rating_text_panel" ] }, "ratings_description/rating_text_panel": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "rating_text_panel", "namespace": "common_store" } }, "store_rating_count_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "rating_count_text" ] }, "store_rating_count_panel/rating_count_text": { "file": "ui/store_common.json", "type": "label" }, "hero_offer_grid": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "row_1", "padding_0", "row_2" ] }, "hero_offer_grid/row_1": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "offer_1", "padding_0", "offer_2" ] }, "hero_offer_grid/row_1/offer_1": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "store_offer_grid_item", "namespace": "common_store" } }, "hero_offer_grid/row_1/padding_0": { "file": "ui/store_common.json", "type": "panel" }, "hero_offer_grid/row_1/offer_2": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "store_offer_grid_item", "namespace": "common_store" } }, "hero_offer_grid/padding_0": { "file": "ui/store_common.json", "type": "panel" }, "hero_offer_grid/row_2": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "offer_1", "padding_0", "offer_2" ] }, "hero_offer_grid/row_2/offer_1": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "store_offer_grid_item", "namespace": "common_store" } }, "hero_offer_grid/row_2/padding_0": { "file": "ui/store_common.json", "type": "panel" }, "hero_offer_grid/row_2/offer_2": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "store_offer_grid_item", "namespace": "common_store" } }, "offer_download_progress": { "file": "ui/store_common.json", "type": "panel", "children": [ "label", "bar" ] }, "offer_download_progress/label": { "file": "ui/store_common.json", "type": "label" }, "offer_download_progress/bar": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "store_progress_bar_icon", "namespace": "common_store" } }, "banner_button": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "new_ui_width_fitting_button_panel", "namespace": "common_buttons" } }, "sdl_text_aligned_panel": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "sdl_content_aligned_panel", "namespace": "common_store" } }, "sdl_text_minecraftTen_aligned_panel": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "sdl_content_aligned_panel", "namespace": "common_store" } }, "sdl_content_aligned_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "left__padding_panel", "control", "right_padding_panel" ] }, "sdl_content_aligned_panel/left__padding_panel": { "file": "ui/store_common.json", "type": "panel" }, "sdl_content_aligned_panel/control": { "file": "ui/store_common.json", "type": "unknown" }, "sdl_content_aligned_panel/right_padding_panel": { "file": "ui/store_common.json", "type": "panel" }, "sdl_aligned_text": { "file": "ui/store_common.json", "type": "label" }, "sdl_aligned_minecraftTen_text": { "file": "ui/store_common.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "content_offer_key_art": { "file": "ui/store_common.json", "type": "image" }, "vertical_content_offer_header": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "store_description_background", "namespace": "common_store" }, "children": [ "header" ] }, "vertical_content_offer_header/header": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "sdl_text_aligned_panel", "namespace": "common_store" } }, "vertical_content_offer_panel": { "file": "ui/store_common.json", "type": "stack_panel" }, "vertical_offer_grid_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "store_section_panel", "namespace": "common_store" } }, "offer_content": { "file": "ui/store_common.json", "type": "panel", "children": [ "offer_item" ] }, "offer_content/offer_item": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "store_offer_grid_item", "namespace": "common_store" } }, "vertical_offer_content": { "file": "ui/store_common.json", "type": "panel", "children": [ "offer_item" ] }, "vertical_offer_content/offer_item": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "vertical_store_offer_grid_item", "namespace": "common_store" } }, "vertical_coin_offer_content": { "file": "ui/store_common.json", "type": "panel", "children": [ "offer_item" ] }, "vertical_coin_offer_content/offer_item": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "vertical_store_coin_offer_grid_item", "namespace": "common_store" } }, "store_offer_key_art": { "file": "ui/store_common.json", "type": "image" }, "store_offer_grid_show_more": { "file": "ui/store_common.json", "type": "panel", "children": [ "frame", "offer_button" ] }, "store_offer_grid_show_more/frame": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "banner_fill", "namespace": "common_store" }, "children": [ "title" ] }, "store_offer_grid_show_more/frame/title": { "file": "ui/store_common.json", "type": "label" }, "store_offer_grid_show_more/offer_button": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "hover", "pressed" ] }, "store_offer_grid_show_more/offer_button/hover": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "focus_border_white", "namespace": "common" }, "children": [ "key_art_size_panel" ] }, "store_offer_grid_show_more/offer_button/hover/key_art_size_panel": { "file": "ui/store_common.json", "type": "panel" }, "store_offer_grid_show_more/offer_button/pressed": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "focus_border_white", "namespace": "common" }, "children": [ "key_art_size_panel" ] }, "store_offer_grid_show_more/offer_button/pressed/key_art_size_panel": { "file": "ui/store_common.json", "type": "panel" }, "persona_grid_show_more": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "row_offer_sale_markdown": { "file": "ui/store_common.json", "type": "label" }, "discount_label": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "label_panel", "icon_panel" ] }, "discount_label/label_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "label" ] }, "discount_label/label_panel/label": { "file": "ui/store_common.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "discount_label/icon_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "icon" ] }, "discount_label/icon_panel/icon": { "file": "ui/store_common.json", "type": "image" }, "hero_offer_sale_markdown": { "file": "ui/store_common.json", "type": "label" }, "offer_price_markdown_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "offer_price" ] }, "offer_price_markdown_panel/offer_price": { "file": "ui/store_common.json", "type": "label", "children": [ "text_strike_through" ] }, "offer_price_markdown_panel/offer_price/text_strike_through": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "text_strike_through", "namespace": "common_store" } }, "store_offer_title": { "file": "ui/store_common.json", "type": "label" }, "store_offer_key_art_frame": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "store_description_background", "namespace": "common_store" }, "children": [ "key_art", "progress_loading" ] }, "store_offer_key_art_frame/key_art": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "store_offer_key_art", "namespace": "common_store" }, "children": [ "key_art_frame", "csb_expiration_banner" ] }, "store_offer_key_art_frame/key_art/key_art_frame": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "square_image_border_white", "namespace": "common" } }, "store_offer_key_art_frame/key_art/csb_expiration_banner": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "csb_expiration", "namespace": "common_store" } }, "store_offer_key_art_frame/progress_loading": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "progress_loading", "namespace": "common_store" } }, "vertical_store_offer_grid_item": { "file": "ui/store_common.json", "type": "panel", "children": [ "frame", "dark_frame" ] }, "vertical_store_offer_grid_item/frame": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "store_description_background", "namespace": "common_store" }, "children": [ "horizontal_stack_panel", "offer_button" ] }, "vertical_store_offer_grid_item/frame/horizontal_stack_panel": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "vertical_store_offer_grid_inside_frame", "namespace": "common_store" } }, "vertical_store_offer_grid_item/frame/offer_button": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "store_offer_grid_button", "namespace": "common_store" } }, "vertical_store_offer_grid_item/dark_frame": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "store_description_background_dark", "namespace": "common_store" }, "children": [ "horizontal_stack_panel", "offer_button" ] }, "vertical_store_offer_grid_item/dark_frame/horizontal_stack_panel": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "vertical_store_offer_grid_inside_frame", "namespace": "common_store" } }, "vertical_store_offer_grid_item/dark_frame/offer_button": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "store_offer_grid_button", "namespace": "common_store" } }, "vertical_store_offer_grid_inside_frame": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "key_art_size_panel", "offer_details_general_panel" ] }, "vertical_store_offer_grid_inside_frame/key_art_size_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "key_art_frame", "key_art" ] }, "vertical_store_offer_grid_inside_frame/key_art_size_panel/key_art_frame": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "square_image_border_white", "namespace": "common" } }, "vertical_store_offer_grid_inside_frame/key_art_size_panel/key_art": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "store_offer_key_art", "namespace": "common_store" } }, "vertical_store_offer_grid_inside_frame/offer_details_general_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "general_offer_details_stack_panel" ] }, "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "title_panel_with_padding", "creator_label_panel_with_padding", "ratings_and_cost_pannel_with_padding" ] }, "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/title_panel_with_padding": { "file": "ui/store_common.json", "type": "panel", "children": [ "title" ] }, "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/title_panel_with_padding/title": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "store_offer_item_title_panel", "namespace": "common_store" } }, "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/creator_label_panel_with_padding": { "file": "ui/store_common.json", "type": "panel", "children": [ "creator_label" ] }, "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/creator_label_panel_with_padding/creator_label": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "store_offer_item_creator_panel", "namespace": "common_store" } }, "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "ratings", "rating_and_price_padding", "offer_price_info_panel", "right_side_padding" ] }, "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/ratings": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "store_offer_ratings", "namespace": "common_store" } }, "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/rating_and_price_padding": { "file": "ui/store_common.json", "type": "panel" }, "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/offer_price_info_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "vertical_store_offer_price_info_panel", "namespace": "common_store" } }, "vertical_store_offer_grid_inside_frame/offer_details_general_panel/general_offer_details_stack_panel/ratings_and_cost_pannel_with_padding/right_side_padding": { "file": "ui/store_common.json", "type": "panel" }, "vertical_store_coin_offer_grid_item": { "file": "ui/store_common.json", "type": "panel", "children": [ "frame", "dark_frame" ] }, "vertical_store_coin_offer_grid_item/frame": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "store_description_background", "namespace": "common_store" }, "children": [ "horizontal_stack_panel" ] }, "vertical_store_coin_offer_grid_item/frame/horizontal_stack_panel": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "vertical_coin_offer_grid_inside_frame", "namespace": "common_store" } }, "vertical_store_coin_offer_grid_item/dark_frame": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "store_description_background_dark", "namespace": "common_store" }, "children": [ "horizontal_stack_panel", "offer_button" ] }, "vertical_store_coin_offer_grid_item/dark_frame/horizontal_stack_panel": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "vertical_coin_offer_grid_inside_frame", "namespace": "common_store" } }, "vertical_store_coin_offer_grid_item/dark_frame/offer_button": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "store_offer_grid_button", "namespace": "common_store" } }, "vertical_coin_offer_grid_inside_frame": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "key_art_size_panel", "padding", "coin_panel", "Minecoins_panel" ] }, "vertical_coin_offer_grid_inside_frame/key_art_size_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "key_art_frame", "key_art" ] }, "vertical_coin_offer_grid_inside_frame/key_art_size_panel/key_art_frame": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "square_image_border_white", "namespace": "common" } }, "vertical_coin_offer_grid_inside_frame/key_art_size_panel/key_art": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "store_offer_key_art", "namespace": "common_store" } }, "vertical_coin_offer_grid_inside_frame/padding": { "file": "ui/store_common.json", "type": "panel" }, "vertical_coin_offer_grid_inside_frame/coin_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "offer_coin_icon" ] }, "vertical_coin_offer_grid_inside_frame/coin_panel/offer_coin_icon": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "coin_icon", "namespace": "common_store" } }, "vertical_coin_offer_grid_inside_frame/Minecoins_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "minecoins_vert_stack_panel" ] }, "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "minecoins_panel_with_padding", "title_panel_with_padding" ] }, "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/minecoins_panel_with_padding": { "file": "ui/store_common.json", "type": "panel", "children": [ "minecoins_prompt_panel" ] }, "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/minecoins_panel_with_padding/minecoins_prompt_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "minecoins_offer_status_text" ] }, "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/minecoins_panel_with_padding/minecoins_prompt_panel/minecoins_offer_status_text": { "file": "ui/store_common.json", "type": "label" }, "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/title_panel_with_padding": { "file": "ui/store_common.json", "type": "panel", "children": [ "title" ] }, "vertical_coin_offer_grid_inside_frame/Minecoins_panel/minecoins_vert_stack_panel/title_panel_with_padding/title": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "store_offer_item_title_panel", "namespace": "common_store" } }, "offer_prompt_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "coin_panel", "padding_3", "offer_status_text_panel" ] }, "offer_prompt_panel/coin_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "offer_coin_icon" ] }, "offer_prompt_panel/coin_panel/offer_coin_icon": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "coin_icon", "namespace": "common_store" } }, "offer_prompt_panel/padding_3": { "file": "ui/store_common.json", "type": "panel" }, "offer_prompt_panel/offer_status_text_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "offer_status_text" ] }, "offer_prompt_panel/offer_status_text_panel/offer_status_text": { "file": "ui/store_common.json", "type": "label" }, "store_offer_grid_item": { "file": "ui/store_common.json", "type": "panel", "children": [ "frame" ] }, "store_offer_grid_item/frame": { "file": "ui/store_common.json", "type": "unknown", "children": [ "key_art", "progress_loading", "progress", "durable_offer_info_panel", "offer_button" ] }, "store_offer_grid_item/frame/key_art": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "store_offer_key_art", "namespace": "common_store" }, "children": [ "key_art_frame", "csb_plus_expiration_banner", "badge_overlay_panel" ] }, "store_offer_grid_item/frame/key_art/key_art_frame": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "square_image_border_white", "namespace": "common" } }, "store_offer_grid_item/frame/key_art/csb_plus_expiration_banner": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "csb_expiration", "namespace": "common_store" } }, "store_offer_grid_item/frame/key_art/badge_overlay_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "badge_overlay_panel", "namespace": "common_store" } }, "store_offer_grid_item/frame/progress_loading": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "progress_loading", "namespace": "common_store" } }, "store_offer_grid_item/frame/progress": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "offer_download_progress", "namespace": "common_store" } }, "store_offer_grid_item/frame/durable_offer_info_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "title_label_padding_stack", "offer_status_panel" ] }, "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack": { "file": "ui/store_common.json", "type": "panel", "children": [ "title_label_vert_stack_panel", "no_durable_status_padding" ] }, "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "title", "creator_label", "offer_price_info_panel" ] }, "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/title": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "store_offer_item_title_panel", "namespace": "common_store" } }, "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/creator_label": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "store_offer_item_creator_panel", "namespace": "common_store" } }, "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/title_label_vert_stack_panel/offer_price_info_panel": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "store_offer_price_info_panel", "namespace": "common_store" } }, "store_offer_grid_item/frame/durable_offer_info_panel/title_label_padding_stack/no_durable_status_padding": { "file": "ui/store_common.json", "type": "panel" }, "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "rtx_label", "subscription_panel", "sales_banner", "ratings", "rating_count_panel", "pack_icon_panel", "fill_markdown_panel_left", "markdown_panel", "padding_markdown_panel_right", "offer_prompt_panel", "padding_6", "timer_panel", "padding_2" ] }, "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rtx_label": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "rtx_label", "namespace": "common_store" } }, "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/subscription_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "subscription_chevron", "namespace": "common_store" } }, "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "sales_markdown_percentage_panel" ] }, "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner/sales_markdown_percentage_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "markdown_banner" ] }, "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_banner/sales_markdown_percentage_panel/markdown_banner": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "markdown_background", "namespace": "common_store" } }, "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/ratings": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "store_offer_ratings", "namespace": "common_store" } }, "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rating_count_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "store_rating_count_panel", "namespace": "common_store" } }, "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "pack_icon_stack" ] }, "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "pack_icon_stack", "namespace": "common_store" } }, "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/fill_markdown_panel_left": { "file": "ui/store_common.json", "type": "panel" }, "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/markdown_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "offer_price_markdown_panel", "namespace": "common_store" } }, "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_markdown_panel_right": { "file": "ui/store_common.json", "type": "panel" }, "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/offer_prompt_panel": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "offer_prompt_panel", "namespace": "common_store" } }, "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_6": { "file": "ui/store_common.json", "type": "panel" }, "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/timer_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "sale_timer" ] }, "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/timer_panel/sale_timer": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "timer_panel", "namespace": "common_store" } }, "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_2": { "file": "ui/store_common.json", "type": "panel" }, "store_offer_grid_item/frame/offer_button": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "store_offer_grid_button", "namespace": "common_store" } }, "thumbnail_only_offer": { "file": "ui/store_common.json", "type": "panel", "children": [ "frame" ] }, "thumbnail_only_offer/frame": { "file": "ui/store_common.json", "type": "unknown", "children": [ "key_art", "offer_button" ] }, "thumbnail_only_offer/frame/key_art": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "store_offer_key_art", "namespace": "common_store" }, "children": [ "key_art_frame", "offer_coin_icon" ] }, "thumbnail_only_offer/frame/key_art/key_art_frame": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "square_image_border_white", "namespace": "common" } }, "thumbnail_only_offer/frame/key_art/offer_coin_icon": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "coin_icon", "namespace": "common_store" } }, "thumbnail_only_offer/frame/offer_button": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "store_offer_grid_button", "namespace": "common_store" } }, "store_section_header_label": { "file": "ui/store_common.json", "type": "label", "extend": { "name": "label", "namespace": "common_store" } }, "persona_store_row_offer": { "file": "ui/store_common.json", "type": "panel", "children": [ "persona_offer" ] }, "persona_store_row_offer/persona_offer": { "file": "ui/store_common.json", "type": "unknown", "extend": { "name": "persona_piece_offer", "namespace": "persona_sdl" } }, "thumnail_only_row_offer": { "file": "ui/store_common.json", "type": "panel", "children": [ "generic_store_offer" ] }, "thumnail_only_row_offer/generic_store_offer": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "thumbnail_only_offer", "namespace": "common_store" } }, "generic_store_row_offer_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "generic_store_offer" ] }, "generic_store_row_offer_panel/generic_store_offer": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "store_offer_grid_item", "namespace": "common_store" } }, "store_row_show_more_button_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "show_more_button" ] }, "store_row_show_more_button_panel/show_more_button": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "store_offer_grid_show_more", "namespace": "common_store" } }, "persona_show_more_button_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "show_more_button" ] }, "persona_show_more_button_panel/show_more_button": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "persona_grid_show_more", "namespace": "common_store" } }, "persona_grid_panel_stack": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "default_piece_button", "persona_grid_panel" ] }, "persona_grid_panel_stack/default_piece_button": { "file": "ui/store_common.json", "type": "unknown", "extend": { "name": "default_piece_button_panel", "namespace": "persona_sdl" } }, "persona_grid_panel_stack/persona_grid_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "persona_grid_panel", "namespace": "common_store" } }, "persona_grid_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "persona_offer_grid" ] }, "persona_grid_panel/persona_offer_grid": { "file": "ui/store_common.json", "type": "grid", "extend": { "name": "persona_offer_grid", "namespace": "store_item_list" } }, "store_offer_grid_factory": { "file": "ui/store_common.json", "type": "collection_panel" }, "non_collection_item_horizontal_padding": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "horizontal_padding_2px", "namespace": "common" } }, "horizontal_store_offer_row_factory": { "file": "ui/store_common.json", "type": "stack_panel" }, "static_offer_row_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "store_row_dropdown_panel" ] }, "static_offer_row_panel/store_row_dropdown_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "store_row_section_panel" ] }, "static_offer_row_panel/store_row_dropdown_panel/store_row_section_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "store_section_panel", "namespace": "common_store" } }, "store_row_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "store_row_dropdown_panel" ] }, "store_row_panel/store_row_dropdown_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "store_row_section_panel" ] }, "store_row_panel/store_row_dropdown_panel/store_row_section_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "store_section_panel", "namespace": "common_store" } }, "vertical_store_row_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "store_section_panel", "namespace": "common_store" } }, "style_header": { "file": "ui/store_common.json", "type": "panel", "children": [ "background", "style_header" ] }, "style_header/background": { "file": "ui/store_common.json", "type": "image" }, "style_header/style_header": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "style_header_panel", "namespace": "common_store" } }, "style_header_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "row_header", "row_carousel_padding" ] }, "style_header_panel/row_header": { "file": "ui/store_common.json", "type": "panel", "children": [ "label_panel" ] }, "style_header_panel/row_header/label_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "indent", "row_header_label_centering_panel", "on_sale_banner", "time_remaining_label" ] }, "style_header_panel/row_header/label_panel/indent": { "file": "ui/store_common.json", "type": "panel" }, "style_header_panel/row_header/label_panel/row_header_label_centering_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "row_header_label" ] }, "style_header_panel/row_header/label_panel/row_header_label_centering_panel/row_header_label": { "file": "ui/store_common.json", "type": "label", "extend": { "name": "store_section_header_label", "namespace": "common_store" } }, "style_header_panel/row_header/label_panel/on_sale_banner": { "file": "ui/store_common.json", "type": "image", "children": [ "padding_panel" ] }, "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "sales_row_header_label", "triangle" ] }, "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel/sales_row_header_label": { "file": "ui/store_common.json", "type": "label", "extend": { "name": "store_section_header_label", "namespace": "common_store" } }, "style_header_panel/row_header/label_panel/on_sale_banner/padding_panel/triangle": { "file": "ui/store_common.json", "type": "image" }, "style_header_panel/row_header/label_panel/time_remaining_label": { "file": "ui/store_common.json", "type": "label", "extend": { "name": "label", "namespace": "common_store" } }, "style_header_panel/row_carousel_padding": { "file": "ui/store_common.json", "type": "panel" }, "store_row_cycle_button_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "cycle_button_panel" ] }, "store_row_cycle_button_panel/cycle_button_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "page_indicator_panel" ] }, "store_row_cycle_button_panel/cycle_button_panel/page_indicator_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "page_indicator" ] }, "store_row_cycle_button_panel/cycle_button_panel/page_indicator_panel/page_indicator": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "page_indicator_panel", "namespace": "common_store" } }, "store_row": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "carousel_panel", "divider" ] }, "store_row/carousel_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "progress_loading", "cycle_pack_horizontal_stack" ] }, "store_row/carousel_panel/progress_loading": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "progress_loading", "namespace": "common_store" } }, "store_row/carousel_panel/cycle_pack_horizontal_stack": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "cycle_pack_left_button_panel", "offer_grid_panel", "cycle_pack_right_button_panel" ] }, "store_row/carousel_panel/cycle_pack_horizontal_stack/cycle_pack_left_button_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "store_row_cycle_button_panel", "namespace": "common_store" } }, "store_row/carousel_panel/cycle_pack_horizontal_stack/offer_grid_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "offer_grid" ] }, "store_row/carousel_panel/cycle_pack_horizontal_stack/offer_grid_panel/offer_grid": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "horizontal_store_offer_row_factory", "namespace": "common_store" } }, "store_row/carousel_panel/cycle_pack_horizontal_stack/cycle_pack_right_button_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "store_row_cycle_button_panel", "namespace": "common_store" } }, "store_row/divider": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "section_divider", "namespace": "common" } }, "page_indicator_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "first_of_three", "second_of_three", "third_of_three", "first_of_two", "second_of_two" ] }, "page_indicator_panel/first_of_three": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "page_indicator", "namespace": "common_store" } }, "page_indicator_panel/second_of_three": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "page_indicator", "namespace": "common_store" } }, "page_indicator_panel/third_of_three": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "page_indicator", "namespace": "common_store" } }, "page_indicator_panel/first_of_two": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "page_indicator", "namespace": "common_store" } }, "page_indicator_panel/second_of_two": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "page_indicator", "namespace": "common_store" } }, "page_indicator": { "file": "ui/store_common.json", "type": "image" }, "popup_dialog__no_store_connection": { "file": "ui/store_common.json", "type": "input_panel", "extend": { "name": "popup_dialog", "namespace": "popup_dialog" }, "children": [ "popup_dialog_bg", "popup_dialog_message", "popup_dialog_middle_button" ] }, "popup_dialog__no_store_connection/popup_dialog_bg": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "popup_dialog_bg", "namespace": "popup_dialog" } }, "popup_dialog__no_store_connection/popup_dialog_message": { "file": "ui/store_common.json", "type": "label", "extend": { "name": "popup_dialog_message", "namespace": "popup_dialog" } }, "popup_dialog__no_store_connection/popup_dialog_middle_button": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "popup_dialog_middle_button", "namespace": "popup_dialog" } }, "popup_dialog__restore_popup": { "file": "ui/store_common.json", "type": "input_panel", "extend": { "name": "popup_dialog", "namespace": "popup_dialog" }, "children": [ "popup_dialog_bg", "popup_dialog_message" ] }, "popup_dialog__restore_popup/popup_dialog_bg": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "popup_dialog_bg", "namespace": "popup_dialog" } }, "popup_dialog__restore_popup/popup_dialog_message": { "file": "ui/store_common.json", "type": "label", "extend": { "name": "popup_dialog_message", "namespace": "popup_dialog" } }, "popup_dialog__restore_failed": { "file": "ui/store_common.json", "type": "input_panel", "extend": { "name": "popup_dialog", "namespace": "popup_dialog" }, "children": [ "popup_dialog_bg", "popup_dialog_message", "popup_dialog_middle_button" ] }, "popup_dialog__restore_failed/popup_dialog_bg": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "popup_dialog_bg", "namespace": "popup_dialog" } }, "popup_dialog__restore_failed/popup_dialog_message": { "file": "ui/store_common.json", "type": "label", "extend": { "name": "popup_dialog_message", "namespace": "popup_dialog" } }, "popup_dialog__restore_failed/popup_dialog_middle_button": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "popup_dialog_middle_button", "namespace": "popup_dialog" } }, "suggested_content_offers_grid_item": { "file": "ui/store_common.json", "type": "panel", "children": [ "frame" ] }, "suggested_content_offers_grid_item/frame": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "banner_fill", "namespace": "common_store" }, "children": [ "key_art", "progress_loading", "progress", "title_label_panel", "offer_button" ] }, "suggested_content_offers_grid_item/frame/key_art": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "store_offer_key_art", "namespace": "common_store" }, "children": [ "key_art_frame" ] }, "suggested_content_offers_grid_item/frame/key_art/key_art_frame": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "square_image_border_white", "namespace": "common" } }, "suggested_content_offers_grid_item/frame/progress_loading": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "progress_loading", "namespace": "common_store" } }, "suggested_content_offers_grid_item/frame/progress": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "offer_download_progress", "namespace": "common_store" } }, "suggested_content_offers_grid_item/frame/title_label_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "title", "offer_type" ] }, "suggested_content_offers_grid_item/frame/title_label_panel/title": { "file": "ui/store_common.json", "type": "label" }, "suggested_content_offers_grid_item/frame/title_label_panel/offer_type": { "file": "ui/store_common.json", "type": "label" }, "suggested_content_offers_grid_item/frame/offer_button": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "hover", "pressed" ] }, "suggested_content_offers_grid_item/frame/offer_button/hover": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "square_image_border_white", "namespace": "common" }, "children": [ "key_art_size_panel" ] }, "suggested_content_offers_grid_item/frame/offer_button/hover/key_art_size_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "key_art_frame" ] }, "suggested_content_offers_grid_item/frame/offer_button/hover/key_art_size_panel/key_art_frame": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "square_image_border_white", "namespace": "common" } }, "suggested_content_offers_grid_item/frame/offer_button/pressed": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "square_image_border_white", "namespace": "common" }, "children": [ "key_art_size_panel" ] }, "suggested_content_offers_grid_item/frame/offer_button/pressed/key_art_size_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "key_art_frame" ] }, "suggested_content_offers_grid_item/frame/offer_button/pressed/key_art_size_panel/key_art_frame": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "square_image_border_white", "namespace": "common" } }, "suggested_content_offers_grid": { "file": "ui/store_common.json", "type": "grid" }, "more_suggested_content_offers_button": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "dark_glyph_button", "namespace": "common_buttons" } }, "suggested_content_offers_panel_base": { "file": "ui/store_common.json", "type": "panel", "children": [ "content", "progress_loading" ] }, "suggested_content_offers_panel_base/content": { "file": "ui/store_common.json", "type": "panel", "children": [ "suggested_content_offers_grid", "more_suggested_content_offers_button" ] }, "suggested_content_offers_panel_base/content/suggested_content_offers_grid": { "file": "ui/store_common.json", "type": "grid", "extend": { "name": "suggested_content_offers_grid", "namespace": "common_store" } }, "suggested_content_offers_panel_base/content/more_suggested_content_offers_button": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "more_suggested_content_offers_button", "namespace": "common_store" } }, "suggested_content_offers_panel_base/progress_loading": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "progress_loading", "namespace": "common_store" } }, "suggested_content_offers_panel_3x1": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "suggested_content_offers_panel_base", "namespace": "common_store" } }, "suggested_content_offers_panel_4x1": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "suggested_content_offers_panel_base", "namespace": "common_store" } }, "search_text_box_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "search_text_box", "clear_button", "loading_spinner" ] }, "search_text_box_panel/search_text_box": { "file": "ui/store_common.json", "type": "edit_box", "extend": { "name": "text_edit_box", "namespace": "common" } }, "search_text_box_panel/clear_button": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "light_close_button", "namespace": "common" } }, "search_text_box_panel/loading_spinner": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "progress_loading_spinner", "namespace": "common_store" } }, "search_label_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "offset_panel" ] }, "search_label_panel/offset_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "label" ] }, "search_label_panel/offset_panel/label": { "file": "ui/store_common.json", "type": "label" }, "error_text_panel": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "banner_fill", "namespace": "common_store" }, "children": [ "error_text_content" ] }, "error_text_panel/error_text_content": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "top_padding", "label_panel", "bottom_padding" ] }, "error_text_panel/error_text_content/top_padding": { "file": "ui/store_common.json", "type": "panel" }, "error_text_panel/error_text_content/label_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "search_label_panel", "namespace": "common_store" } }, "error_text_panel/error_text_content/bottom_padding": { "file": "ui/store_common.json", "type": "panel" }, "results_text_panel": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "banner_fill", "namespace": "common_store" }, "children": [ "results_panel" ] }, "results_text_panel/results_panel": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "top_padding", "results_content", "bottom_padding" ] }, "results_text_panel/results_panel/top_padding": { "file": "ui/store_common.json", "type": "panel" }, "results_text_panel/results_panel/results_content": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "label_panel", "mid_padding", "results_close_centering_panel", "right_padding" ] }, "results_text_panel/results_panel/results_content/label_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "search_label_panel", "namespace": "common_store" } }, "results_text_panel/results_panel/results_content/mid_padding": { "file": "ui/store_common.json", "type": "panel" }, "results_text_panel/results_panel/results_content/results_close_centering_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "results_close_button" ] }, "results_text_panel/results_panel/results_content/results_close_centering_panel/results_close_button": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "light_close_button", "namespace": "common" } }, "results_text_panel/results_panel/results_content/right_padding": { "file": "ui/store_common.json", "type": "panel" }, "results_text_panel/results_panel/bottom_padding": { "file": "ui/store_common.json", "type": "panel" }, "filter_logo_content_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "filter_logo_image", "filter_count_label" ] }, "filter_logo_content_panel/filter_logo_image": { "file": "ui/store_common.json", "type": "image" }, "filter_logo_content_panel/filter_count_label": { "file": "ui/store_common.json", "type": "label" }, "filter_sort_toggle": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "dark_content_toggle", "namespace": "common_toggles" } }, "filter_sort_submenu_scrolling_panel_section": { "file": "ui/store_common.json", "type": "panel", "children": [ "submenu_scrolling_panel" ] }, "filter_sort_submenu_scrolling_panel_section/submenu_scrolling_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "filter_sort_grid_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "filter_sort_grid" ] }, "filter_sort_grid_panel/filter_sort_grid": { "file": "ui/store_common.json", "type": "stack_panel" }, "sort_button_content_panel": { "file": "ui/store_common.json", "type": "image" }, "search_panel_filter": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "search_text_box", "filter_button", "sort_button" ] }, "search_panel_filter/search_text_box": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "search_text_box_panel", "namespace": "common_store" } }, "search_panel_filter/filter_button": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "search_panel_filter/sort_button": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "search_results_and_error_stack": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "mid_padding_1", "error_text_panel", "mid_padding_2", "results_text_panel" ] }, "search_results_and_error_stack/mid_padding_1": { "file": "ui/store_common.json", "type": "panel" }, "search_results_and_error_stack/error_text_panel": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "error_text_panel", "namespace": "common_store" } }, "search_results_and_error_stack/mid_padding_2": { "file": "ui/store_common.json", "type": "panel" }, "search_results_and_error_stack/results_text_panel": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "results_text_panel", "namespace": "common_store" } }, "search_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "search_panel_content" ] }, "search_panel/search_panel_content": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "search_text_box", "search_results_and_error_panel", "bottom_padding" ] }, "search_panel/search_panel_content/search_text_box": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "search_panel_filter", "namespace": "common_store" } }, "search_panel/search_panel_content/search_results_and_error_panel": { "file": "ui/store_common.json", "type": "stack_panel", "extend": { "name": "search_results_and_error_stack", "namespace": "common_store" } }, "search_panel/search_panel_content/bottom_padding": { "file": "ui/store_common.json", "type": "panel" }, "search_and_offer_content": { "file": "ui/store_common.json", "type": "input_panel", "extend": { "name": "modal_area_panel_base", "namespace": "common" }, "children": [ "search_and_offer_panel" ] }, "search_and_offer_content/search_and_offer_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "search_and_offer_content" ] }, "search_and_offer_content/search_and_offer_panel/search_and_offer_content": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "top_padding", "upper_section_panel", "search_panel", "offer_content_panel", "bottom_padding" ] }, "search_and_offer_content/search_and_offer_panel/search_and_offer_content/top_padding": { "file": "ui/store_common.json", "type": "panel" }, "search_and_offer_content/search_and_offer_panel/search_and_offer_content/upper_section_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "upper_section" ] }, "search_and_offer_content/search_and_offer_panel/search_and_offer_content/upper_section_panel/upper_section": { "file": "ui/store_common.json", "type": "unknown" }, "search_and_offer_content/search_and_offer_panel/search_and_offer_content/search_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "search_panel", "namespace": "common_store" } }, "search_and_offer_content/search_and_offer_panel/search_and_offer_content/offer_content_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "offer_content" ] }, "search_and_offer_content/search_and_offer_panel/search_and_offer_content/offer_content_panel/offer_content": { "file": "ui/store_common.json", "type": "unknown" }, "search_and_offer_content/search_and_offer_panel/search_and_offer_content/bottom_padding": { "file": "ui/store_common.json", "type": "panel" }, "search_object": { "file": "ui/store_common.json", "type": "panel", "children": [ "search_object_content" ] }, "search_object/search_object_content": { "file": "ui/store_common.json", "type": "input_panel", "extend": { "name": "search_and_offer_content", "namespace": "common_store" } }, "sort_and_filter_menu_modal_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "filter_menu" ] }, "sort_and_filter_menu_modal_panel/filter_menu": { "file": "ui/store_common.json", "type": "unknown" }, "sort_and_filter_menu_modals": { "file": "ui/store_common.json", "type": "panel", "children": [ "filter_menu_modal", "sort_menu_panel" ] }, "sort_and_filter_menu_modals/filter_menu_modal": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "sort_and_filter_menu_modal_panel", "namespace": "common_store" } }, "sort_and_filter_menu_modals/sort_menu_panel": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "sort_and_filter_menu_modal_panel", "namespace": "common_store" } }, "search_filter_sort_background": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "screen_background", "namespace": "common" } }, "search_filter_background_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "search_filter_sort_background" ] }, "search_filter_background_panel/search_filter_sort_background": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "search_filter_sort_background", "namespace": "common_store" } }, "close_bg_button": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed" ] }, "close_bg_button/default": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "search_filter_background_panel", "namespace": "common_store" } }, "close_bg_button/hover": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "search_filter_background_panel", "namespace": "common_store" } }, "close_bg_button/pressed": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "search_filter_background_panel", "namespace": "common_store" } }, "close_bg_panel": { "file": "ui/store_common.json", "type": "panel", "children": [ "header_close_button", "main_close_button" ] }, "close_bg_panel/header_close_button": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "close_bg_button", "namespace": "common_store" } }, "close_bg_panel/main_close_button": { "file": "ui/store_common.json", "type": "button", "extend": { "name": "close_bg_button", "namespace": "common_store" } }, "vertical_line_divider_row": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "vert_line_divider_row_top_buffer", "vertical_line_divider_horizontal_panel_with_padding", "vert_line_divider_row_bottom_buffer" ] }, "vertical_line_divider_row/vert_line_divider_row_top_buffer": { "file": "ui/store_common.json", "type": "panel" }, "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding": { "file": "ui/store_common.json", "type": "stack_panel", "children": [ "vert_line_divider_row_left_buffer", "vertical_line_divider_row_line", "vert_line_divider_row_right_buffer" ] }, "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vert_line_divider_row_left_buffer": { "file": "ui/store_common.json", "type": "panel" }, "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vertical_line_divider_row_line": { "file": "ui/store_common.json", "type": "image", "extend": { "name": "sdl_texture", "namespace": "common_store" } }, "vertical_line_divider_row/vertical_line_divider_horizontal_panel_with_padding/vert_line_divider_row_right_buffer": { "file": "ui/store_common.json", "type": "panel" }, "vertical_line_divider_row/vert_line_divider_row_bottom_buffer": { "file": "ui/store_common.json", "type": "panel" }, "sdl_dropdown_header_row_button": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "light_content_toggle", "namespace": "common_toggles" } }, "sdl_subcategory_button": { "file": "ui/store_common.json", "type": "unknown", "extend": { "name": "subcategory_button", "namespace": "persona_sdl" } }, "sdl_dropdown_header_row": { "file": "ui/store_common.json", "type": "panel", "children": [ "drowdown_header_row_content" ] }, "sdl_dropdown_header_row/drowdown_header_row_content": { "file": "ui/store_common.json", "type": "panel", "children": [ "button_aspects" ] }, "sdl_dropdown_header_row/drowdown_header_row_content/button_aspects": { "file": "ui/store_common.json", "type": "panel", "extend": { "name": "sdl_dropdown_header_row_button", "namespace": "common_store" } }, "sdl_dropdown_data_row": { "file": "ui/store_common.json", "type": "panel", "children": [ "row_background", "button_aspects" ] }, "sdl_dropdown_data_row/row_background": { "file": "ui/store_common.json", "type": "image" }, "sdl_dropdown_data_row/button_aspects": { "file": "ui/store_common.json", "type": "unknown", "extend": { "name": "sdl_subcategory_button", "namespace": "common_store" } } }, "store_layout": { "sdl_scrolling_content_panel": { "file": "ui/store_data_driven_screen.json", "type": "panel", "children": [ "sdl_scrolling_content_stack" ] }, "sdl_scrolling_content_panel/sdl_scrolling_content_stack": { "file": "ui/store_data_driven_screen.json", "type": "stack_panel", "extend": { "name": "sdl_scrolling_content_stack", "namespace": "store_layout" } }, "sdl_scrolling_content_stack": { "file": "ui/store_data_driven_screen.json", "type": "stack_panel", "extend": { "name": "vertical_stack_panel", "namespace": "common" }, "children": [ "padding_0", "store_screen_layout_factory", "footer" ] }, "sdl_scrolling_content_stack/padding_0": { "file": "ui/store_data_driven_screen.json", "type": "panel" }, "sdl_scrolling_content_stack/store_screen_layout_factory": { "file": "ui/store_data_driven_screen.json", "type": "stack_panel", "extend": { "name": "store_section_factory", "namespace": "common_store" } }, "sdl_scrolling_content_stack/footer": { "file": "ui/store_data_driven_screen.json", "type": "panel", "extend": { "name": "footer", "namespace": "common_store" } }, "sdl_scrolling_section_panel": { "file": "ui/store_data_driven_screen.json", "type": "stack_panel", "children": [ "padding0", "top_static_sdl_section", "padding1", "sdl_scrolling_section" ] }, "sdl_scrolling_section_panel/padding0": { "file": "ui/store_data_driven_screen.json", "type": "panel" }, "sdl_scrolling_section_panel/top_static_sdl_section": { "file": "ui/store_data_driven_screen.json", "type": "stack_panel", "extend": { "name": "store_static_section_factory", "namespace": "common_store" } }, "sdl_scrolling_section_panel/padding1": { "file": "ui/store_data_driven_screen.json", "type": "panel" }, "sdl_scrolling_section_panel/sdl_scrolling_section": { "file": "ui/store_data_driven_screen.json", "type": "panel", "extend": { "name": "sdl_scrolling_section", "namespace": "store_layout" } }, "sdl_scrolling_section": { "file": "ui/store_data_driven_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "character_creator_sdl_scroll_section": { "file": "ui/store_data_driven_screen.json", "type": "stack_panel", "extend": { "name": "sdl_scrolling_section_panel", "namespace": "store_layout" } }, "character_creator_sdl_section": { "file": "ui/store_data_driven_screen.json", "type": "stack_panel", "children": [ "sdl_section" ] }, "character_creator_sdl_section/sdl_section": { "file": "ui/store_data_driven_screen.json", "type": "unknown", "extend": { "name": "dialog_background_object", "namespace": "persona_sdl" } }, "character_creator_panel": { "file": "ui/store_data_driven_screen.json", "type": "stack_panel", "extend": { "name": "horizontal_stack_panel", "namespace": "common" }, "children": [ "left_main_panel_padding", "character_creator_sdl_portion", "middle_main_panel_padding", "right_main_panel", "right_main_panel_padding" ] }, "character_creator_panel/left_main_panel_padding": { "file": "ui/store_data_driven_screen.json", "type": "unknown", "extend": { "name": "horizontal_2_padding", "namespace": "persona_sdl" } }, "character_creator_panel/character_creator_sdl_portion": { "file": "ui/store_data_driven_screen.json", "type": "stack_panel", "extend": { "name": "character_creator_sdl_section", "namespace": "store_layout" } }, "character_creator_panel/middle_main_panel_padding": { "file": "ui/store_data_driven_screen.json", "type": "unknown", "extend": { "name": "horizontal_1_padding", "namespace": "persona_sdl" } }, "character_creator_panel/right_main_panel": { "file": "ui/store_data_driven_screen.json", "type": "stack_panel", "extend": { "name": "store_static_section_factory", "namespace": "common_store" } }, "character_creator_panel/right_main_panel_padding": { "file": "ui/store_data_driven_screen.json", "type": "unknown", "extend": { "name": "horizontal_2_padding", "namespace": "persona_sdl" } }, "character_creator_screen_layout": { "file": "ui/store_data_driven_screen.json", "type": "panel", "children": [ "character_creator_panel" ] }, "character_creator_screen_layout/character_creator_panel": { "file": "ui/store_data_driven_screen.json", "type": "stack_panel", "extend": { "name": "character_creator_panel", "namespace": "store_layout" } }, "main_panel": { "file": "ui/store_data_driven_screen.json", "type": "input_panel", "children": [ "background", "main_panel_content", "progress_loading" ] }, "main_panel/background": { "file": "ui/store_data_driven_screen.json", "type": "image" }, "main_panel/main_panel_content": { "file": "ui/store_data_driven_screen.json", "type": "panel", "children": [ "sdl_screen_content" ] }, "main_panel/main_panel_content/sdl_screen_content": { "file": "ui/store_data_driven_screen.json", "type": "unknown" }, "main_panel/progress_loading": { "file": "ui/store_data_driven_screen.json", "type": "panel", "extend": { "name": "progress_loading", "namespace": "common_store" } }, "nav_button_content": { "file": "ui/store_data_driven_screen.json", "type": "stack_panel", "children": [ "image_panel", "small_padding", "label_panel" ] }, "nav_button_content/image_panel": { "file": "ui/store_data_driven_screen.json", "type": "panel", "extend": { "name": "nav_image_panel", "namespace": "store_layout" } }, "nav_button_content/small_padding": { "file": "ui/store_data_driven_screen.json", "type": "panel" }, "nav_button_content/label_panel": { "file": "ui/store_data_driven_screen.json", "type": "unknown" }, "default_nav_label_panel": { "file": "ui/store_data_driven_screen.json", "type": "panel", "children": [ "button_text_label" ] }, "default_nav_label_panel/button_text_label": { "file": "ui/store_data_driven_screen.json", "type": "label", "extend": { "name": "new_ui_binding_button_label", "namespace": "common_buttons" } }, "styled_nav_label_panel": { "file": "ui/store_data_driven_screen.json", "type": "panel", "children": [ "button_text_label" ] }, "styled_nav_label_panel/button_text_label": { "file": "ui/store_data_driven_screen.json", "type": "label", "extend": { "name": "default_styled_button_text_label", "namespace": "store_layout" } }, "styled_nav_label_panel_minecraftTen": { "file": "ui/store_data_driven_screen.json", "type": "panel", "children": [ "button_text_label" ] }, "styled_nav_label_panel_minecraftTen/button_text_label": { "file": "ui/store_data_driven_screen.json", "type": "label", "extend": { "name": "default_styled_button_text_label", "namespace": "store_layout" } }, "default_styled_button_text_label": { "file": "ui/store_data_driven_screen.json", "type": "label", "extend": { "name": "new_ui_binding_button_label", "namespace": "common_buttons" } }, "nav_image_panel": { "file": "ui/store_data_driven_screen.json", "type": "panel", "children": [ "button_image_panel", "button_animated_panel" ] }, "nav_image_panel/button_image_panel": { "file": "ui/store_data_driven_screen.json", "type": "panel", "extend": { "name": "nav_button_image_panel", "namespace": "store_layout" } }, "nav_image_panel/button_animated_panel": { "file": "ui/store_data_driven_screen.json", "type": "panel", "extend": { "name": "nav_button_image_panel", "namespace": "store_layout" } }, "nav_button_image_panel": { "file": "ui/store_data_driven_screen.json", "type": "panel", "children": [ "button_image" ] }, "nav_button_image_panel/button_image": { "file": "ui/store_data_driven_screen.json", "type": "unknown" }, "nav_button_image": { "file": "ui/store_data_driven_screen.json", "type": "image" }, "nav_button_animation": { "file": "ui/store_data_driven_screen.json", "type": "image" }, "nav_button_fill": { "file": "ui/store_data_driven_screen.json", "type": "panel", "extend": { "name": "nav_button_standard", "namespace": "store_layout" } }, "nav_button_fill_styled": { "file": "ui/store_data_driven_screen.json", "type": "panel", "extend": { "name": "nav_button_standard", "namespace": "store_layout" } }, "nav_button_fill_styled_mc10": { "file": "ui/store_data_driven_screen.json", "type": "panel", "extend": { "name": "nav_button_standard", "namespace": "store_layout" } }, "nav_button_standard_styled": { "file": "ui/store_data_driven_screen.json", "type": "panel", "extend": { "name": "nav_button_standard", "namespace": "store_layout" } }, "nav_button_standard_styled_mc10": { "file": "ui/store_data_driven_screen.json", "type": "panel", "extend": { "name": "nav_button_standard", "namespace": "store_layout" } }, "nav_button_standard": { "file": "ui/store_data_driven_screen.json", "type": "panel", "children": [ "nav_button" ] }, "nav_button_standard/nav_button": { "file": "ui/store_data_driven_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "nav_button_grid_panel": { "file": "ui/store_data_driven_screen.json", "type": "panel", "children": [ "nav_button_grid" ] }, "nav_button_grid_panel/nav_button_grid": { "file": "ui/store_data_driven_screen.json", "type": "stack_panel" }, "store_layout_ribbon_search_button": { "file": "ui/store_data_driven_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "store_layout_ribbon_search_button_content": { "file": "ui/store_data_driven_screen.json", "type": "panel", "children": [ "button_image" ] }, "store_layout_ribbon_search_button_content/button_image": { "file": "ui/store_data_driven_screen.json", "type": "image" }, "store_data_driven_screen_base": { "file": "ui/store_data_driven_screen.json", "type": "screen", "extend": { "name": "store_base_screen", "namespace": "common_store" } }, "store_screen_modal_panel": { "file": "ui/store_data_driven_screen.json", "type": "panel", "children": [ "one_button_dialog", "popup_dialog_factory" ] }, "store_screen_modal_panel/one_button_dialog": { "file": "ui/store_data_driven_screen.json", "type": "panel", "extend": { "name": "main_panel_one_button", "namespace": "common_dialogs" } }, "store_screen_modal_panel/popup_dialog_factory": { "file": "ui/store_data_driven_screen.json", "type": "factory" }, "dialog_button": { "file": "ui/store_data_driven_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "store_screen_main_panel": { "file": "ui/store_data_driven_screen.json", "type": "panel", "children": [ "main_content_view", "sort_and_filter_modals" ] }, "store_screen_main_panel/main_content_view": { "file": "ui/store_data_driven_screen.json", "type": "input_panel", "extend": { "name": "sidebar_view", "namespace": "sidebar_navigation" } }, "store_screen_main_panel/sort_and_filter_modals": { "file": "ui/store_data_driven_screen.json", "type": "panel", "extend": { "name": "sort_and_filter_menu_modals", "namespace": "common_store" } }, "store_full_screen_content": { "file": "ui/store_data_driven_screen.json", "type": "panel", "children": [ "mouse_input_focus_panel", "screen_content", "popup_dialog_factory", "character_selector_dialog_factory", "custom_skin_dialog_factory" ] }, "store_full_screen_content/mouse_input_focus_panel": { "file": "ui/store_data_driven_screen.json", "type": "input_panel" }, "store_full_screen_content/screen_content": { "file": "ui/store_data_driven_screen.json", "type": "stack_panel", "children": [ "top_bar_section", "main_panel" ] }, "store_full_screen_content/screen_content/top_bar_section": { "file": "ui/store_data_driven_screen.json", "type": "stack_panel", "extend": { "name": "store_static_section_factory", "namespace": "common_store" } }, "store_full_screen_content/screen_content/main_panel": { "file": "ui/store_data_driven_screen.json", "type": "panel", "children": [ "main_panel_content" ] }, "store_full_screen_content/screen_content/main_panel/main_panel_content": { "file": "ui/store_data_driven_screen.json", "type": "panel", "extend": { "name": "store_screen_main_panel", "namespace": "store_layout" } }, "store_full_screen_content/popup_dialog_factory": { "file": "ui/store_data_driven_screen.json", "type": "factory" }, "store_full_screen_content/character_selector_dialog_factory": { "file": "ui/store_data_driven_screen.json", "type": "factory" }, "store_full_screen_content/custom_skin_dialog_factory": { "file": "ui/store_data_driven_screen.json", "type": "factory" }, "sdl_base_screen": { "file": "ui/store_data_driven_screen.json", "type": "screen", "extend": { "name": "store_data_driven_screen_base", "namespace": "store_layout" } }, "character_creator_base_screen": { "file": "ui/store_data_driven_screen.json", "type": "screen", "extend": { "name": "sdl_base_screen", "namespace": "store_layout" } }, "store_data_driven_screen": { "file": "ui/store_data_driven_screen.json", "type": "screen", "extend": { "name": "sdl_base_screen", "namespace": "store_layout" } }, "character_creator_screen": { "file": "ui/store_data_driven_screen.json", "type": "screen", "extend": { "name": "character_creator_base_screen", "namespace": "store_layout" } }, "dressing_room_color_picker_screen": { "file": "ui/store_data_driven_screen.json", "type": "screen", "extend": { "name": "character_creator_screen", "namespace": "store_layout" } }, "expanded_appearance_view_screen": { "file": "ui/store_data_driven_screen.json", "type": "screen", "extend": { "name": "character_creator_base_screen", "namespace": "store_layout" } }, "non_scrollable_sdl_screen": { "file": "ui/store_data_driven_screen.json", "type": "screen", "extend": { "name": "sdl_base_screen", "namespace": "store_layout" } }, "skin_selector_screen": { "file": "ui/store_data_driven_screen.json", "type": "screen", "extend": { "name": "sdl_base_screen", "namespace": "store_layout" } }, "store_data_driven_modal_one_button_screen": { "file": "ui/store_data_driven_screen.json", "type": "screen", "extend": { "name": "store_data_driven_screen_base", "namespace": "store_layout" } } }, "filter_menu": { "filter_clear_button_panel": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "children": [ "clear_button" ] }, "filter_clear_button_panel/clear_button": { "file": "ui/store_filter_menu_screen.json", "type": "button", "extend": { "name": "dark_text_button", "namespace": "common_buttons" } }, "chevron_icon_panel": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "children": [ "chevron_icon" ] }, "chevron_icon_panel/chevron_icon": { "file": "ui/store_filter_menu_screen.json", "type": "image" }, "filter_variables_panel": { "file": "ui/store_filter_menu_screen.json", "type": "panel" }, "filter_option_button_content": { "file": "ui/store_filter_menu_screen.json", "type": "stack_panel", "children": [ "left_chevron_icon_panel", "filter_type_and_selected_panel", "right_chevron_icon_panel" ] }, "filter_option_button_content/left_chevron_icon_panel": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "chevron_icon_panel", "namespace": "filter_menu" } }, "filter_option_button_content/filter_type_and_selected_panel": { "file": "ui/store_filter_menu_screen.json", "type": "stack_panel", "children": [ "top_padding", "filter_type_label", "middle_padding", "selected_label", "bottom_padding" ] }, "filter_option_button_content/filter_type_and_selected_panel/top_padding": { "file": "ui/store_filter_menu_screen.json", "type": "panel" }, "filter_option_button_content/filter_type_and_selected_panel/filter_type_label": { "file": "ui/store_filter_menu_screen.json", "type": "label" }, "filter_option_button_content/filter_type_and_selected_panel/middle_padding": { "file": "ui/store_filter_menu_screen.json", "type": "panel" }, "filter_option_button_content/filter_type_and_selected_panel/selected_label": { "file": "ui/store_filter_menu_screen.json", "type": "label" }, "filter_option_button_content/filter_type_and_selected_panel/bottom_padding": { "file": "ui/store_filter_menu_screen.json", "type": "panel" }, "filter_option_button_content/right_chevron_icon_panel": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "chevron_icon_panel", "namespace": "filter_menu" } }, "filter_options_button_panel": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "children": [ "filter_variables_panel" ] }, "filter_options_button_panel/filter_variables_panel": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_variables_panel", "namespace": "filter_menu" }, "children": [ "filter_options_button" ] }, "filter_options_button_panel/filter_variables_panel/filter_options_button": { "file": "ui/store_filter_menu_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "filter_main_menu_options_button_panel": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_options_button_panel", "namespace": "filter_menu" } }, "filter_title_bar_content": { "file": "ui/store_filter_menu_screen.json", "type": "stack_panel", "children": [ "filter_logo_and_count_panel", "centered_filter_title_label", "filter_title_padding_close_button", "centered_x" ] }, "filter_title_bar_content/filter_logo_and_count_panel": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_logo_content_panel", "namespace": "common_store" } }, "filter_title_bar_content/centered_filter_title_label": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "children": [ "filter_title_label" ] }, "filter_title_bar_content/centered_filter_title_label/filter_title_label": { "file": "ui/store_filter_menu_screen.json", "type": "label" }, "filter_title_bar_content/filter_title_padding_close_button": { "file": "ui/store_filter_menu_screen.json", "type": "panel" }, "filter_title_bar_content/centered_x": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "children": [ "close_x_image" ] }, "filter_title_bar_content/centered_x/close_x_image": { "file": "ui/store_filter_menu_screen.json", "type": "image" }, "filter_title_bar": { "file": "ui/store_filter_menu_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "filter_checkbox_toggle": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_sort_toggle", "namespace": "common_store" } }, "filter_checkbox_no_icon_toggle": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "children": [ "filter_checkbox_no_icon_toggle" ] }, "filter_checkbox_no_icon_toggle/filter_checkbox_no_icon_toggle": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_checkbox_toggle", "namespace": "filter_menu" } }, "pack_type_sub_menu_panel": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "children": [ "pack_type_sub_menu" ] }, "pack_type_sub_menu_panel/pack_type_sub_menu": { "file": "ui/store_filter_menu_screen.json", "type": "stack_panel", "children": [ "addon_packs_filter", "skin_packs_filter", "texture_packs_filter", "worlds_template_filter_panel", "mashup_packs_filter" ] }, "pack_type_sub_menu_panel/pack_type_sub_menu/addon_packs_filter": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_checkbox_toggle", "namespace": "filter_menu" } }, "pack_type_sub_menu_panel/pack_type_sub_menu/skin_packs_filter": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_checkbox_toggle", "namespace": "filter_menu" } }, "pack_type_sub_menu_panel/pack_type_sub_menu/texture_packs_filter": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_checkbox_toggle", "namespace": "filter_menu" } }, "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel": { "file": "ui/store_filter_menu_screen.json", "type": "stack_panel", "children": [ "worlds_template_filter", "world_template_type_filters" ] }, "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel/worlds_template_filter": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_checkbox_toggle", "namespace": "filter_menu" } }, "pack_type_sub_menu_panel/pack_type_sub_menu/worlds_template_filter_panel/world_template_type_filters": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_sort_grid_panel", "namespace": "common_store" } }, "pack_type_sub_menu_panel/pack_type_sub_menu/mashup_packs_filter": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_checkbox_toggle", "namespace": "filter_menu" } }, "offer_type_sub_menu_panel": { "file": "ui/store_filter_menu_screen.json", "type": "stack_panel", "children": [ "bundles_filter", "realms_plus_filter", "csb_filter" ] }, "offer_type_sub_menu_panel/bundles_filter": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_checkbox_toggle", "namespace": "filter_menu" } }, "offer_type_sub_menu_panel/realms_plus_filter": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "realms_plus_filter", "namespace": "filter_menu" } }, "offer_type_sub_menu_panel/csb_filter": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "csb_filter", "namespace": "filter_menu" } }, "realms_plus_filter": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "children": [ "realms_plus_filter" ] }, "realms_plus_filter/realms_plus_filter": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_checkbox_toggle", "namespace": "filter_menu" } }, "csb_filter": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "children": [ "csb_filter" ] }, "csb_filter/csb_filter": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_checkbox_no_icon_toggle", "namespace": "filter_menu" } }, "realms_plus_gradient_content_panel": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "children": [ "gradient", "particles", "content_panel" ] }, "realms_plus_gradient_content_panel/gradient": { "file": "ui/store_filter_menu_screen.json", "type": "image" }, "realms_plus_gradient_content_panel/particles": { "file": "ui/store_filter_menu_screen.json", "type": "image" }, "realms_plus_gradient_content_panel/content_panel": { "file": "ui/store_filter_menu_screen.json", "type": "stack_panel", "extend": { "name": "toggle_content_panel", "namespace": "common_toggles" } }, "csb_gradient_content_panel": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "children": [ "gradient", "particles", "content_panel" ] }, "csb_gradient_content_panel/gradient": { "file": "ui/store_filter_menu_screen.json", "type": "image" }, "csb_gradient_content_panel/particles": { "file": "ui/store_filter_menu_screen.json", "type": "image" }, "csb_gradient_content_panel/content_panel": { "file": "ui/store_filter_menu_screen.json", "type": "stack_panel", "extend": { "name": "toggle_content_panel", "namespace": "common_toggles" } }, "filter_section_content": { "file": "ui/store_filter_menu_screen.json", "type": "stack_panel", "children": [ "section_title_button", "clear_button", "section_sub_menu" ] }, "filter_section_content/section_title_button": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_options_button_panel", "namespace": "filter_menu" } }, "filter_section_content/clear_button": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_clear_button_panel", "namespace": "filter_menu" } }, "filter_section_content/section_sub_menu": { "file": "ui/store_filter_menu_screen.json", "type": "unknown" }, "filter_section_content_dynamic": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_variables_panel", "namespace": "filter_menu" }, "children": [ "filter_section_content" ] }, "filter_section_content_dynamic/filter_section_content": { "file": "ui/store_filter_menu_screen.json", "type": "stack_panel", "extend": { "name": "filter_section_content", "namespace": "filter_menu" } }, "filter_main_menu_content": { "file": "ui/store_filter_menu_screen.json", "type": "stack_panel", "children": [ "filter_title_bar_panel", "offer_type_button", "pack_type_button", "minecoin_button", "rating_button", "creator_button", "graphics_button", "installed_state_button", "filter_main_menu_filter_toggles_section", "clear_button_panel" ] }, "filter_main_menu_content/filter_title_bar_panel": { "file": "ui/store_filter_menu_screen.json", "type": "button", "extend": { "name": "filter_title_bar", "namespace": "filter_menu" } }, "filter_main_menu_content/offer_type_button": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_main_menu_options_button_panel", "namespace": "filter_menu" } }, "filter_main_menu_content/pack_type_button": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_main_menu_options_button_panel", "namespace": "filter_menu" } }, "filter_main_menu_content/minecoin_button": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_main_menu_options_button_panel", "namespace": "filter_menu" } }, "filter_main_menu_content/rating_button": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_main_menu_options_button_panel", "namespace": "filter_menu" } }, "filter_main_menu_content/creator_button": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_main_menu_options_button_panel", "namespace": "filter_menu" } }, "filter_main_menu_content/graphics_button": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_main_menu_options_button_panel", "namespace": "filter_menu" } }, "filter_main_menu_content/installed_state_button": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_main_menu_options_button_panel", "namespace": "filter_menu" } }, "filter_main_menu_content/filter_main_menu_filter_toggles_section": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "children": [ "filter_main_menu_filter_toggle_grid_panel" ] }, "filter_main_menu_content/filter_main_menu_filter_toggles_section/filter_main_menu_filter_toggle_grid_panel": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_sort_grid_panel", "namespace": "common_store" } }, "filter_main_menu_content/clear_button_panel": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_clear_button_panel", "namespace": "filter_menu" } }, "filter_main_menu_content_persona": { "file": "ui/store_filter_menu_screen.json", "type": "stack_panel", "children": [ "filter_title_bar_panel", "persona_body_button", "persona_style_button", "emote_filter_section", "minecoin_button", "clear_button_panel" ] }, "filter_main_menu_content_persona/filter_title_bar_panel": { "file": "ui/store_filter_menu_screen.json", "type": "button", "extend": { "name": "filter_title_bar", "namespace": "filter_menu" } }, "filter_main_menu_content_persona/persona_body_button": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_main_menu_options_button_panel", "namespace": "filter_menu" } }, "filter_main_menu_content_persona/persona_style_button": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_main_menu_options_button_panel", "namespace": "filter_menu" } }, "filter_main_menu_content_persona/emote_filter_section": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "children": [ "filter_emote_toggle_grid_panel" ] }, "filter_main_menu_content_persona/emote_filter_section/filter_emote_toggle_grid_panel": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_sort_grid_panel", "namespace": "common_store" } }, "filter_main_menu_content_persona/minecoin_button": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_main_menu_options_button_panel", "namespace": "filter_menu" } }, "filter_main_menu_content_persona/clear_button_panel": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_clear_button_panel", "namespace": "filter_menu" } }, "filter_section_content_panel": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "children": [ "filter_menu_screen" ] }, "filter_section_content_panel/filter_menu_screen": { "file": "ui/store_filter_menu_screen.json", "type": "unknown" }, "filter_main_menu_section": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_section_content_panel", "namespace": "filter_menu" } }, "filter_main_menu_section_persona": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_section_content_panel", "namespace": "filter_menu" } }, "filter_pack_type_section": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_section_content_panel", "namespace": "filter_menu" } }, "filter_offer_type_section": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_section_content_panel", "namespace": "filter_menu" } }, "filter_type_section": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_section_content_panel", "namespace": "filter_menu" } }, "filter_menu_content": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "children": [ "filter_main_menu_screen", "filter_offer_type_screen", "filter_pack_type_screen", "filter_minecoin_section", "filter_rating_section", "filter_creator_section", "filter_graphics_section", "filter_installed_state_section" ] }, "filter_menu_content/filter_main_menu_screen": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_main_menu_section", "namespace": "filter_menu" } }, "filter_menu_content/filter_offer_type_screen": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_offer_type_section", "namespace": "filter_menu" } }, "filter_menu_content/filter_pack_type_screen": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_pack_type_section", "namespace": "filter_menu" } }, "filter_menu_content/filter_minecoin_section": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_type_section", "namespace": "filter_menu" } }, "filter_menu_content/filter_rating_section": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_type_section", "namespace": "filter_menu" } }, "filter_menu_content/filter_creator_section": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_type_section", "namespace": "filter_menu" } }, "filter_menu_content/filter_graphics_section": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_type_section", "namespace": "filter_menu" } }, "filter_menu_content/filter_installed_state_section": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_type_section", "namespace": "filter_menu" } }, "filter_menu_content_persona": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "children": [ "filter_main_menu_screen", "filter_style_section", "filter_body_section", "filter_minecoin_section" ] }, "filter_menu_content_persona/filter_main_menu_screen": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_main_menu_section_persona", "namespace": "filter_menu" } }, "filter_menu_content_persona/filter_style_section": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_type_section", "namespace": "filter_menu" } }, "filter_menu_content_persona/filter_body_section": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_type_section", "namespace": "filter_menu" } }, "filter_menu_content_persona/filter_minecoin_section": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "filter_type_section", "namespace": "filter_menu" } }, "filter_menu_panel": { "file": "ui/store_filter_menu_screen.json", "type": "stack_panel", "extend": { "name": "vertical_stack_panel", "namespace": "common" }, "children": [ "top_padding", "alignment_panel" ] }, "filter_menu_panel/top_padding": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "filter_menu_panel/alignment_panel": { "file": "ui/store_filter_menu_screen.json", "type": "stack_panel", "extend": { "name": "horizontal_stack_panel", "namespace": "common" }, "children": [ "left_padding", "filter_menu_content_scroll", "right_padding" ] }, "filter_menu_panel/alignment_panel/left_padding": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "filter_menu_panel/alignment_panel/filter_menu_content_scroll": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "filter_menu_panel/alignment_panel/right_padding": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "filter_menu_screen_content": { "file": "ui/store_filter_menu_screen.json", "type": "input_panel", "extend": { "name": "modal_area_panel_base", "namespace": "common" }, "children": [ "filter_main_panel", "filter_main_panel_persona", "filter_menu_close_background_button" ] }, "filter_menu_screen_content/filter_main_panel": { "file": "ui/store_filter_menu_screen.json", "type": "stack_panel", "extend": { "name": "filter_menu_panel", "namespace": "filter_menu" } }, "filter_menu_screen_content/filter_main_panel_persona": { "file": "ui/store_filter_menu_screen.json", "type": "stack_panel", "extend": { "name": "filter_menu_panel", "namespace": "filter_menu" } }, "filter_menu_screen_content/filter_menu_close_background_button": { "file": "ui/store_filter_menu_screen.json", "type": "panel", "extend": { "name": "close_bg_panel", "namespace": "common_store" } } }, "store_inventory": { "sign_in_button": { "file": "ui/store_inventory_screen.json", "type": "button", "extend": { "name": "light_text_form_fitting_button", "namespace": "common_buttons" } }, "no_xbl_and_local_content_warning_panel": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "children": [ "image_and_description_bg_panel", "bottom_padding" ] }, "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel": { "file": "ui/store_inventory_screen.json", "type": "image", "extend": { "name": "banner_fill", "namespace": "common_store" }, "children": [ "image_and_description_panel" ] }, "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel": { "file": "ui/store_inventory_screen.json", "type": "panel", "children": [ "image_and_description_stack" ] }, "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "children": [ "top_padding", "warning_image_and_label_1", "bottom_padding" ] }, "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/top_padding": { "file": "ui/store_inventory_screen.json", "type": "panel" }, "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "children": [ "xbl_image_center_panel", "xbl_image_padding_warning", "warning_label_centering_panel" ] }, "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_center_panel": { "file": "ui/store_inventory_screen.json", "type": "panel", "children": [ "xbl_sign_in_image" ] }, "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_center_panel/xbl_sign_in_image": { "file": "ui/store_inventory_screen.json", "type": "image" }, "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_padding_warning": { "file": "ui/store_inventory_screen.json", "type": "panel" }, "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel": { "file": "ui/store_inventory_screen.json", "type": "panel", "children": [ "warning_label_stack" ] }, "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "children": [ "top_padding", "message_text", "xbl_image_padding_warning", "sign_in_button_centering_panel" ] }, "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/top_padding": { "file": "ui/store_inventory_screen.json", "type": "panel" }, "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/message_text": { "file": "ui/store_inventory_screen.json", "type": "button", "extend": { "name": "sign_in_panel_text_body", "namespace": "store_inventory" } }, "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/xbl_image_padding_warning": { "file": "ui/store_inventory_screen.json", "type": "panel" }, "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/sign_in_button_centering_panel": { "file": "ui/store_inventory_screen.json", "type": "panel", "children": [ "sigh_in_button" ] }, "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/sign_in_button_centering_panel/sigh_in_button": { "file": "ui/store_inventory_screen.json", "type": "button", "extend": { "name": "sign_in_button", "namespace": "store_inventory" } }, "no_xbl_and_local_content_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/bottom_padding": { "file": "ui/store_inventory_screen.json", "type": "panel" }, "no_xbl_and_local_content_warning_panel/bottom_padding": { "file": "ui/store_inventory_screen.json", "type": "panel" }, "no_xbl_and_no_local_conent_warning_panel": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "children": [ "image_and_description_bg_panel", "bottom_padding" ] }, "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel": { "file": "ui/store_inventory_screen.json", "type": "image", "extend": { "name": "banner_fill", "namespace": "common_store" }, "children": [ "image_and_description_panel" ] }, "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel": { "file": "ui/store_inventory_screen.json", "type": "panel", "children": [ "image_and_description_stack" ] }, "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "children": [ "top_padding", "warning_image_and_label_1", "bottom_padding" ] }, "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/top_padding": { "file": "ui/store_inventory_screen.json", "type": "panel" }, "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "children": [ "xbl_image_center_panel", "xbl_image_padding_warning", "warning_label_centering_panel" ] }, "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_center_panel": { "file": "ui/store_inventory_screen.json", "type": "panel", "children": [ "xbl_sign_in_image" ] }, "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_center_panel/xbl_sign_in_image": { "file": "ui/store_inventory_screen.json", "type": "image" }, "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/xbl_image_padding_warning": { "file": "ui/store_inventory_screen.json", "type": "panel" }, "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel": { "file": "ui/store_inventory_screen.json", "type": "panel", "children": [ "warning_label_stack" ] }, "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "children": [ "top_padding", "message_text", "xbl_image_padding_warning", "sign_in_button_centering_panel" ] }, "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/top_padding": { "file": "ui/store_inventory_screen.json", "type": "panel" }, "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/message_text": { "file": "ui/store_inventory_screen.json", "type": "button", "extend": { "name": "sign_in_panel_text_body", "namespace": "store_inventory" } }, "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/xbl_image_padding_warning": { "file": "ui/store_inventory_screen.json", "type": "panel" }, "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/sign_in_button_centering_panel": { "file": "ui/store_inventory_screen.json", "type": "panel", "children": [ "sigh_in_button" ] }, "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/warning_image_and_label_1/warning_label_centering_panel/warning_label_stack/sign_in_button_centering_panel/sigh_in_button": { "file": "ui/store_inventory_screen.json", "type": "button", "extend": { "name": "sign_in_button", "namespace": "store_inventory" } }, "no_xbl_and_no_local_conent_warning_panel/image_and_description_bg_panel/image_and_description_panel/image_and_description_stack/bottom_padding": { "file": "ui/store_inventory_screen.json", "type": "panel" }, "no_xbl_and_no_local_conent_warning_panel/bottom_padding": { "file": "ui/store_inventory_screen.json", "type": "panel" }, "inventory_sign_in_panel": { "file": "ui/store_inventory_screen.json", "type": "panel", "children": [ "no_xbl_and_local_content_warning_panel", "no_xbl_and_no_local_conent_warning_panel" ] }, "inventory_sign_in_panel/no_xbl_and_local_content_warning_panel": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "extend": { "name": "no_xbl_and_local_content_warning_panel", "namespace": "store_inventory" } }, "inventory_sign_in_panel/no_xbl_and_no_local_conent_warning_panel": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "extend": { "name": "no_xbl_and_no_local_conent_warning_panel", "namespace": "store_inventory" } }, "divider_panel": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "children": [ "top_pad", "divider", "bottom_pad" ] }, "divider_panel/top_pad": { "file": "ui/store_inventory_screen.json", "type": "panel" }, "divider_panel/divider": { "file": "ui/store_inventory_screen.json", "type": "panel", "extend": { "name": "horizontal_divider", "namespace": "common" } }, "divider_panel/bottom_pad": { "file": "ui/store_inventory_screen.json", "type": "panel" }, "right_image": { "file": "ui/store_inventory_screen.json", "type": "image" }, "down_image": { "file": "ui/store_inventory_screen.json", "type": "image" }, "section_toggle_base": { "file": "ui/store_inventory_screen.json", "type": "panel", "extend": { "name": "light_image_toggle_collection", "namespace": "common_toggles" } }, "owned_toggle": { "file": "ui/store_inventory_screen.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "store_inventory" } }, "current_toggle": { "file": "ui/store_inventory_screen.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "store_inventory" } }, "removed_toggle": { "file": "ui/store_inventory_screen.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "store_inventory" } }, "subscriptions_toggle": { "file": "ui/store_inventory_screen.json", "type": "panel", "extend": { "name": "section_toggle_base", "namespace": "store_inventory" } }, "inventory_left_panel": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "children": [ "top_pad", "owned_toggle", "owned_dropdown_box_panel", "divider_0", "csub_panel", "divider_1", "subscriptions_toggle" ] }, "inventory_left_panel/top_pad": { "file": "ui/store_inventory_screen.json", "type": "panel" }, "inventory_left_panel/owned_toggle": { "file": "ui/store_inventory_screen.json", "type": "panel", "extend": { "name": "owned_toggle", "namespace": "store_inventory" } }, "inventory_left_panel/owned_dropdown_box_panel": { "file": "ui/store_inventory_screen.json", "type": "image", "children": [ "owned_dropdown_box" ] }, "inventory_left_panel/owned_dropdown_box_panel/owned_dropdown_box": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "extend": { "name": "dropdown_box", "namespace": "store_inventory" } }, "inventory_left_panel/divider_0": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "extend": { "name": "divider_panel", "namespace": "store_inventory" } }, "inventory_left_panel/csub_panel": { "file": "ui/store_inventory_screen.json", "type": "panel", "children": [ "csub_stack_panel" ] }, "inventory_left_panel/csub_panel/csub_stack_panel": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "extend": { "name": "csub_stack_panel", "namespace": "store_inventory" } }, "inventory_left_panel/divider_1": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "extend": { "name": "divider_panel", "namespace": "store_inventory" } }, "inventory_left_panel/subscriptions_toggle": { "file": "ui/store_inventory_screen.json", "type": "panel", "extend": { "name": "subscriptions_toggle", "namespace": "store_inventory" } }, "csub_stack_panel": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "children": [ "padding_title_vertical", "section_title", "dropdown_panel" ] }, "csub_stack_panel/padding_title_vertical": { "file": "ui/store_inventory_screen.json", "type": "panel" }, "csub_stack_panel/section_title": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "children": [ "padding_title_horizontal", "testTitle" ] }, "csub_stack_panel/section_title/padding_title_horizontal": { "file": "ui/store_inventory_screen.json", "type": "panel" }, "csub_stack_panel/section_title/testTitle": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "extend": { "name": "csb_header", "namespace": "common_csb" } }, "csub_stack_panel/dropdown_panel": { "file": "ui/store_inventory_screen.json", "type": "panel", "children": [ "dropdown_stack_panel" ] }, "csub_stack_panel/dropdown_panel/dropdown_stack_panel": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "children": [ "current_toggle", "current_dropdown_box_panel", "pad_1", "removed_toggle", "removed_dropdown_box_panel", "pad_2" ] }, "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_toggle": { "file": "ui/store_inventory_screen.json", "type": "panel", "extend": { "name": "current_toggle", "namespace": "store_inventory" } }, "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel": { "file": "ui/store_inventory_screen.json", "type": "panel", "children": [ "current_dropdown_box" ] }, "csub_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel/current_dropdown_box": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "extend": { "name": "dropdown_box", "namespace": "store_inventory" } }, "csub_stack_panel/dropdown_panel/dropdown_stack_panel/pad_1": { "file": "ui/store_inventory_screen.json", "type": "panel" }, "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_toggle": { "file": "ui/store_inventory_screen.json", "type": "panel", "extend": { "name": "removed_toggle", "namespace": "store_inventory" } }, "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel": { "file": "ui/store_inventory_screen.json", "type": "panel", "children": [ "removed_dropdown_box" ] }, "csub_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel/removed_dropdown_box": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "extend": { "name": "dropdown_box", "namespace": "store_inventory" } }, "csub_stack_panel/dropdown_panel/dropdown_stack_panel/pad_2": { "file": "ui/store_inventory_screen.json", "type": "panel" }, "subscriptions_text_panel": { "file": "ui/store_inventory_screen.json", "type": "panel", "children": [ "subscriptions_text" ] }, "subscriptions_text_panel/subscriptions_text": { "file": "ui/store_inventory_screen.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "realms_plus_stack_panel": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "children": [ "section_title", "dropdown_panel" ] }, "realms_plus_stack_panel/section_title": { "file": "ui/store_inventory_screen.json", "type": "image", "children": [ "border", "section_title_label", "particles" ] }, "realms_plus_stack_panel/section_title/border": { "file": "ui/store_inventory_screen.json", "type": "image" }, "realms_plus_stack_panel/section_title/section_title_label": { "file": "ui/store_inventory_screen.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "realms_plus_stack_panel/section_title/particles": { "file": "ui/store_inventory_screen.json", "type": "image" }, "realms_plus_stack_panel/dropdown_panel": { "file": "ui/store_inventory_screen.json", "type": "panel", "children": [ "dropdown_stack_panel" ] }, "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "children": [ "pad_0", "current_toggle", "current_dropdown_box_panel", "pad_1", "removed_toggle", "removed_dropdown_box_panel", "pad_2" ] }, "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_0": { "file": "ui/store_inventory_screen.json", "type": "panel" }, "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_toggle": { "file": "ui/store_inventory_screen.json", "type": "panel", "extend": { "name": "current_toggle", "namespace": "store_inventory" } }, "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel": { "file": "ui/store_inventory_screen.json", "type": "panel", "children": [ "current_dropdown_box" ] }, "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/current_dropdown_box_panel/current_dropdown_box": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "extend": { "name": "dropdown_box", "namespace": "store_inventory" } }, "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_1": { "file": "ui/store_inventory_screen.json", "type": "panel" }, "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_toggle": { "file": "ui/store_inventory_screen.json", "type": "panel", "extend": { "name": "removed_toggle", "namespace": "store_inventory" } }, "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel": { "file": "ui/store_inventory_screen.json", "type": "panel", "children": [ "removed_dropdown_box" ] }, "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/removed_dropdown_box_panel/removed_dropdown_box": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "extend": { "name": "dropdown_box", "namespace": "store_inventory" } }, "realms_plus_stack_panel/dropdown_panel/dropdown_stack_panel/pad_2": { "file": "ui/store_inventory_screen.json", "type": "panel" }, "dropdown_button_content": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "children": [ "title_label", "pad_0_fill", "pad_0", "icon_panel", "pad_1", "pad_2", "count_panel", "pad_3", "right_carrot", "down_carrot" ] }, "dropdown_button_content/title_label": { "file": "ui/store_inventory_screen.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "dropdown_button_content/pad_0_fill": { "file": "ui/store_inventory_screen.json", "type": "panel" }, "dropdown_button_content/pad_0": { "file": "ui/store_inventory_screen.json", "type": "panel" }, "dropdown_button_content/icon_panel": { "file": "ui/store_inventory_screen.json", "type": "panel", "children": [ "block_icon" ] }, "dropdown_button_content/icon_panel/block_icon": { "file": "ui/store_inventory_screen.json", "type": "image" }, "dropdown_button_content/pad_1": { "file": "ui/store_inventory_screen.json", "type": "panel" }, "dropdown_button_content/pad_2": { "file": "ui/store_inventory_screen.json", "type": "panel" }, "dropdown_button_content/count_panel": { "file": "ui/store_inventory_screen.json", "type": "panel", "children": [ "count" ] }, "dropdown_button_content/count_panel/count": { "file": "ui/store_inventory_screen.json", "type": "label" }, "dropdown_button_content/pad_3": { "file": "ui/store_inventory_screen.json", "type": "panel" }, "dropdown_button_content/right_carrot": { "file": "ui/store_inventory_screen.json", "type": "panel", "children": [ "right" ] }, "dropdown_button_content/right_carrot/right": { "file": "ui/store_inventory_screen.json", "type": "image", "extend": { "name": "right_image", "namespace": "store_inventory" } }, "dropdown_button_content/down_carrot": { "file": "ui/store_inventory_screen.json", "type": "panel", "children": [ "down" ] }, "dropdown_button_content/down_carrot/down": { "file": "ui/store_inventory_screen.json", "type": "image", "extend": { "name": "down_image", "namespace": "store_inventory" } }, "owned_dropdown_content": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "extend": { "name": "dropdown_button_content", "namespace": "store_inventory" } }, "current_dropdown_content": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "extend": { "name": "dropdown_button_content", "namespace": "store_inventory" } }, "removed_dropdown_content": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "extend": { "name": "dropdown_button_content", "namespace": "store_inventory" } }, "dropdown_box": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "children": [ "top_pad", "all", "divider_0", "addons", "divider_1", "skins", "divider_2", "worlds", "divider_3", "textures", "divider_4", "mashups", "bottom_pad" ] }, "dropdown_box/top_pad": { "file": "ui/store_inventory_screen.json", "type": "panel" }, "dropdown_box/all": { "file": "ui/store_inventory_screen.json", "type": "button", "extend": { "name": "category_panel_button", "namespace": "store_inventory" } }, "dropdown_box/divider_0": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "extend": { "name": "divider_panel", "namespace": "store_inventory" } }, "dropdown_box/addons": { "file": "ui/store_inventory_screen.json", "type": "button", "extend": { "name": "category_panel_button", "namespace": "store_inventory" } }, "dropdown_box/divider_1": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "extend": { "name": "divider_panel", "namespace": "store_inventory" } }, "dropdown_box/skins": { "file": "ui/store_inventory_screen.json", "type": "button", "extend": { "name": "category_panel_button", "namespace": "store_inventory" } }, "dropdown_box/divider_2": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "extend": { "name": "divider_panel", "namespace": "store_inventory" } }, "dropdown_box/worlds": { "file": "ui/store_inventory_screen.json", "type": "button", "extend": { "name": "category_panel_button", "namespace": "store_inventory" } }, "dropdown_box/divider_3": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "extend": { "name": "divider_panel", "namespace": "store_inventory" } }, "dropdown_box/textures": { "file": "ui/store_inventory_screen.json", "type": "button", "extend": { "name": "category_panel_button", "namespace": "store_inventory" } }, "dropdown_box/divider_4": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "extend": { "name": "divider_panel", "namespace": "store_inventory" } }, "dropdown_box/mashups": { "file": "ui/store_inventory_screen.json", "type": "button", "extend": { "name": "category_panel_button", "namespace": "store_inventory" } }, "dropdown_box/bottom_pad": { "file": "ui/store_inventory_screen.json", "type": "panel" }, "category_panel_button": { "file": "ui/store_inventory_screen.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed" ] }, "category_panel_button/default": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "extend": { "name": "category_stack_panel", "namespace": "store_inventory" } }, "category_panel_button/hover": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "extend": { "name": "category_stack_panel", "namespace": "store_inventory" } }, "category_panel_button/pressed": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "extend": { "name": "category_stack_panel", "namespace": "store_inventory" } }, "category_stack_panel": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "children": [ "text", "fill_pad", "icon", "pad_1", "number" ] }, "category_stack_panel/text": { "file": "ui/store_inventory_screen.json", "type": "label" }, "category_stack_panel/fill_pad": { "file": "ui/store_inventory_screen.json", "type": "panel" }, "category_stack_panel/icon": { "file": "ui/store_inventory_screen.json", "type": "image" }, "category_stack_panel/pad_1": { "file": "ui/store_inventory_screen.json", "type": "panel" }, "category_stack_panel/number": { "file": "ui/store_inventory_screen.json", "type": "label" }, "search_object": { "file": "ui/store_inventory_screen.json", "type": "panel", "extend": { "name": "search_object", "namespace": "common_store" } }, "list_panel": { "file": "ui/store_inventory_screen.json", "type": "input_panel", "children": [ "list_panel_content", "progress_loading" ] }, "list_panel/list_panel_content": { "file": "ui/store_inventory_screen.json", "type": "panel", "children": [ "search_and_offers_grid_scroll_panel" ] }, "list_panel/list_panel_content/search_and_offers_grid_scroll_panel": { "file": "ui/store_inventory_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "list_panel/progress_loading": { "file": "ui/store_inventory_screen.json", "type": "panel", "extend": { "name": "progress_loading", "namespace": "common_store" } }, "items_content_section": { "file": "ui/store_inventory_screen.json", "type": "input_panel", "extend": { "name": "list_panel", "namespace": "store_inventory" } }, "subscriptions_content_section": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "children": [ "left_pad", "search_and_offers_grid_scroll_panel" ] }, "subscriptions_content_section/left_pad": { "file": "ui/store_inventory_screen.json", "type": "panel" }, "subscriptions_content_section/search_and_offers_grid_scroll_panel": { "file": "ui/store_inventory_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "right_pane_factory": { "file": "ui/store_inventory_screen.json", "type": "stack_panel" }, "content_area": { "file": "ui/store_inventory_screen.json", "type": "panel", "children": [ "control" ] }, "content_area/control": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "children": [ "right_pane_factory" ] }, "content_area/control/right_pane_factory": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "extend": { "name": "right_pane_factory", "namespace": "store_inventory" } }, "main_panel": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "children": [ "inventory_left_panel", "divider_panel", "inventory_right_panel" ] }, "main_panel/inventory_left_panel": { "file": "ui/store_inventory_screen.json", "type": "panel", "children": [ "inventory_left_image", "left_scrolling_panel" ] }, "main_panel/inventory_left_panel/inventory_left_image": { "file": "ui/store_inventory_screen.json", "type": "image" }, "main_panel/inventory_left_panel/left_scrolling_panel": { "file": "ui/store_inventory_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "main_panel/divider_panel": { "file": "ui/store_inventory_screen.json", "type": "panel", "children": [ "main_divider" ] }, "main_panel/divider_panel/main_divider": { "file": "ui/store_inventory_screen.json", "type": "image" }, "main_panel/inventory_right_panel": { "file": "ui/store_inventory_screen.json", "type": "panel", "children": [ "right_panel_background_image", "content_right_panel" ] }, "main_panel/inventory_right_panel/right_panel_background_image": { "file": "ui/store_inventory_screen.json", "type": "image" }, "main_panel/inventory_right_panel/content_right_panel": { "file": "ui/store_inventory_screen.json", "type": "panel", "extend": { "name": "content_area", "namespace": "store_inventory" } }, "store_inventory_screen_main_panel": { "file": "ui/store_inventory_screen.json", "type": "panel", "children": [ "main_content_view", "sort_and_filter_modals" ] }, "store_inventory_screen_main_panel/main_content_view": { "file": "ui/store_inventory_screen.json", "type": "input_panel", "extend": { "name": "sidebar_view", "namespace": "sidebar_navigation" } }, "store_inventory_screen_main_panel/sort_and_filter_modals": { "file": "ui/store_inventory_screen.json", "type": "panel", "extend": { "name": "sort_and_filter_menu_modals", "namespace": "common_store" } }, "store_search_screen_content": { "file": "ui/store_inventory_screen.json", "type": "panel", "children": [ "main_panel", "popup_dialog_factory" ] }, "store_search_screen_content/main_panel": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "extend": { "name": "store_header_with_coins", "namespace": "common_store" } }, "store_search_screen_content/popup_dialog_factory": { "file": "ui/store_inventory_screen.json", "type": "factory" }, "store_inventory_screen": { "file": "ui/store_inventory_screen.json", "type": "screen", "extend": { "name": "store_base_screen", "namespace": "common_store" } }, "signin_text_section_body": { "file": "ui/store_inventory_screen.json", "type": "stack_panel" }, "signin_text": { "file": "ui/store_inventory_screen.json", "type": "label" }, "signin_text_02": { "file": "ui/store_inventory_screen.json", "type": "label" }, "signin_text_section": { "file": "ui/store_inventory_screen.json", "type": "stack_panel", "extend": { "name": "signin_text_section_body", "namespace": "store_inventory" }, "children": [ "signin_text", "line_1_padding_line_2", "signin_text_02" ] }, "signin_text_section/signin_text": { "file": "ui/store_inventory_screen.json", "type": "label", "extend": { "name": "signin_text", "namespace": "store_inventory" } }, "signin_text_section/line_1_padding_line_2": { "file": "ui/store_inventory_screen.json", "type": "panel" }, "signin_text_section/signin_text_02": { "file": "ui/store_inventory_screen.json", "type": "label", "extend": { "name": "signin_text_02", "namespace": "store_inventory" } }, "sign_in_panel_text_body": { "file": "ui/store_inventory_screen.json", "type": "button", "extend": { "name": "text_body_focus_border_for_controller_button", "namespace": "common_buttons" } } }, "store_item_list": { "store_offer_key_art": { "file": "ui/store_item_list_screen.json", "type": "image" }, "main_panel": { "file": "ui/store_item_list_screen.json", "type": "input_panel", "children": [ "search_object", "progress_loading" ] }, "main_panel/search_object": { "file": "ui/store_item_list_screen.json", "type": "panel", "extend": { "name": "search_object", "namespace": "common_store" } }, "main_panel/progress_loading": { "file": "ui/store_item_list_screen.json", "type": "panel", "extend": { "name": "progress_loading", "namespace": "common_store" } }, "scrolling_content_stack": { "file": "ui/store_item_list_screen.json", "type": "stack_panel", "children": [ "search_panel" ] }, "scrolling_content_stack/search_panel": { "file": "ui/store_item_list_screen.json", "type": "unknown", "extend": { "name": "search_object_panel", "namespace": "common_store" } }, "store_offer_grid": { "file": "ui/store_item_list_screen.json", "type": "grid" }, "persona_offer_grid": { "file": "ui/store_item_list_screen.json", "type": "grid" }, "vertical_store_offer_grid": { "file": "ui/store_item_list_screen.json", "type": "grid" }, "store_offer_title": { "file": "ui/store_item_list_screen.json", "type": "label" }, "store_offer_grid_item": { "file": "ui/store_item_list_screen.json", "type": "panel", "children": [ "frame" ] }, "store_offer_grid_item/frame": { "file": "ui/store_item_list_screen.json", "type": "image", "extend": { "name": "store_description_background", "namespace": "common_store" }, "children": [ "key_art", "progress", "title_label_panel", "durable_offer_info_panel", "offer_button" ] }, "store_offer_grid_item/frame/key_art": { "file": "ui/store_item_list_screen.json", "type": "image", "extend": { "name": "store_offer_key_art", "namespace": "store_item_list" }, "children": [ "key_art_frame", "csb_expiration_banner" ] }, "store_offer_grid_item/frame/key_art/key_art_frame": { "file": "ui/store_item_list_screen.json", "type": "image", "extend": { "name": "square_image_border_white", "namespace": "common" } }, "store_offer_grid_item/frame/key_art/csb_expiration_banner": { "file": "ui/store_item_list_screen.json", "type": "panel", "extend": { "name": "csb_expiration", "namespace": "common_store" } }, "store_offer_grid_item/frame/progress": { "file": "ui/store_item_list_screen.json", "type": "panel", "extend": { "name": "offer_download_progress", "namespace": "common_store" } }, "store_offer_grid_item/frame/title_label_panel": { "file": "ui/store_item_list_screen.json", "type": "panel", "children": [ "durable_offer_title_label" ] }, "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label": { "file": "ui/store_item_list_screen.json", "type": "stack_panel", "children": [ "title", "creator_label" ] }, "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label/title": { "file": "ui/store_item_list_screen.json", "type": "label", "extend": { "name": "store_offer_title", "namespace": "store_item_list" } }, "store_offer_grid_item/frame/title_label_panel/durable_offer_title_label/creator_label": { "file": "ui/store_item_list_screen.json", "type": "stack_panel", "extend": { "name": "store_offer_item_creator_panel", "namespace": "common_store" } }, "store_offer_grid_item/frame/durable_offer_info_panel": { "file": "ui/store_item_list_screen.json", "type": "stack_panel", "children": [ "offer_status_panel" ] }, "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel": { "file": "ui/store_item_list_screen.json", "type": "stack_panel", "children": [ "subscription_panel", "rtx_label", "sales_markdown_percentage_panel", "pack_icon_panel", "fill_markdown_panel_left", "markdown_panel", "padding_markdown_panel_right", "offer_prompt_panel", "padding_6" ] }, "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/subscription_panel": { "file": "ui/store_item_list_screen.json", "type": "panel", "extend": { "name": "subscription_chevron", "namespace": "common_store" } }, "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/rtx_label": { "file": "ui/store_item_list_screen.json", "type": "panel", "extend": { "name": "rtx_label", "namespace": "common_store" } }, "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel": { "file": "ui/store_item_list_screen.json", "type": "panel", "children": [ "markdown_banner" ] }, "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/sales_markdown_percentage_panel/markdown_banner": { "file": "ui/store_item_list_screen.json", "type": "stack_panel", "extend": { "name": "markdown_background", "namespace": "common_store" } }, "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel": { "file": "ui/store_item_list_screen.json", "type": "panel", "children": [ "pack_icon_stack" ] }, "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/pack_icon_panel/pack_icon_stack": { "file": "ui/store_item_list_screen.json", "type": "panel", "extend": { "name": "pack_icon_stack", "namespace": "common_store" } }, "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/fill_markdown_panel_left": { "file": "ui/store_item_list_screen.json", "type": "panel" }, "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/markdown_panel": { "file": "ui/store_item_list_screen.json", "type": "panel", "extend": { "name": "offer_price_markdown_panel", "namespace": "common_store" } }, "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_markdown_panel_right": { "file": "ui/store_item_list_screen.json", "type": "panel" }, "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/offer_prompt_panel": { "file": "ui/store_item_list_screen.json", "type": "stack_panel", "extend": { "name": "offer_prompt_panel", "namespace": "common_store" } }, "store_offer_grid_item/frame/durable_offer_info_panel/offer_status_panel/padding_6": { "file": "ui/store_item_list_screen.json", "type": "panel" }, "store_offer_grid_item/frame/offer_button": { "file": "ui/store_item_list_screen.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "hover", "pressed", "offer_status_icon" ] }, "store_offer_grid_item/frame/offer_button/hover": { "file": "ui/store_item_list_screen.json", "type": "panel", "children": [ "key_art_size_panel" ] }, "store_offer_grid_item/frame/offer_button/hover/key_art_size_panel": { "file": "ui/store_item_list_screen.json", "type": "panel", "children": [ "key_art_frame" ] }, "store_offer_grid_item/frame/offer_button/hover/key_art_size_panel/key_art_frame": { "file": "ui/store_item_list_screen.json", "type": "image", "extend": { "name": "square_image_border_white", "namespace": "common" } }, "store_offer_grid_item/frame/offer_button/pressed": { "file": "ui/store_item_list_screen.json", "type": "panel", "children": [ "key_art_size_panel" ] }, "store_offer_grid_item/frame/offer_button/pressed/key_art_size_panel": { "file": "ui/store_item_list_screen.json", "type": "panel", "children": [ "key_art_frame" ] }, "store_offer_grid_item/frame/offer_button/pressed/key_art_size_panel/key_art_frame": { "file": "ui/store_item_list_screen.json", "type": "image", "extend": { "name": "square_image_border_white", "namespace": "common" } }, "store_offer_grid_item/frame/offer_button/offer_status_icon": { "file": "ui/store_item_list_screen.json", "type": "panel", "extend": { "name": "status_icon_panel", "namespace": "common_store" } }, "store_screen_content": { "file": "ui/store_item_list_screen.json", "type": "panel", "children": [ "main_panel", "popup_dialog_factory" ] }, "store_screen_content/main_panel": { "file": "ui/store_item_list_screen.json", "type": "stack_panel", "extend": { "name": "store_header_with_coins", "namespace": "common_store" } }, "store_screen_content/popup_dialog_factory": { "file": "ui/store_item_list_screen.json", "type": "factory" } }, "store_progress": { "store_progress_screen": { "file": "ui/store_progress_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "screen_content": { "file": "ui/store_progress_screen.json", "type": "panel", "children": [ "title_image", "progress_dialog" ] }, "screen_content/title_image": { "file": "ui/store_progress_screen.json", "type": "image" }, "screen_content/progress_dialog": { "file": "ui/store_progress_screen.json", "type": "panel", "extend": { "name": "main_panel_no_buttons", "namespace": "common_dialogs" } }, "dialog_content": { "file": "ui/store_progress_screen.json", "type": "stack_panel", "children": [ "tooltip_panel", "padding", "progress_panel" ] }, "dialog_content/tooltip_panel": { "file": "ui/store_progress_screen.json", "type": "panel", "children": [ "tooltip_text" ] }, "dialog_content/tooltip_panel/tooltip_text": { "file": "ui/store_progress_screen.json", "type": "label" }, "dialog_content/padding": { "file": "ui/store_progress_screen.json", "type": "panel" }, "dialog_content/progress_panel": { "file": "ui/store_progress_screen.json", "type": "panel", "children": [ "empty_progress_bar", "progress_percent_panel" ] }, "dialog_content/progress_panel/empty_progress_bar": { "file": "ui/store_progress_screen.json", "type": "image", "extend": { "name": "store_empty_progress_bar_icon", "namespace": "common_store" } }, "dialog_content/progress_panel/progress_percent_panel": { "file": "ui/store_progress_screen.json", "type": "panel", "children": [ "full_progress_bar", "progress_bar_nub" ] }, "dialog_content/progress_panel/progress_percent_panel/full_progress_bar": { "file": "ui/store_progress_screen.json", "type": "image", "extend": { "name": "store_full_progress_bar_icon", "namespace": "common_store" } }, "dialog_content/progress_panel/progress_percent_panel/progress_bar_nub": { "file": "ui/store_progress_screen.json", "type": "image", "extend": { "name": "store_progress_bar_nub", "namespace": "common_store" } }, "screen_background": { "file": "ui/store_progress_screen.json", "type": "image" } }, "promo_timeline": { "promo_banner_factory": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel" }, "promo_banner_button_content": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "promo_banner_button", "progress_loading_spinner" ] }, "promo_banner_button_content/promo_banner_button": { "file": "ui/store_promo_timeline_screen.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "promo_banner_button_content/progress_loading_spinner": { "file": "ui/store_promo_timeline_screen.json", "type": "image", "extend": { "name": "progress_loading_spinner", "namespace": "common_store" } }, "promo_banner_image": { "file": "ui/store_promo_timeline_screen.json", "type": "image" }, "promo_banner_panel_content": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "banner_image", "banner_text_panel", "button_stack_panel" ] }, "promo_banner_panel_content/banner_image": { "file": "ui/store_promo_timeline_screen.json", "type": "image", "extend": { "name": "promo_banner_image", "namespace": "promo_timeline" } }, "promo_banner_panel_content/banner_text_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "children": [ "padding_0", "title_stack_panel", "description" ] }, "promo_banner_panel_content/banner_text_panel/padding_0": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "promo_banner_panel_content/banner_text_panel/title_stack_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "children": [ "banner_title" ] }, "promo_banner_panel_content/banner_text_panel/title_stack_panel/banner_title": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "extend": { "name": "sdl_text_minecraftTen_aligned_panel", "namespace": "promo_timeline" } }, "promo_banner_panel_content/banner_text_panel/description": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "extend": { "name": "sdl_text_aligned_panel", "namespace": "promo_timeline" } }, "promo_banner_panel_content/button_stack_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "children": [ "left_offset", "banner_button", "right_offset" ] }, "promo_banner_panel_content/button_stack_panel/left_offset": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "promo_banner_panel_content/button_stack_panel/banner_button": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "extend": { "name": "sdl_content_aligned_panel", "namespace": "promo_timeline" } }, "promo_banner_panel_content/button_stack_panel/right_offset": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "promo_banner_holiday_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "banner_full_button" ] }, "promo_banner_holiday_panel/banner_full_button": { "file": "ui/store_promo_timeline_screen.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed" ] }, "promo_banner_holiday_panel/banner_full_button/default": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "promo_banner_panel_content", "namespace": "promo_timeline" } }, "promo_banner_holiday_panel/banner_full_button/hover": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "promo_banner_panel_content", "namespace": "promo_timeline" } }, "promo_banner_holiday_panel/banner_full_button/pressed": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "promo_banner_panel_content", "namespace": "promo_timeline" } }, "image_message_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "children": [ "image_message_row_content", "padding_0" ] }, "image_message_panel/image_message_row_content": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "image_message_row_content", "namespace": "promo_timeline" } }, "image_message_panel/padding_0": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "image_message_row_content": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "gray_background", "row_button" ] }, "image_message_row_content/gray_background": { "file": "ui/store_promo_timeline_screen.json", "type": "image", "extend": { "name": "store_description_background", "namespace": "common_store" }, "children": [ "message_text", "row_image" ] }, "image_message_row_content/gray_background/message_text": { "file": "ui/store_promo_timeline_screen.json", "type": "label" }, "image_message_row_content/gray_background/row_image": { "file": "ui/store_promo_timeline_screen.json", "type": "image", "extend": { "name": "promo_image_panel", "namespace": "promo_timeline" } }, "image_message_row_content/row_button": { "file": "ui/store_promo_timeline_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "promo_image_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "image", "children": [ "button_image_panel", "button_animated_panel" ] }, "promo_image_panel/button_image_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "promo_button_image_panel", "namespace": "promo_timeline" } }, "promo_image_panel/button_animated_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "promo_button_image_panel", "namespace": "promo_timeline" } }, "promo_button_image_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "button_image" ] }, "promo_button_image_panel/button_image": { "file": "ui/store_promo_timeline_screen.json", "type": "unknown" }, "promo_button_image": { "file": "ui/store_promo_timeline_screen.json", "type": "image" }, "promo_button_animation": { "file": "ui/store_promo_timeline_screen.json", "type": "image" }, "banner_button": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "new_ui_width_fitting_button_panel", "namespace": "common_buttons" } }, "sdl_text_aligned_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "extend": { "name": "sdl_content_aligned_panel", "namespace": "promo_timeline" } }, "sdl_text_minecraftTen_aligned_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "extend": { "name": "sdl_content_aligned_panel", "namespace": "promo_timeline" } }, "sdl_content_aligned_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "children": [ "left__padding_panel", "control", "right_padding_panel" ] }, "sdl_content_aligned_panel/left__padding_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "sdl_content_aligned_panel/control": { "file": "ui/store_promo_timeline_screen.json", "type": "unknown" }, "sdl_content_aligned_panel/right_padding_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "sdl_aligned_text": { "file": "ui/store_promo_timeline_screen.json", "type": "label" }, "sdl_aligned_minecraftTen_text": { "file": "ui/store_promo_timeline_screen.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "colored_direction_button_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "chevron_image" ] }, "colored_direction_button_panel/chevron_image": { "file": "ui/store_promo_timeline_screen.json", "type": "image", "extend": { "name": "chevron_image", "namespace": "common" } }, "left_corner_art": { "file": "ui/store_promo_timeline_screen.json", "type": "image" }, "right_corner_art": { "file": "ui/store_promo_timeline_screen.json", "type": "image" }, "promo_landing_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "input_panel", "children": [ "promo_landing_panel_content", "left_corner_art", "right_corner_art" ] }, "promo_landing_panel/promo_landing_panel_content": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "children": [ "promo_top", "pad_0", "promo_bottom_panel", "pad_1" ] }, "promo_landing_panel/promo_landing_panel_content/promo_top": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "promotion_screen_top_section", "namespace": "promo_timeline" } }, "promo_landing_panel/promo_landing_panel_content/pad_0": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "promo_bottom" ] }, "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom": { "file": "ui/store_promo_timeline_screen.json", "type": "image", "children": [ "promotion_period_carousel_panel" ] }, "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "input_panel", "children": [ "left_button_panel", "offer_grid", "right_button_panel" ] }, "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/left_button_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "left_button" ] }, "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/left_button_panel/left_button": { "file": "ui/store_promo_timeline_screen.json", "type": "button", "extend": { "name": "cycle_pack_left_button", "namespace": "common_store" } }, "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/offer_grid": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "extend": { "name": "promotion_period_offer_panel", "namespace": "promo_timeline" } }, "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/right_button_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "right_button" ] }, "promo_landing_panel/promo_landing_panel_content/promo_bottom_panel/promo_bottom/promotion_period_carousel_panel/right_button_panel/right_button": { "file": "ui/store_promo_timeline_screen.json", "type": "button", "extend": { "name": "cycle_pack_right_button", "namespace": "common_store" } }, "promo_landing_panel/promo_landing_panel_content/pad_1": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "promo_landing_panel/left_corner_art": { "file": "ui/store_promo_timeline_screen.json", "type": "image", "extend": { "name": "left_corner_art", "namespace": "promo_timeline" } }, "promo_landing_panel/right_corner_art": { "file": "ui/store_promo_timeline_screen.json", "type": "image", "extend": { "name": "right_corner_art", "namespace": "promo_timeline" } }, "promotion_screen_top_section": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "main_panel" ] }, "promotion_screen_top_section/main_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "image", "extend": { "name": "promotion_top_main_panel", "namespace": "promo_timeline" } }, "promotion_top_main_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "image", "children": [ "promotion_top_main_stack" ] }, "promotion_top_main_panel/promotion_top_main_stack": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "children": [ "main_panel_title", "promo_single_top", "promo_multi_item" ] }, "promotion_top_main_panel/promotion_top_main_stack/main_panel_title": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "extend": { "name": "main_panel_title", "namespace": "promo_timeline" } }, "promotion_top_main_panel/promotion_top_main_stack/promo_single_top": { "file": "ui/store_promo_timeline_screen.json", "type": "input_panel", "children": [ "single_item_view" ] }, "promotion_top_main_panel/promotion_top_main_stack/promo_single_top/single_item_view": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "extend": { "name": "promo_detail_panel", "namespace": "promo_timeline" } }, "promotion_top_main_panel/promotion_top_main_stack/promo_multi_item": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "main_panel_title": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "children": [ "padding_0", "header_stack", "padding_1", "divdier_centering_panel", "padding_2" ] }, "main_panel_title/padding_0": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "main_panel_title/header_stack": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "children": [ "padding_0", "back_button_centering_panel", "padding_1", "header_panel", "padding_2", "claim_all_button_panel" ] }, "main_panel_title/header_stack/padding_0": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "main_panel_title/header_stack/back_button_centering_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "button" ] }, "main_panel_title/header_stack/back_button_centering_panel/button": { "file": "ui/store_promo_timeline_screen.json", "type": "button", "extend": { "name": "back_button", "namespace": "common" } }, "main_panel_title/header_stack/padding_1": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "main_panel_title/header_stack/header_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "title_and_description" ] }, "main_panel_title/header_stack/header_panel/title_and_description": { "file": "ui/store_promo_timeline_screen.json", "type": "label" }, "main_panel_title/header_stack/padding_2": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "main_panel_title/header_stack/claim_all_button_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "claim_all_button" ] }, "main_panel_title/header_stack/claim_all_button_panel/claim_all_button": { "file": "ui/store_promo_timeline_screen.json", "type": "button", "extend": { "name": "light_text_form_fitting_button", "namespace": "common_buttons" } }, "main_panel_title/padding_1": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "main_panel_title/divdier_centering_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "divider" ] }, "main_panel_title/divdier_centering_panel/divider": { "file": "ui/store_promo_timeline_screen.json", "type": "image" }, "main_panel_title/padding_2": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "promo_multi_item_grid": { "file": "ui/store_promo_timeline_screen.json", "type": "grid" }, "promo_button": { "file": "ui/store_promo_timeline_screen.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed" ] }, "promo_button/default": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "key_art_size_panel" ] }, "promo_button/default/key_art_size_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "key_art_frame", "button_frame" ] }, "promo_button/default/key_art_size_panel/key_art_frame": { "file": "ui/store_promo_timeline_screen.json", "type": "image", "extend": { "name": "focus_border_black", "namespace": "common" }, "children": [ "sizing_panel", "platform_restricted_warning_image" ] }, "promo_button/default/key_art_size_panel/key_art_frame/sizing_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "promo_button/default/key_art_size_panel/key_art_frame/platform_restricted_warning_image": { "file": "ui/store_promo_timeline_screen.json", "type": "image" }, "promo_button/default/key_art_size_panel/button_frame": { "file": "ui/store_promo_timeline_screen.json", "type": "image", "extend": { "name": "focus_border_black", "namespace": "common" } }, "promo_button/hover": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "key_art_size_panel" ] }, "promo_button/hover/key_art_size_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "key_art_frame", "button_frame" ] }, "promo_button/hover/key_art_size_panel/key_art_frame": { "file": "ui/store_promo_timeline_screen.json", "type": "image", "extend": { "name": "square_image_border_white", "namespace": "common" }, "children": [ "sizing_panel" ] }, "promo_button/hover/key_art_size_panel/key_art_frame/sizing_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "promo_button/hover/key_art_size_panel/button_frame": { "file": "ui/store_promo_timeline_screen.json", "type": "image", "extend": { "name": "square_image_border_white", "namespace": "common" } }, "promo_button/pressed": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "key_art_frame", "button_frame" ] }, "promo_button/pressed/key_art_frame": { "file": "ui/store_promo_timeline_screen.json", "type": "image", "extend": { "name": "square_image_border_white", "namespace": "common" }, "children": [ "sizing_panel" ] }, "promo_button/pressed/key_art_frame/sizing_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "promo_button/pressed/button_frame": { "file": "ui/store_promo_timeline_screen.json", "type": "image", "extend": { "name": "square_image_border_white", "namespace": "common" } }, "promo_grid_item": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "background_image", "promo_button", "platform_restricted_error_multi_item" ] }, "promo_grid_item/background_image": { "file": "ui/store_promo_timeline_screen.json", "type": "image", "extend": { "name": "store_description_background", "namespace": "common_store" }, "children": [ "promo_content" ] }, "promo_grid_item/background_image/promo_content": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "extend": { "name": "promo_grid_item_content", "namespace": "promo_timeline" } }, "promo_grid_item/promo_button": { "file": "ui/store_promo_timeline_screen.json", "type": "button", "extend": { "name": "promo_button", "namespace": "promo_timeline" } }, "promo_grid_item/platform_restricted_error_multi_item": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "platform_restricted_error", "namespace": "promo_timeline" } }, "platform_restricted_error": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "platform_restricted_error_button" ] }, "platform_restricted_error/platform_restricted_error_button": { "file": "ui/store_promo_timeline_screen.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed", "white_overlay_to_gray_out" ] }, "platform_restricted_error/platform_restricted_error_button/default": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "platform_restricted_error/platform_restricted_error_button/hover": { "file": "ui/store_promo_timeline_screen.json", "type": "image", "extend": { "name": "square_image_border_white", "namespace": "common" } }, "platform_restricted_error/platform_restricted_error_button/pressed": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "platform_restricted_error/platform_restricted_error_button/white_overlay_to_gray_out": { "file": "ui/store_promo_timeline_screen.json", "type": "image" }, "promo_grid_item_content": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "children": [ "thumbnail_image", "persona_key_art_frame", "padding_0", "title_tooltip" ] }, "promo_grid_item_content/thumbnail_image": { "file": "ui/store_promo_timeline_screen.json", "type": "image" }, "promo_grid_item_content/persona_key_art_frame": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "persona_image_panel", "background", "rarity_bar_panel" ] }, "promo_grid_item_content/persona_key_art_frame/persona_image_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "image" }, "promo_grid_item_content/persona_key_art_frame/background": { "file": "ui/store_promo_timeline_screen.json", "type": "image", "extend": { "name": "item_rarity_color_background", "namespace": "persona_common" } }, "promo_grid_item_content/persona_key_art_frame/rarity_bar_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "image", "extend": { "name": "rarity_bar", "namespace": "persona_common" } }, "promo_grid_item_content/padding_0": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "promo_grid_item_content/title_tooltip": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "children": [ "promo_title", "tooltip" ] }, "promo_grid_item_content/title_tooltip/promo_title": { "file": "ui/store_promo_timeline_screen.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "promo_grid_item_content/title_tooltip/tooltip": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "extend": { "name": "promo_timer_panel", "namespace": "promo_timeline" } }, "promotion_period_grid_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "promotion_offer_grid_image" ] }, "promotion_period_grid_panel/promotion_offer_grid_image": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "item_selected_bg", "promotion_offer_grid_stack_panel" ] }, "promotion_period_grid_panel/promotion_offer_grid_image/item_selected_bg": { "file": "ui/store_promo_timeline_screen.json", "type": "image" }, "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "children": [ "day_label_panel", "pad", "image_centering_panel" ] }, "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/day_label_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "day_label" ] }, "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/day_label_panel/day_label": { "file": "ui/store_promo_timeline_screen.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/pad": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "image_panel" ] }, "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel/image_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "item_button" ] }, "promotion_period_grid_panel/promotion_offer_grid_image/promotion_offer_grid_stack_panel/image_centering_panel/image_panel/item_button": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "promotion_period_grid_item", "namespace": "promo_timeline" } }, "promotion_period_offer_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "children": [ "period_1", "padding_0", "period_2", "padding_1", "period_3", "padding_2", "period_4", "padding_3", "period_5", "padding_4", "period_6", "padding_5", "period_7" ] }, "promotion_period_offer_panel/period_1": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "promotion_period_grid_panel", "namespace": "promo_timeline" } }, "promotion_period_offer_panel/padding_0": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "promotion_period_offer_panel/period_2": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "promotion_period_grid_panel", "namespace": "promo_timeline" } }, "promotion_period_offer_panel/padding_1": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "promotion_period_offer_panel/period_3": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "promotion_period_grid_panel", "namespace": "promo_timeline" } }, "promotion_period_offer_panel/padding_2": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "promotion_period_offer_panel/period_4": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "promotion_period_grid_panel", "namespace": "promo_timeline" } }, "promotion_period_offer_panel/padding_3": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "promotion_period_offer_panel/period_5": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "promotion_period_grid_panel", "namespace": "promo_timeline" } }, "promotion_period_offer_panel/padding_4": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "promotion_period_offer_panel/period_6": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "promotion_period_grid_panel", "namespace": "promo_timeline" } }, "promotion_period_offer_panel/padding_5": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "promotion_period_offer_panel/period_7": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "promotion_period_grid_panel", "namespace": "promo_timeline" } }, "toggle_button_control": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "green_check", "key_art_image_panel" ] }, "toggle_button_control/green_check": { "file": "ui/store_promo_timeline_screen.json", "type": "image" }, "toggle_button_control/key_art_image_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "image_loading_panel", "key_art_image" ] }, "toggle_button_control/key_art_image_panel/image_loading_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "progress_loading", "namespace": "common_store" } }, "toggle_button_control/key_art_image_panel/key_art_image": { "file": "ui/store_promo_timeline_screen.json", "type": "image" }, "checked_border": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "toggle_checked", "namespace": "common_toggles" } }, "promotion_period_grid_item": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "frame" ] }, "promotion_period_grid_item/frame": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "offer_button" ] }, "promotion_period_grid_item/frame/offer_button": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "offer_toggle_button" ] }, "promotion_period_grid_item/frame/offer_button/offer_toggle_button": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "dark_ui_toggle", "namespace": "common_toggles" } }, "vertical_padding_2px": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "timer_icon_tooltip_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "limited_status_image" ] }, "timer_icon_tooltip_panel/limited_status_image": { "file": "ui/store_promo_timeline_screen.json", "type": "image" }, "timer_tooltip_panel_right_extending": { "file": "ui/store_promo_timeline_screen.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed" ] }, "timer_tooltip_panel_right_extending/default": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "timer_tooltip_panel_right_extending/hover": { "file": "ui/store_promo_timeline_screen.json", "type": "image", "extend": { "name": "dynamic_tooltip_popup_with_image_and_text", "namespace": "common" } }, "timer_tooltip_panel_right_extending/pressed": { "file": "ui/store_promo_timeline_screen.json", "type": "image", "extend": { "name": "dynamic_tooltip_popup_with_image_and_text", "namespace": "common" } }, "timer_tooltip_panel_left_extending": { "file": "ui/store_promo_timeline_screen.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed" ] }, "timer_tooltip_panel_left_extending/default": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "timer_tooltip_panel_left_extending/hover": { "file": "ui/store_promo_timeline_screen.json", "type": "image", "extend": { "name": "dynamic_tooltip_popup_with_image_and_text", "namespace": "common" } }, "timer_tooltip_panel_left_extending/pressed": { "file": "ui/store_promo_timeline_screen.json", "type": "image", "extend": { "name": "dynamic_tooltip_popup_with_image_and_text", "namespace": "common" } }, "no_timer_tooltip_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed" ] }, "no_timer_tooltip_panel/default": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "no_timer_tooltip_panel/hover": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "no_timer_tooltip_panel/pressed": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "promo_timer_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "children": [ "timer_icon_and_tooltip_panel", "padding", "timer_text" ] }, "promo_timer_panel/timer_icon_and_tooltip_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "tooltip_button_right_extending", "tooltip_button_left_extending", "notooltip_button", "timer_icon" ] }, "promo_timer_panel/timer_icon_and_tooltip_panel/tooltip_button_right_extending": { "file": "ui/store_promo_timeline_screen.json", "type": "button", "extend": { "name": "timer_tooltip_panel_right_extending", "namespace": "promo_timeline" } }, "promo_timer_panel/timer_icon_and_tooltip_panel/tooltip_button_left_extending": { "file": "ui/store_promo_timeline_screen.json", "type": "button", "extend": { "name": "timer_tooltip_panel_left_extending", "namespace": "promo_timeline" } }, "promo_timer_panel/timer_icon_and_tooltip_panel/notooltip_button": { "file": "ui/store_promo_timeline_screen.json", "type": "button", "extend": { "name": "no_timer_tooltip_panel", "namespace": "promo_timeline" } }, "promo_timer_panel/timer_icon_and_tooltip_panel/timer_icon": { "file": "ui/store_promo_timeline_screen.json", "type": "image" }, "promo_timer_panel/padding": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "promo_timer_panel/timer_text": { "file": "ui/store_promo_timeline_screen.json", "type": "label" }, "offer_title_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "offer_title_label" ] }, "offer_title_panel/offer_title_label": { "file": "ui/store_promo_timeline_screen.json", "type": "label" }, "title_and_author_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "children": [ "author_button_panel" ] }, "title_and_author_panel/author_button_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "summary_author_button" ] }, "title_and_author_panel/author_button_panel/summary_author_button": { "file": "ui/store_promo_timeline_screen.json", "type": "button", "extend": { "name": "underline_button", "namespace": "common_buttons" } }, "glyph_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "item_glyph_count_panel" ] }, "glyph_panel/item_glyph_count_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "children": [ "glyph_icon_panel", "center_item_glyph_padding", "item_glyph_count_panel_label", "item_glyph_panel_padding" ] }, "glyph_panel/item_glyph_count_panel/glyph_icon_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "glyph_icon" ] }, "glyph_panel/item_glyph_count_panel/glyph_icon_panel/glyph_icon": { "file": "ui/store_promo_timeline_screen.json", "type": "image" }, "glyph_panel/item_glyph_count_panel/center_item_glyph_padding": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "glyph_panel/item_glyph_count_panel/item_glyph_count_panel_label": { "file": "ui/store_promo_timeline_screen.json", "type": "label" }, "glyph_panel/item_glyph_count_panel/item_glyph_panel_padding": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "horizontal_padding_8px", "namespace": "pdp" } }, "vertical_glyph_section_content": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "children": [ "glyph_content", "bottom_glyph_content_padding" ] }, "vertical_glyph_section_content/glyph_content": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "glyph_panel", "namespace": "promo_timeline" } }, "vertical_glyph_section_content/bottom_glyph_content_padding": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "vertical_padding_2px", "namespace": "promo_timeline" } }, "glyph_section_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "glyphs" ] }, "glyph_section_panel/glyphs": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "children": [ "skin_glyph_section", "world_glyph_section", "resource_pack_glyph_section" ] }, "glyph_section_panel/glyphs/skin_glyph_section": { "file": "ui/store_promo_timeline_screen.json", "type": "unknown" }, "glyph_section_panel/glyphs/world_glyph_section": { "file": "ui/store_promo_timeline_screen.json", "type": "unknown" }, "glyph_section_panel/glyphs/resource_pack_glyph_section": { "file": "ui/store_promo_timeline_screen.json", "type": "unknown" }, "vertical_glyph_section_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "glyph_section_panel", "namespace": "promo_timeline" } }, "image_glyphs_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "children": [ "world_panel", "persona_panel", "divider", "info" ] }, "image_glyphs_panel/world_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "border", "world_key_image" ] }, "image_glyphs_panel/world_panel/border": { "file": "ui/store_promo_timeline_screen.json", "type": "image", "extend": { "name": "square_image_border_white", "namespace": "common" } }, "image_glyphs_panel/world_panel/world_key_image": { "file": "ui/store_promo_timeline_screen.json", "type": "image" }, "image_glyphs_panel/persona_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "border", "persona_image", "background", "rarity_bar_panel" ] }, "image_glyphs_panel/persona_panel/border": { "file": "ui/store_promo_timeline_screen.json", "type": "image", "extend": { "name": "square_image_border_white", "namespace": "common" } }, "image_glyphs_panel/persona_panel/persona_image": { "file": "ui/store_promo_timeline_screen.json", "type": "image" }, "image_glyphs_panel/persona_panel/background": { "file": "ui/store_promo_timeline_screen.json", "type": "image", "extend": { "name": "item_rarity_color_background", "namespace": "persona_common" } }, "image_glyphs_panel/persona_panel/rarity_bar_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "image", "extend": { "name": "rarity_bar", "namespace": "persona_common" } }, "image_glyphs_panel/divider": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "image_glyphs_panel/info": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "children": [ "summary_title_and_author_panel", "glyph_section" ] }, "image_glyphs_panel/info/summary_title_and_author_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "extend": { "name": "title_and_author_panel", "namespace": "promo_timeline" } }, "image_glyphs_panel/info/glyph_section": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "glyph_section_panel" ] }, "image_glyphs_panel/info/glyph_section/glyph_section_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "vertical_glyph_section_panel", "namespace": "promo_timeline" } }, "promo_lower_button_content": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "promo_banner_button", "progress_loading_spinner" ] }, "promo_lower_button_content/promo_banner_button": { "file": "ui/store_promo_timeline_screen.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "promo_lower_button_content/progress_loading_spinner": { "file": "ui/store_promo_timeline_screen.json", "type": "image", "extend": { "name": "progress_loading_spinner", "namespace": "common_store" } }, "free_discount_label": { "file": "ui/store_promo_timeline_screen.json", "type": "label" }, "promo_upper_button_content": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "markdown", "promo_item_action_text_panel", "download_progress_bar" ] }, "promo_upper_button_content/markdown": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "children": [ "sales_banner_offset_panel", "price_markdown_panel" ] }, "promo_upper_button_content/markdown/sales_banner_offset_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "sales_banner_panel" ] }, "promo_upper_button_content/markdown/sales_banner_offset_panel/sales_banner_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "markdown_banner" ] }, "promo_upper_button_content/markdown/sales_banner_offset_panel/sales_banner_panel/markdown_banner": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "extend": { "name": "markdown_background", "namespace": "common_store" } }, "promo_upper_button_content/markdown/price_markdown_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "offer_price" ] }, "promo_upper_button_content/markdown/price_markdown_panel/offer_price": { "file": "ui/store_promo_timeline_screen.json", "type": "label", "children": [ "text_strike_through" ] }, "promo_upper_button_content/markdown/price_markdown_panel/offer_price/text_strike_through": { "file": "ui/store_promo_timeline_screen.json", "type": "image", "extend": { "name": "text_strike_through", "namespace": "common_store" } }, "promo_upper_button_content/promo_item_action_text_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "children": [ "warning_image_panel", "promo_item_action_text" ] }, "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "platform_restricted_warning_image", "padding" ] }, "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel/platform_restricted_warning_image": { "file": "ui/store_promo_timeline_screen.json", "type": "image" }, "promo_upper_button_content/promo_item_action_text_panel/warning_image_panel/padding": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "promo_upper_button_content/promo_item_action_text_panel/promo_item_action_text": { "file": "ui/store_promo_timeline_screen.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "promo_upper_button_content/download_progress_bar": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "store_progress_bar_icon", "namespace": "common_store" } }, "description_section_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "contents_description" ] }, "description_section_panel/contents_description": { "file": "ui/store_promo_timeline_screen.json", "type": "label" }, "offset_title_offer": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "children": [ "pad_0", "title_panel" ] }, "offset_title_offer/pad_0": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "offset_title_offer/title_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "offer_title_panel", "namespace": "promo_timeline" } }, "offset_promo_timer": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "children": [ "pad_0", "promo_timer" ] }, "offset_promo_timer/pad_0": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "offset_promo_timer/promo_timer": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "extend": { "name": "promo_timer_panel", "namespace": "promo_timeline" } }, "offset_image_glyphs_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "children": [ "pad_0", "smaller_panel" ] }, "offset_image_glyphs_panel/pad_0": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "offset_image_glyphs_panel/smaller_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "children": [ "details", "description" ] }, "offset_image_glyphs_panel/smaller_panel/details": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "extend": { "name": "image_glyphs_panel", "namespace": "promo_timeline" } }, "offset_image_glyphs_panel/smaller_panel/description": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "description_section_panel", "namespace": "promo_timeline" } }, "promo_pack_detail_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "children": [ "offset_title_panel", "offsetted_promo_timer", "pad_0", "offsetted_details", "pad_1" ] }, "promo_pack_detail_panel/offset_title_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "extend": { "name": "offset_title_offer", "namespace": "promo_timeline" } }, "promo_pack_detail_panel/offsetted_promo_timer": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "extend": { "name": "offset_promo_timer", "namespace": "promo_timeline" } }, "promo_pack_detail_panel/pad_0": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "promo_pack_detail_panel/offsetted_details": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "extend": { "name": "offset_image_glyphs_panel", "namespace": "promo_timeline" } }, "promo_pack_detail_panel/pad_1": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "promo_left_inner_top_scrolling_content": { "file": "ui/store_promo_timeline_screen.json", "type": "input_panel", "children": [ "details" ] }, "promo_left_inner_top_scrolling_content/details": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "extend": { "name": "promo_pack_detail_panel", "namespace": "promo_timeline" } }, "promo_left_inner_top": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "children": [ "top", "padding2" ] }, "promo_left_inner_top/top": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "promo_left_inner_top/padding2": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "vertical_padding_2px", "namespace": "promo_timeline" } }, "promo_left_inner_bottom": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "children": [ "banner_button_top_panel", "banner_button_bottom" ] }, "promo_left_inner_bottom/banner_button_top_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "banner_button_top", "platform_restricted_error_single_item" ] }, "promo_left_inner_bottom/banner_button_top_panel/banner_button_top": { "file": "ui/store_promo_timeline_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "promo_left_inner_bottom/banner_button_top_panel/platform_restricted_error_single_item": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "platform_restricted_error", "namespace": "promo_timeline" } }, "promo_left_inner_bottom/banner_button_bottom": { "file": "ui/store_promo_timeline_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "promo_left_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "children": [ "top", "bottom_buttons_padded", "padding" ] }, "promo_left_panel/top": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "extend": { "name": "promo_left_inner_top", "namespace": "promo_timeline" } }, "promo_left_panel/bottom_buttons_padded": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "children": [ "pad_0", "bottom" ] }, "promo_left_panel/bottom_buttons_padded/pad_0": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "promo_left_panel/bottom_buttons_padded/bottom": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "extend": { "name": "promo_left_inner_bottom", "namespace": "promo_timeline" } }, "promo_left_panel/padding": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "promo_world_image_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "image" ] }, "promo_world_image_panel/image": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "key_image" ] }, "promo_world_image_panel/image/key_image": { "file": "ui/store_promo_timeline_screen.json", "type": "image", "children": [ "border" ] }, "promo_world_image_panel/image/key_image/border": { "file": "ui/store_promo_timeline_screen.json", "type": "image", "extend": { "name": "focus_border_white", "namespace": "common" } }, "promo_grey_bar_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "children": [ "grey_bar", "green_bar", "padding" ] }, "promo_grey_bar_panel/grey_bar": { "file": "ui/store_promo_timeline_screen.json", "type": "image" }, "promo_grey_bar_panel/green_bar": { "file": "ui/store_promo_timeline_screen.json", "type": "image" }, "promo_grey_bar_panel/padding": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "promo_world_button_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "children": [ "pan_left_button", "navigation_bar", "pan_right_button" ] }, "promo_world_button_panel/pan_left_button": { "file": "ui/store_promo_timeline_screen.json", "type": "button", "extend": { "name": "cycle_pack_left_button", "namespace": "common_store" } }, "promo_world_button_panel/navigation_bar": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "grey_bar" ] }, "promo_world_button_panel/navigation_bar/grey_bar": { "file": "ui/store_promo_timeline_screen.json", "type": "image", "children": [ "grey_bar_factory_panel" ] }, "promo_world_button_panel/navigation_bar/grey_bar/grey_bar_factory_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel" }, "promo_world_button_panel/pan_right_button": { "file": "ui/store_promo_timeline_screen.json", "type": "button", "extend": { "name": "cycle_pack_right_button", "namespace": "common_store" } }, "promo_world_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "children": [ "image", "padding1", "buttons", "padding_3" ] }, "promo_world_panel/image": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "promo_world_image_panel", "namespace": "promo_timeline" } }, "promo_world_panel/padding1": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "promo_world_panel/buttons": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "extend": { "name": "promo_world_button_panel", "namespace": "promo_timeline" } }, "promo_world_panel/padding_3": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "promo_skin_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "size_control" ] }, "promo_skin_panel/size_control": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "background", "skin_button" ] }, "promo_skin_panel/size_control/background": { "file": "ui/store_promo_timeline_screen.json", "type": "image" }, "promo_skin_panel/size_control/skin_button": { "file": "ui/store_promo_timeline_screen.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed", "content_panel" ] }, "promo_skin_panel/size_control/skin_button/default": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "promo_skin_panel/size_control/skin_button/hover": { "file": "ui/store_promo_timeline_screen.json", "type": "image", "extend": { "name": "square_image_border_white", "namespace": "common" } }, "promo_skin_panel/size_control/skin_button/pressed": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "promo_skin_panel/size_control/skin_button/content_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "paper_doll" ] }, "promo_skin_panel/size_control/skin_button/content_panel/paper_doll": { "file": "ui/store_promo_timeline_screen.json", "type": "custom" }, "promo_skin_grid_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "promo_skin_pack_grid" ] }, "promo_skin_grid_panel/promo_skin_pack_grid": { "file": "ui/store_promo_timeline_screen.json", "type": "grid" }, "promo_right_panel_scroll_content": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "children": [ "world_screenshots_panel", "skin_image_panel", "persona_preview" ] }, "promo_right_panel_scroll_content/world_screenshots_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "world_panel" ] }, "promo_right_panel_scroll_content/world_screenshots_panel/world_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "extend": { "name": "promo_world_panel", "namespace": "promo_timeline" } }, "promo_right_panel_scroll_content/skin_image_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "skin_panel" ] }, "promo_right_panel_scroll_content/skin_image_panel/skin_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "unknown", "extend": { "name": "skin_scroll_panel", "namespace": "promo_timeline" } }, "promo_right_panel_scroll_content/persona_preview": { "file": "ui/store_promo_timeline_screen.json", "type": "input_panel", "extend": { "name": "promotion_skin_viewer_panel", "namespace": "promo_timeline" } }, "skin_scroll_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "unknown", "extend": { "name": "scroll_section", "namespace": "persona_sdl" } }, "persona_classic_skin_grid_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "persona_skin_pack_category_grid" ] }, "persona_classic_skin_grid_panel/persona_skin_pack_category_grid": { "file": "ui/store_promo_timeline_screen.json", "type": "grid" }, "promo_right_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "promo_detail_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "children": [ "detail", "center_spacing", "right" ] }, "promo_detail_panel/detail": { "file": "ui/store_promo_timeline_screen.json", "type": "stack_panel", "extend": { "name": "promo_left_panel", "namespace": "promo_timeline" } }, "promo_detail_panel/center_spacing": { "file": "ui/store_promo_timeline_screen.json", "type": "panel" }, "promo_detail_panel/right": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "extend": { "name": "promo_right_panel", "namespace": "promo_timeline" } }, "promotion_skin_viewer_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "input_panel", "children": [ "popup_dialog_factory", "character_loading_panel", "skin_model_panel" ] }, "promotion_skin_viewer_panel/popup_dialog_factory": { "file": "ui/store_promo_timeline_screen.json", "type": "factory" }, "promotion_skin_viewer_panel/character_loading_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "image", "extend": { "name": "loading_icon", "namespace": "persona_common" } }, "promotion_skin_viewer_panel/skin_model_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "skin_model", "arrow_panel" ] }, "promotion_skin_viewer_panel/skin_model_panel/skin_model": { "file": "ui/store_promo_timeline_screen.json", "type": "custom" }, "promotion_skin_viewer_panel/skin_model_panel/arrow_panel": { "file": "ui/store_promo_timeline_screen.json", "type": "panel", "children": [ "rotate_arrows" ] }, "promotion_skin_viewer_panel/skin_model_panel/arrow_panel/rotate_arrows": { "file": "ui/store_promo_timeline_screen.json", "type": "image", "extend": { "name": "skin_rotation_arrows", "namespace": "skin_picker" } }, "promo_popup_toast": { "file": "ui/store_promo_timeline_screen.json", "type": "input_panel", "extend": { "name": "popup_common", "namespace": "persona_popups" } } }, "store_sale_item_list": { "banner_header": { "file": "ui/store_sales_item_list_screen.json", "type": "panel", "children": [ "label_panel" ] }, "banner_header/label_panel": { "file": "ui/store_sales_item_list_screen.json", "type": "panel", "children": [ "on_sale_banner", "time_remaining_label" ] }, "banner_header/label_panel/on_sale_banner": { "file": "ui/store_sales_item_list_screen.json", "type": "image", "children": [ "padding_panel" ] }, "banner_header/label_panel/on_sale_banner/padding_panel": { "file": "ui/store_sales_item_list_screen.json", "type": "panel", "children": [ "sales_row_header_label", "triangle" ] }, "banner_header/label_panel/on_sale_banner/padding_panel/sales_row_header_label": { "file": "ui/store_sales_item_list_screen.json", "type": "label", "extend": { "name": "store_section_header_label", "namespace": "common_store" } }, "banner_header/label_panel/on_sale_banner/padding_panel/triangle": { "file": "ui/store_sales_item_list_screen.json", "type": "image" }, "banner_header/label_panel/time_remaining_label": { "file": "ui/store_sales_item_list_screen.json", "type": "label", "extend": { "name": "label", "namespace": "common_store" } }, "sales_offer_content": { "file": "ui/store_sales_item_list_screen.json", "type": "stack_panel", "children": [ "top_padding", "sales_panel" ] }, "sales_offer_content/top_padding": { "file": "ui/store_sales_item_list_screen.json", "type": "panel" }, "sales_offer_content/sales_panel": { "file": "ui/store_sales_item_list_screen.json", "type": "stack_panel", "children": [ "sales_banner_panel", "top_sales_grid_padding", "sales_grid_panel" ] }, "sales_offer_content/sales_panel/sales_banner_panel": { "file": "ui/store_sales_item_list_screen.json", "type": "panel", "extend": { "name": "banner_header", "namespace": "store_sale_item_list" } }, "sales_offer_content/sales_panel/top_sales_grid_padding": { "file": "ui/store_sales_item_list_screen.json", "type": "panel" }, "sales_offer_content/sales_panel/sales_grid_panel": { "file": "ui/store_sales_item_list_screen.json", "type": "panel", "children": [ "sales_offer_grid" ] }, "sales_offer_content/sales_panel/sales_grid_panel/sales_offer_grid": { "file": "ui/store_sales_item_list_screen.json", "type": "grid", "extend": { "name": "store_offer_grid", "namespace": "store_item_list" } }, "all_offer_content": { "file": "ui/store_sales_item_list_screen.json", "type": "panel", "children": [ "store_offer_grid_panel" ] }, "all_offer_content/store_offer_grid_panel": { "file": "ui/store_sales_item_list_screen.json", "type": "grid", "extend": { "name": "store_offer_grid", "namespace": "store_item_list" } } }, "store_search": { "store_offer_grid_item": { "file": "ui/store_search_screen.json", "type": "panel", "extend": { "name": "store_offer_grid_item", "namespace": "common_store" } }, "trending_row_content": { "file": "ui/store_search_screen.json", "type": "panel", "children": [ "trending_row_panel" ] }, "trending_row_content/trending_row_panel": { "file": "ui/store_search_screen.json", "type": "stack_panel", "children": [ "trending_row_label_panel", "mid_padding", "trending_offers_grid", "bottom_padding" ] }, "trending_row_content/trending_row_panel/trending_row_label_panel": { "file": "ui/store_search_screen.json", "type": "panel", "children": [ "trending_row_label" ] }, "trending_row_content/trending_row_panel/trending_row_label_panel/trending_row_label": { "file": "ui/store_search_screen.json", "type": "label" }, "trending_row_content/trending_row_panel/mid_padding": { "file": "ui/store_search_screen.json", "type": "panel" }, "trending_row_content/trending_row_panel/trending_offers_grid": { "file": "ui/store_search_screen.json", "type": "grid" }, "trending_row_content/trending_row_panel/bottom_padding": { "file": "ui/store_search_screen.json", "type": "panel" }, "trending_rows_grid": { "file": "ui/store_search_screen.json", "type": "grid" }, "search_offer_content": { "file": "ui/store_search_screen.json", "type": "panel", "children": [ "trending_grid", "item_list_panel" ] }, "search_offer_content/trending_grid": { "file": "ui/store_search_screen.json", "type": "grid", "extend": { "name": "trending_rows_grid", "namespace": "store_search" } }, "search_offer_content/item_list_panel": { "file": "ui/store_search_screen.json", "type": "panel", "children": [ "item_list_grid" ] }, "search_offer_content/item_list_panel/item_list_grid": { "file": "ui/store_search_screen.json", "type": "grid", "extend": { "name": "store_offer_grid", "namespace": "store_item_list" } }, "main_panel": { "file": "ui/store_search_screen.json", "type": "input_panel", "children": [ "seach_object", "progress_loading" ] }, "main_panel/seach_object": { "file": "ui/store_search_screen.json", "type": "panel", "extend": { "name": "search_object", "namespace": "common_store" } }, "main_panel/progress_loading": { "file": "ui/store_search_screen.json", "type": "panel", "extend": { "name": "progress_loading", "namespace": "common_store" } }, "store_search_screen_content": { "file": "ui/store_search_screen.json", "type": "panel", "children": [ "main_panel", "popup_dialog_factory" ] }, "store_search_screen_content/main_panel": { "file": "ui/store_search_screen.json", "type": "stack_panel", "extend": { "name": "store_header_with_coins", "namespace": "common_store" } }, "store_search_screen_content/popup_dialog_factory": { "file": "ui/store_search_screen.json", "type": "factory" }, "store_search_screen": { "file": "ui/store_search_screen.json", "type": "screen", "extend": { "name": "store_base_screen", "namespace": "common_store" } } }, "sort_menu": { "sort_menu_toggle_panel": { "file": "ui/store_sort_menu_screen.json", "type": "panel", "children": [ "sort_menu_toggle_panel" ] }, "sort_menu_toggle_panel/sort_menu_toggle_panel": { "file": "ui/store_sort_menu_screen.json", "type": "panel", "children": [ "sort_menu_toggle" ] }, "sort_menu_toggle_panel/sort_menu_toggle_panel/sort_menu_toggle": { "file": "ui/store_sort_menu_screen.json", "type": "panel", "extend": { "name": "filter_sort_toggle", "namespace": "common_store" } }, "sort_menu_first_button_content_panel": { "file": "ui/store_sort_menu_screen.json", "type": "stack_panel", "children": [ "left_padding", "centered_sort_logo_icon", "logo_padding_labels", "labels_stack_panel", "labels_padding_x_image", "x_image_panel" ] }, "sort_menu_first_button_content_panel/left_padding": { "file": "ui/store_sort_menu_screen.json", "type": "panel" }, "sort_menu_first_button_content_panel/centered_sort_logo_icon": { "file": "ui/store_sort_menu_screen.json", "type": "panel", "children": [ "sort_logo_icon" ] }, "sort_menu_first_button_content_panel/centered_sort_logo_icon/sort_logo_icon": { "file": "ui/store_sort_menu_screen.json", "type": "image", "extend": { "name": "sort_button_content_panel", "namespace": "common_store" } }, "sort_menu_first_button_content_panel/logo_padding_labels": { "file": "ui/store_sort_menu_screen.json", "type": "panel" }, "sort_menu_first_button_content_panel/labels_stack_panel": { "file": "ui/store_sort_menu_screen.json", "type": "stack_panel", "children": [ "top_padding", "sort_const_word_top", "middle_padding", "current_sort_value_label_bottom", "bottom_padding" ] }, "sort_menu_first_button_content_panel/labels_stack_panel/top_padding": { "file": "ui/store_sort_menu_screen.json", "type": "panel" }, "sort_menu_first_button_content_panel/labels_stack_panel/sort_const_word_top": { "file": "ui/store_sort_menu_screen.json", "type": "label" }, "sort_menu_first_button_content_panel/labels_stack_panel/middle_padding": { "file": "ui/store_sort_menu_screen.json", "type": "panel" }, "sort_menu_first_button_content_panel/labels_stack_panel/current_sort_value_label_bottom": { "file": "ui/store_sort_menu_screen.json", "type": "label" }, "sort_menu_first_button_content_panel/labels_stack_panel/bottom_padding": { "file": "ui/store_sort_menu_screen.json", "type": "panel" }, "sort_menu_first_button_content_panel/labels_padding_x_image": { "file": "ui/store_sort_menu_screen.json", "type": "panel" }, "sort_menu_first_button_content_panel/x_image_panel": { "file": "ui/store_sort_menu_screen.json", "type": "panel", "children": [ "x_image" ] }, "sort_menu_first_button_content_panel/x_image_panel/x_image": { "file": "ui/store_sort_menu_screen.json", "type": "image" }, "sort_menu_toggles": { "file": "ui/store_sort_menu_screen.json", "type": "stack_panel", "children": [ "relevance_toggle_panel", "sort_toggle_grid" ] }, "sort_menu_toggles/relevance_toggle_panel": { "file": "ui/store_sort_menu_screen.json", "type": "panel", "children": [ "relevance_toggle" ] }, "sort_menu_toggles/relevance_toggle_panel/relevance_toggle": { "file": "ui/store_sort_menu_screen.json", "type": "panel", "extend": { "name": "sort_menu_toggle_panel", "namespace": "sort_menu" } }, "sort_menu_toggles/sort_toggle_grid": { "file": "ui/store_sort_menu_screen.json", "type": "panel", "extend": { "name": "filter_sort_grid_panel", "namespace": "common_store" } }, "sort_menu_show": { "file": "ui/store_sort_menu_screen.json", "type": "stack_panel", "children": [ "1st_button_centering_panel", "sort_scrolling_content_panel" ] }, "sort_menu_show/1st_button_centering_panel": { "file": "ui/store_sort_menu_screen.json", "type": "panel", "children": [ "first_button_main" ] }, "sort_menu_show/1st_button_centering_panel/first_button_main": { "file": "ui/store_sort_menu_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "sort_menu_show/sort_scrolling_content_panel": { "file": "ui/store_sort_menu_screen.json", "type": "panel", "extend": { "name": "filter_sort_submenu_scrolling_panel_section", "namespace": "common_store" } }, "sort_menu_panel": { "file": "ui/store_sort_menu_screen.json", "type": "stack_panel", "extend": { "name": "vertical_stack_panel", "namespace": "common" }, "children": [ "top_padding", "alignment_panel" ] }, "sort_menu_panel/top_padding": { "file": "ui/store_sort_menu_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "sort_menu_panel/alignment_panel": { "file": "ui/store_sort_menu_screen.json", "type": "stack_panel", "extend": { "name": "horizontal_stack_panel", "namespace": "common" }, "children": [ "left_padding", "sort_menu_show", "right_padding" ] }, "sort_menu_panel/alignment_panel/left_padding": { "file": "ui/store_sort_menu_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "sort_menu_panel/alignment_panel/sort_menu_show": { "file": "ui/store_sort_menu_screen.json", "type": "stack_panel", "extend": { "name": "sort_menu_show", "namespace": "sort_menu" } }, "sort_menu_panel/alignment_panel/right_padding": { "file": "ui/store_sort_menu_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "sort_menu_screen_content": { "file": "ui/store_sort_menu_screen.json", "type": "input_panel", "extend": { "name": "modal_area_panel_base", "namespace": "common" }, "children": [ "sort_menu_main", "sort_menu_main_persona", "sort_menu_background" ] }, "sort_menu_screen_content/sort_menu_main": { "file": "ui/store_sort_menu_screen.json", "type": "stack_panel", "extend": { "name": "sort_menu_panel", "namespace": "sort_menu" } }, "sort_menu_screen_content/sort_menu_main_persona": { "file": "ui/store_sort_menu_screen.json", "type": "stack_panel", "extend": { "name": "sort_menu_panel", "namespace": "sort_menu" } }, "sort_menu_screen_content/sort_menu_background": { "file": "ui/store_sort_menu_screen.json", "type": "panel", "extend": { "name": "close_bg_panel", "namespace": "common_store" } } }, "structure_editor": { "small_padding": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "help_icon": { "file": "ui/structure_editor_screen.json", "type": "image" }, "common_text_label": { "file": "ui/structure_editor_screen.json", "type": "label" }, "text_edit_control": { "file": "ui/structure_editor_screen.json", "type": "edit_box", "extend": { "name": "text_edit_box", "namespace": "common" } }, "axis_selection_panel": { "file": "ui/structure_editor_screen.json", "type": "panel", "children": [ "label", "edit_box" ] }, "axis_selection_panel/label": { "file": "ui/structure_editor_screen.json", "type": "label", "extend": { "name": "common_text_label", "namespace": "structure_editor" } }, "axis_selection_panel/edit_box": { "file": "ui/structure_editor_screen.json", "type": "edit_box", "extend": { "name": "text_edit_control", "namespace": "structure_editor" } }, "grid_axis_selection_panel": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "children": [ "label_container", "axis_grid" ] }, "grid_axis_selection_panel/label_container": { "file": "ui/structure_editor_screen.json", "type": "panel", "children": [ "label" ] }, "grid_axis_selection_panel/label_container/label": { "file": "ui/structure_editor_screen.json", "type": "label", "extend": { "name": "common_text_label", "namespace": "structure_editor" } }, "grid_axis_selection_panel/axis_grid": { "file": "ui/structure_editor_screen.json", "type": "grid", "children": [ "X", "Y", "Z" ] }, "grid_axis_selection_panel/axis_grid/X": { "file": "ui/structure_editor_screen.json", "type": "panel", "extend": { "name": "axis_selection_panel", "namespace": "structure_editor" } }, "grid_axis_selection_panel/axis_grid/Y": { "file": "ui/structure_editor_screen.json", "type": "panel", "extend": { "name": "axis_selection_panel", "namespace": "structure_editor" } }, "grid_axis_selection_panel/axis_grid/Z": { "file": "ui/structure_editor_screen.json", "type": "panel", "extend": { "name": "axis_selection_panel", "namespace": "structure_editor" } }, "3d_export_button": { "file": "ui/structure_editor_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "save_button": { "file": "ui/structure_editor_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "export_button": { "file": "ui/structure_editor_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "load_button": { "file": "ui/structure_editor_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "detect_button": { "file": "ui/structure_editor_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "import_button": { "file": "ui/structure_editor_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "reset_button": { "file": "ui/structure_editor_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "help_button": { "file": "ui/structure_editor_screen.json", "type": "button", "extend": { "name": "light_glyph_button", "namespace": "common_buttons" } }, "toggle_option_panel": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "children": [ "toggle", "offset_0", "first_label_wrapper", "second_label_wrapper" ] }, "toggle_option_panel/toggle": { "file": "ui/structure_editor_screen.json", "type": "toggle", "extend": { "name": "option_toggle_control", "namespace": "settings_common" } }, "toggle_option_panel/offset_0": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "toggle_option_panel/first_label_wrapper": { "file": "ui/structure_editor_screen.json", "type": "panel", "children": [ "first_label" ] }, "toggle_option_panel/first_label_wrapper/first_label": { "file": "ui/structure_editor_screen.json", "type": "label", "extend": { "name": "common_text_label", "namespace": "structure_editor" } }, "toggle_option_panel/second_label_wrapper": { "file": "ui/structure_editor_screen.json", "type": "panel", "children": [ "second_label" ] }, "toggle_option_panel/second_label_wrapper/second_label": { "file": "ui/structure_editor_screen.json", "type": "label", "extend": { "name": "common_text_label", "namespace": "structure_editor" } }, "include_entities_panel": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "children": [ "label", "toggle_wrapper" ] }, "include_entities_panel/label": { "file": "ui/structure_editor_screen.json", "type": "label", "extend": { "name": "common_text_label", "namespace": "structure_editor" } }, "include_entities_panel/toggle_wrapper": { "file": "ui/structure_editor_screen.json", "type": "panel", "children": [ "toggle" ] }, "include_entities_panel/toggle_wrapper/toggle": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "extend": { "name": "toggle_option_panel", "namespace": "structure_editor" } }, "waterlogging_panel": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "children": [ "label", "toggle_wrapper" ] }, "waterlogging_panel/label": { "file": "ui/structure_editor_screen.json", "type": "label", "extend": { "name": "common_text_label", "namespace": "structure_editor" } }, "waterlogging_panel/toggle_wrapper": { "file": "ui/structure_editor_screen.json", "type": "panel", "children": [ "toggle" ] }, "waterlogging_panel/toggle_wrapper/toggle": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "extend": { "name": "toggle_option_panel", "namespace": "structure_editor" } }, "show_bounding_box_panel": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "children": [ "label", "toggle_wrapper" ] }, "show_bounding_box_panel/label": { "file": "ui/structure_editor_screen.json", "type": "label", "extend": { "name": "common_text_label", "namespace": "structure_editor" } }, "show_bounding_box_panel/toggle_wrapper": { "file": "ui/structure_editor_screen.json", "type": "panel", "children": [ "toggle" ] }, "show_bounding_box_panel/toggle_wrapper/toggle": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "extend": { "name": "toggle_option_panel", "namespace": "structure_editor" } }, "include_player_panel": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "children": [ "label", "toggle_wrapper" ] }, "include_player_panel/label": { "file": "ui/structure_editor_screen.json", "type": "label", "extend": { "name": "common_text_label", "namespace": "structure_editor" } }, "include_player_panel/toggle_wrapper": { "file": "ui/structure_editor_screen.json", "type": "panel", "children": [ "toggle" ] }, "include_player_panel/toggle_wrapper/toggle": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "extend": { "name": "toggle_option_panel", "namespace": "structure_editor" } }, "remove_blocks_panel": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "children": [ "label", "toggle_wrapper" ] }, "remove_blocks_panel/label": { "file": "ui/structure_editor_screen.json", "type": "label", "extend": { "name": "common_text_label", "namespace": "structure_editor" } }, "remove_blocks_panel/toggle_wrapper": { "file": "ui/structure_editor_screen.json", "type": "panel", "children": [ "toggle" ] }, "remove_blocks_panel/toggle_wrapper/toggle": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "extend": { "name": "toggle_option_panel", "namespace": "structure_editor" } }, "3d_export_mode_panel": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "children": [ "size_offset_panel", "offset_0", "offset_2", "remove_blocks" ] }, "3d_export_mode_panel/size_offset_panel": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "children": [ "size_panel", "offset_panel" ] }, "3d_export_mode_panel/size_offset_panel/size_panel": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "extend": { "name": "grid_axis_selection_panel", "namespace": "structure_editor" } }, "3d_export_mode_panel/size_offset_panel/offset_panel": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "extend": { "name": "grid_axis_selection_panel", "namespace": "structure_editor" } }, "3d_export_mode_panel/offset_0": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "3d_export_mode_panel/offset_2": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "3d_export_mode_panel/remove_blocks": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "extend": { "name": "remove_blocks_panel", "namespace": "structure_editor" } }, "save_mode_panel": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "children": [ "structure_name", "size_offset_panel", "detect_offset", "detect", "include_entities_offset", "include_entities", "remove_blocks_offset", "remove_blocks", "redstone_save_offset", "redstone_save_mode", "trailing_offset" ] }, "save_mode_panel/structure_name": { "file": "ui/structure_editor_screen.json", "type": "panel", "extend": { "name": "structure_name_wrapper", "namespace": "structure_editor" } }, "save_mode_panel/size_offset_panel": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "children": [ "size_panel", "offset_panel" ] }, "save_mode_panel/size_offset_panel/size_panel": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "extend": { "name": "grid_axis_selection_panel", "namespace": "structure_editor" } }, "save_mode_panel/size_offset_panel/offset_panel": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "extend": { "name": "grid_axis_selection_panel", "namespace": "structure_editor" } }, "save_mode_panel/detect_offset": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "save_mode_panel/detect": { "file": "ui/structure_editor_screen.json", "type": "panel", "extend": { "name": "detect_button_wrapper", "namespace": "structure_editor" } }, "save_mode_panel/include_entities_offset": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "save_mode_panel/include_entities": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "extend": { "name": "include_entities_panel", "namespace": "structure_editor" } }, "save_mode_panel/remove_blocks_offset": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "save_mode_panel/remove_blocks": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "extend": { "name": "remove_blocks_panel", "namespace": "structure_editor" } }, "save_mode_panel/redstone_save_offset": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "save_mode_panel/redstone_save_mode": { "file": "ui/structure_editor_screen.json", "type": "panel", "extend": { "name": "redstone_save_mode_panel", "namespace": "structure_editor" } }, "save_mode_panel/trailing_offset": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "mirror_checkbox": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "children": [ "label", "padding", "check_box" ] }, "mirror_checkbox/label": { "file": "ui/structure_editor_screen.json", "type": "label" }, "mirror_checkbox/padding": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "mirror_checkbox/check_box": { "file": "ui/structure_editor_screen.json", "type": "toggle", "extend": { "name": "checkbox", "namespace": "common" } }, "mirror_checkboxes": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "children": [ "mirror_checkbox_x", "padding", "mirror_checkbox_z" ] }, "mirror_checkboxes/mirror_checkbox_x": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "extend": { "name": "mirror_checkbox", "namespace": "structure_editor" } }, "mirror_checkboxes/padding": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "mirror_checkboxes/mirror_checkbox_z": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "extend": { "name": "mirror_checkbox", "namespace": "structure_editor" } }, "load_mode_panel": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "children": [ "structure_name", "offset_panel", "include_entities_offset", "include_entities", "remove_blocks_offset", "waterlog_blocks", "waterlog_blocks_offset", "remove_blocks", "integrity_offset", "integrity_label", "integrity_field", "offset_1", "seed_label", "seed_field", "offset_2", "rotation_slider", "mirror_label", "mirror_checkboxes_centerer", "checkbox_offset", "animation_mode", "animation_time_label", "animation_time_field" ] }, "load_mode_panel/structure_name": { "file": "ui/structure_editor_screen.json", "type": "panel", "extend": { "name": "structure_name_wrapper", "namespace": "structure_editor" } }, "load_mode_panel/offset_panel": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "extend": { "name": "grid_axis_selection_panel", "namespace": "structure_editor" } }, "load_mode_panel/include_entities_offset": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "load_mode_panel/include_entities": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "extend": { "name": "include_entities_panel", "namespace": "structure_editor" } }, "load_mode_panel/remove_blocks_offset": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "load_mode_panel/waterlog_blocks": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "extend": { "name": "waterlogging_panel", "namespace": "structure_editor" } }, "load_mode_panel/waterlog_blocks_offset": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "load_mode_panel/remove_blocks": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "extend": { "name": "remove_blocks_panel", "namespace": "structure_editor" } }, "load_mode_panel/integrity_offset": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "load_mode_panel/integrity_label": { "file": "ui/structure_editor_screen.json", "type": "label", "extend": { "name": "common_text_label", "namespace": "structure_editor" } }, "load_mode_panel/integrity_field": { "file": "ui/structure_editor_screen.json", "type": "edit_box", "extend": { "name": "text_edit_control", "namespace": "structure_editor" } }, "load_mode_panel/offset_1": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "load_mode_panel/seed_label": { "file": "ui/structure_editor_screen.json", "type": "label", "extend": { "name": "common_text_label", "namespace": "structure_editor" } }, "load_mode_panel/seed_field": { "file": "ui/structure_editor_screen.json", "type": "edit_box", "extend": { "name": "text_edit_control", "namespace": "structure_editor" } }, "load_mode_panel/offset_2": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "load_mode_panel/rotation_slider": { "file": "ui/structure_editor_screen.json", "type": "panel", "extend": { "name": "option_slider", "namespace": "settings_common" } }, "load_mode_panel/mirror_label": { "file": "ui/structure_editor_screen.json", "type": "label" }, "load_mode_panel/mirror_checkboxes_centerer": { "file": "ui/structure_editor_screen.json", "type": "panel", "children": [ "mirror_checkboxes" ] }, "load_mode_panel/mirror_checkboxes_centerer/mirror_checkboxes": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "extend": { "name": "mirror_checkboxes", "namespace": "structure_editor" } }, "load_mode_panel/checkbox_offset": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "load_mode_panel/animation_mode": { "file": "ui/structure_editor_screen.json", "type": "panel", "extend": { "name": "animation_mode_dropdown", "namespace": "structure_editor" } }, "load_mode_panel/animation_time_label": { "file": "ui/structure_editor_screen.json", "type": "label" }, "load_mode_panel/animation_time_field": { "file": "ui/structure_editor_screen.json", "type": "edit_box", "extend": { "name": "text_edit_control", "namespace": "structure_editor" } }, "data_mode_panel": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "children": [ "top_offset", "data_label", "data_label_offset", "data_field", "data_field_offset" ] }, "data_mode_panel/top_offset": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "data_mode_panel/data_label": { "file": "ui/structure_editor_screen.json", "type": "label", "extend": { "name": "common_text_label", "namespace": "structure_editor" } }, "data_mode_panel/data_label_offset": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "data_mode_panel/data_field": { "file": "ui/structure_editor_screen.json", "type": "edit_box", "extend": { "name": "text_edit_control", "namespace": "structure_editor" } }, "data_mode_panel/data_field_offset": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "corner_mode_panel": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "children": [ "structure_name" ] }, "corner_mode_panel/structure_name": { "file": "ui/structure_editor_screen.json", "type": "panel", "extend": { "name": "structure_name_wrapper", "namespace": "structure_editor" } }, "help_button_panel": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "children": [ "help", "help_divider" ] }, "help_button_panel/help": { "file": "ui/structure_editor_screen.json", "type": "button", "extend": { "name": "help_button", "namespace": "structure_editor" } }, "help_button_panel/help_divider": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "save_button_panel": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "children": [ "divider", "save", "save_divider", "export", "export_divider", "import_divider", "reset", "reset_divider" ] }, "save_button_panel/divider": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "save_button_panel/save": { "file": "ui/structure_editor_screen.json", "type": "button", "extend": { "name": "save_button", "namespace": "structure_editor" } }, "save_button_panel/save_divider": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "save_button_panel/export": { "file": "ui/structure_editor_screen.json", "type": "button", "extend": { "name": "export_button", "namespace": "structure_editor" } }, "save_button_panel/export_divider": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "save_button_panel/import_divider": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "save_button_panel/reset": { "file": "ui/structure_editor_screen.json", "type": "button", "extend": { "name": "reset_button", "namespace": "structure_editor" } }, "save_button_panel/reset_divider": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "save_button_panel_no_export": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "children": [ "divider", "save", "save_divider", "reset", "reset_divider" ] }, "save_button_panel_no_export/divider": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "save_button_panel_no_export/save": { "file": "ui/structure_editor_screen.json", "type": "button", "extend": { "name": "save_button", "namespace": "structure_editor" } }, "save_button_panel_no_export/save_divider": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "save_button_panel_no_export/reset": { "file": "ui/structure_editor_screen.json", "type": "button", "extend": { "name": "reset_button", "namespace": "structure_editor" } }, "save_button_panel_no_export/reset_divider": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "load_button_panel": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "children": [ "divider", "load", "load_divider", "export_divider", "import", "import_divider", "reset", "reset_divider" ] }, "load_button_panel/divider": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "load_button_panel/load": { "file": "ui/structure_editor_screen.json", "type": "button", "extend": { "name": "load_button", "namespace": "structure_editor" } }, "load_button_panel/load_divider": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "load_button_panel/export_divider": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "load_button_panel/import": { "file": "ui/structure_editor_screen.json", "type": "button", "extend": { "name": "import_button", "namespace": "structure_editor" } }, "load_button_panel/import_divider": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "load_button_panel/reset": { "file": "ui/structure_editor_screen.json", "type": "button", "extend": { "name": "reset_button", "namespace": "structure_editor" } }, "load_button_panel/reset_divider": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "load_button_panel_no_export": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "children": [ "divider", "load", "load_divider", "reset", "reset_divider" ] }, "load_button_panel_no_export/divider": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "load_button_panel_no_export/load": { "file": "ui/structure_editor_screen.json", "type": "button", "extend": { "name": "load_button", "namespace": "structure_editor" } }, "load_button_panel_no_export/load_divider": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "load_button_panel_no_export/reset": { "file": "ui/structure_editor_screen.json", "type": "button", "extend": { "name": "reset_button", "namespace": "structure_editor" } }, "load_button_panel_no_export/reset_divider": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "3d_export_button_panel": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "children": [ "divider", "3d_export", "3d_export_divider", "import", "import_divider", "reset", "reset_divider" ] }, "3d_export_button_panel/divider": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "3d_export_button_panel/3d_export": { "file": "ui/structure_editor_screen.json", "type": "button", "extend": { "name": "3d_export_button", "namespace": "structure_editor" } }, "3d_export_button_panel/3d_export_divider": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "3d_export_button_panel/import": { "file": "ui/structure_editor_screen.json", "type": "button", "extend": { "name": "import_button", "namespace": "structure_editor" } }, "3d_export_button_panel/import_divider": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "3d_export_button_panel/reset": { "file": "ui/structure_editor_screen.json", "type": "button", "extend": { "name": "reset_button", "namespace": "structure_editor" } }, "3d_export_button_panel/reset_divider": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "data_button_panel": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "children": [ "divider", "reset", "reset_divider" ] }, "data_button_panel/divider": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "data_button_panel/reset": { "file": "ui/structure_editor_screen.json", "type": "button", "extend": { "name": "reset_button", "namespace": "structure_editor" } }, "data_button_panel/reset_divider": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "corner_button_panel": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "children": [ "reset_divider" ] }, "corner_button_panel/reset_divider": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "button_panel_wrapper": { "file": "ui/structure_editor_screen.json", "type": "image", "children": [ "panel" ] }, "button_panel_wrapper/panel": { "file": "ui/structure_editor_screen.json", "type": "panel", "children": [ "divider", "save_panel", "save_panel_no_export", "corner_panel", "load_panel_no_export", "load_panel", "3d_export_panel", "data_panel", "how_to_play_button", "end_divider" ] }, "button_panel_wrapper/panel/divider": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "button_panel_wrapper/panel/save_panel": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "extend": { "name": "save_button_panel", "namespace": "structure_editor" } }, "button_panel_wrapper/panel/save_panel_no_export": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "extend": { "name": "save_button_panel_no_export", "namespace": "structure_editor" } }, "button_panel_wrapper/panel/corner_panel": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "extend": { "name": "corner_button_panel", "namespace": "structure_editor" } }, "button_panel_wrapper/panel/load_panel_no_export": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "extend": { "name": "load_button_panel_no_export", "namespace": "structure_editor" } }, "button_panel_wrapper/panel/load_panel": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "extend": { "name": "load_button_panel", "namespace": "structure_editor" } }, "button_panel_wrapper/panel/3d_export_panel": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "extend": { "name": "3d_export_button_panel", "namespace": "structure_editor" } }, "button_panel_wrapper/panel/data_panel": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "extend": { "name": "data_button_panel", "namespace": "structure_editor" } }, "button_panel_wrapper/panel/how_to_play_button": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "extend": { "name": "help_button_panel", "namespace": "structure_editor" } }, "button_panel_wrapper/panel/end_divider": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "redstone_dropdown_content": { "file": "ui/structure_editor_screen.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "redstone_save_mode_panel": { "file": "ui/structure_editor_screen.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "animation_mode_dropdown_content": { "file": "ui/structure_editor_screen.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "animation_mode_dropdown": { "file": "ui/structure_editor_screen.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "structure_name_wrapper": { "file": "ui/structure_editor_screen.json", "type": "panel", "children": [ "structure_name", "structure_name_offset" ] }, "structure_name_wrapper/structure_name": { "file": "ui/structure_editor_screen.json", "type": "edit_box", "extend": { "name": "text_edit_control", "namespace": "structure_editor" } }, "structure_name_wrapper/structure_name_offset": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "detect_button_wrapper": { "file": "ui/structure_editor_screen.json", "type": "panel", "children": [ "detect", "detect_offset" ] }, "detect_button_wrapper/detect": { "file": "ui/structure_editor_screen.json", "type": "button", "extend": { "name": "detect_button", "namespace": "structure_editor" } }, "detect_button_wrapper/detect_offset": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "mode_dropdown_content": { "file": "ui/structure_editor_screen.json", "type": "panel", "extend": { "name": "option_radio_dropdown_group", "namespace": "settings_common" } }, "mode_panel": { "file": "ui/structure_editor_screen.json", "type": "panel", "extend": { "name": "option_dropdown", "namespace": "settings_common" } }, "scrolling_panel_wrapper": { "file": "ui/structure_editor_screen.json", "type": "image", "extend": { "name": "dialog_background_hollow_4", "namespace": "common" }, "children": [ "scrolling_panel" ] }, "scrolling_panel_wrapper/scrolling_panel": { "file": "ui/structure_editor_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "structure_editor" } }, "scrolling_panel": { "file": "ui/structure_editor_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "scroll_panel_content": { "file": "ui/structure_editor_screen.json", "type": "panel", "children": [ "content_stack_panel" ] }, "scroll_panel_content/content_stack_panel": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "children": [ "base_offset", "mode_panel", "mode_panel_offset", "3d_export_mode_panel", "save_mode_panel", "load_mode_panel", "data_mode_panel", "corner_mode_panel", "base_mode_offset", "show_bounding_box", "show_bounding_box_offset", "offset_2" ] }, "scroll_panel_content/content_stack_panel/base_offset": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "scroll_panel_content/content_stack_panel/mode_panel": { "file": "ui/structure_editor_screen.json", "type": "panel", "extend": { "name": "mode_panel", "namespace": "structure_editor" } }, "scroll_panel_content/content_stack_panel/mode_panel_offset": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "scroll_panel_content/content_stack_panel/3d_export_mode_panel": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "extend": { "name": "3d_export_mode_panel", "namespace": "structure_editor" } }, "scroll_panel_content/content_stack_panel/save_mode_panel": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "extend": { "name": "save_mode_panel", "namespace": "structure_editor" } }, "scroll_panel_content/content_stack_panel/load_mode_panel": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "extend": { "name": "load_mode_panel", "namespace": "structure_editor" } }, "scroll_panel_content/content_stack_panel/data_mode_panel": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "extend": { "name": "data_mode_panel", "namespace": "structure_editor" } }, "scroll_panel_content/content_stack_panel/corner_mode_panel": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "extend": { "name": "corner_mode_panel", "namespace": "structure_editor" } }, "scroll_panel_content/content_stack_panel/base_mode_offset": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "scroll_panel_content/content_stack_panel/show_bounding_box": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "extend": { "name": "show_bounding_box_panel", "namespace": "structure_editor" } }, "scroll_panel_content/content_stack_panel/show_bounding_box_offset": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "scroll_panel_content/content_stack_panel/offset_2": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "left_divider_content": { "file": "ui/structure_editor_screen.json", "type": "panel", "children": [ "scrolling_panel" ] }, "left_divider_content/scrolling_panel": { "file": "ui/structure_editor_screen.json", "type": "image", "extend": { "name": "scrolling_panel_wrapper", "namespace": "structure_editor" } }, "save_message_text": { "file": "ui/structure_editor_screen.json", "type": "panel", "children": [ "save_message_label" ] }, "save_message_text/save_message_label": { "file": "ui/structure_editor_screen.json", "type": "label" }, "import_message_text": { "file": "ui/structure_editor_screen.json", "type": "panel", "children": [ "save_message_label" ] }, "import_message_text/save_message_label": { "file": "ui/structure_editor_screen.json", "type": "label" }, "import_failed_message_text": { "file": "ui/structure_editor_screen.json", "type": "panel", "children": [ "save_message_label" ] }, "import_failed_message_text/save_message_label": { "file": "ui/structure_editor_screen.json", "type": "label" }, "export_disabled_label": { "file": "ui/structure_editor_screen.json", "type": "label" }, "image_panel_wrapper": { "file": "ui/structure_editor_screen.json", "type": "image", "extend": { "name": "dialog_background_hollow_4", "namespace": "common" }, "children": [ "image_panel", "save_message_factory", "import_message_factory", "import_failed_message_factory", "export_disabled" ] }, "image_panel_wrapper/image_panel": { "file": "ui/structure_editor_screen.json", "type": "panel", "extend": { "name": "image_panel", "namespace": "structure_editor" } }, "image_panel_wrapper/save_message_factory": { "file": "ui/structure_editor_screen.json", "type": "factory" }, "image_panel_wrapper/import_message_factory": { "file": "ui/structure_editor_screen.json", "type": "factory" }, "image_panel_wrapper/import_failed_message_factory": { "file": "ui/structure_editor_screen.json", "type": "factory" }, "image_panel_wrapper/export_disabled": { "file": "ui/structure_editor_screen.json", "type": "label", "extend": { "name": "export_disabled_label", "namespace": "structure_editor" } }, "corner_text": { "file": "ui/structure_editor_screen.json", "type": "image", "extend": { "name": "dialog_background_hollow_4", "namespace": "common" }, "children": [ "image_panel" ] }, "corner_text/image_panel": { "file": "ui/structure_editor_screen.json", "type": "unknown", "extend": { "name": "corner_text_section", "namespace": "structure_editor" } }, "image_panel": { "file": "ui/structure_editor_screen.json", "type": "panel", "children": [ "border_indent" ] }, "image_panel/border_indent": { "file": "ui/structure_editor_screen.json", "type": "panel", "children": [ "background_gradient", "image_outline", "structure_renderer", "text_corner", "progress_panel", "rotate_arrows" ] }, "image_panel/border_indent/background_gradient": { "file": "ui/structure_editor_screen.json", "type": "custom", "extend": { "name": "background_gradient", "namespace": "structure_editor" } }, "image_panel/border_indent/image_outline": { "file": "ui/structure_editor_screen.json", "type": "image", "extend": { "name": "focus_border", "namespace": "common_buttons" } }, "image_panel/border_indent/structure_renderer": { "file": "ui/structure_editor_screen.json", "type": "input_panel", "extend": { "name": "structure_renderer", "namespace": "structure_editor" } }, "image_panel/border_indent/text_corner": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "extend": { "name": "corner_text_panel", "namespace": "structure_editor" } }, "image_panel/border_indent/progress_panel": { "file": "ui/structure_editor_screen.json", "type": "input_panel", "extend": { "name": "progress_panel", "namespace": "structure_editor" } }, "image_panel/border_indent/rotate_arrows": { "file": "ui/structure_editor_screen.json", "type": "image", "extend": { "name": "rotation_arrows", "namespace": "structure_editor" } }, "progress_panel": { "file": "ui/structure_editor_screen.json", "type": "input_panel", "children": [ "stack_panel" ] }, "progress_panel/stack_panel": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "children": [ "label_wrapper", "progress_bar" ] }, "progress_panel/stack_panel/label_wrapper": { "file": "ui/structure_editor_screen.json", "type": "panel", "children": [ "progress_label" ] }, "progress_panel/stack_panel/label_wrapper/progress_label": { "file": "ui/structure_editor_screen.json", "type": "label", "extend": { "name": "common_text_label", "namespace": "structure_editor" } }, "progress_panel/stack_panel/progress_bar": { "file": "ui/structure_editor_screen.json", "type": "panel", "extend": { "name": "progress_bar_icon", "namespace": "file_upload" } }, "background_gradient": { "file": "ui/structure_editor_screen.json", "type": "custom" }, "corner_text_panel": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "children": [ "paragraph_1_corner", "padding_1", "paragraph_2_corner" ] }, "corner_text_panel/paragraph_1_corner": { "file": "ui/structure_editor_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "corner_text_panel/padding_1": { "file": "ui/structure_editor_screen.json", "type": "panel", "extend": { "name": "small_padding", "namespace": "structure_editor" } }, "corner_text_panel/paragraph_2_corner": { "file": "ui/structure_editor_screen.json", "type": "panel", "extend": { "name": "paragraph", "namespace": "how_to_play_common" } }, "structure_renderer": { "file": "ui/structure_editor_screen.json", "type": "input_panel", "children": [ "renderer" ] }, "structure_renderer/renderer": { "file": "ui/structure_editor_screen.json", "type": "custom" }, "black_border": { "file": "ui/structure_editor_screen.json", "type": "image" }, "rotation_arrows": { "file": "ui/structure_editor_screen.json", "type": "image" }, "right_divider_content": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "children": [ "base_offset", "preview", "image_offset", "button_wrapper" ] }, "right_divider_content/base_offset": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "right_divider_content/preview": { "file": "ui/structure_editor_screen.json", "type": "image", "extend": { "name": "image_panel_wrapper", "namespace": "structure_editor" } }, "right_divider_content/image_offset": { "file": "ui/structure_editor_screen.json", "type": "panel" }, "right_divider_content/button_wrapper": { "file": "ui/structure_editor_screen.json", "type": "panel", "children": [ "buttons" ] }, "right_divider_content/button_wrapper/buttons": { "file": "ui/structure_editor_screen.json", "type": "image", "extend": { "name": "button_panel_wrapper", "namespace": "structure_editor" } }, "divider_content": { "file": "ui/structure_editor_screen.json", "type": "panel", "children": [ "left_side", "right_side" ] }, "divider_content/left_side": { "file": "ui/structure_editor_screen.json", "type": "panel", "extend": { "name": "left_divider_content", "namespace": "structure_editor" } }, "divider_content/right_side": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "extend": { "name": "right_divider_content", "namespace": "structure_editor" } }, "structure_editor_content": { "file": "ui/structure_editor_screen.json", "type": "panel", "children": [ "background_panel", "title", "content" ] }, "structure_editor_content/background_panel": { "file": "ui/structure_editor_screen.json", "type": "stack_panel", "extend": { "name": "fullscreen_header", "namespace": "common" } }, "structure_editor_content/title": { "file": "ui/structure_editor_screen.json", "type": "label", "extend": { "name": "common_text_label", "namespace": "structure_editor" } }, "structure_editor_content/content": { "file": "ui/structure_editor_screen.json", "type": "panel", "extend": { "name": "divider_content", "namespace": "structure_editor" } }, "structure_editor_screen": { "file": "ui/structure_editor_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } } }, "submit_feedback": { "send_feedback_button": { "file": "ui/submit_feedback_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "write_feedback_panel": { "file": "ui/submit_feedback_screen.json", "type": "stack_panel", "children": [ "pad_1", "write_feedback_label", "pad_2", "feedback_textbox", "remaining_characters_panel" ] }, "write_feedback_panel/pad_1": { "file": "ui/submit_feedback_screen.json", "type": "panel" }, "write_feedback_panel/write_feedback_label": { "file": "ui/submit_feedback_screen.json", "type": "label" }, "write_feedback_panel/pad_2": { "file": "ui/submit_feedback_screen.json", "type": "panel" }, "write_feedback_panel/feedback_textbox": { "file": "ui/submit_feedback_screen.json", "type": "edit_box", "extend": { "name": "text_edit_box", "namespace": "common" } }, "write_feedback_panel/remaining_characters_panel": { "file": "ui/submit_feedback_screen.json", "type": "panel", "children": [ "remaining_characters_count_label" ] }, "write_feedback_panel/remaining_characters_panel/remaining_characters_count_label": { "file": "ui/submit_feedback_screen.json", "type": "label" }, "scroll_panel": { "file": "ui/submit_feedback_screen.json", "type": "panel", "children": [ "write_feedback_panel" ] }, "scroll_panel/write_feedback_panel": { "file": "ui/submit_feedback_screen.json", "type": "stack_panel", "extend": { "name": "write_feedback_panel", "namespace": "submit_feedback" } }, "main_panel": { "file": "ui/submit_feedback_screen.json", "type": "panel", "children": [ "scrolling_panel" ] }, "main_panel/scrolling_panel": { "file": "ui/submit_feedback_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "submit_feedback_screen": { "file": "ui/submit_feedback_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "submit_feedback_content": { "file": "ui/submit_feedback_screen.json", "type": "panel", "children": [ "submit_feedback_main_panel", "progress_loading" ] }, "submit_feedback_content/submit_feedback_main_panel": { "file": "ui/submit_feedback_screen.json", "type": "panel", "extend": { "name": "main_panel_one_button", "namespace": "common_dialogs" } }, "submit_feedback_content/progress_loading": { "file": "ui/submit_feedback_screen.json", "type": "image", "extend": { "name": "progress_loading_spinner", "namespace": "common_store" } } }, "tabbed_upsell": { "padding_horizontal": { "file": "ui/tabbed_upsell_screen.json", "type": "panel" }, "padding_vertical": { "file": "ui/tabbed_upsell_screen.json", "type": "panel" }, "text_horizontal_padding": { "file": "ui/tabbed_upsell_screen.json", "type": "panel" }, "tabbed_upsell_buy_now_button": { "file": "ui/tabbed_upsell_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "tabbed_buy_now_label": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "children": [ "button_label" ] }, "tabbed_buy_now_label/button_label": { "file": "ui/tabbed_upsell_screen.json", "type": "label" }, "label_panel": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "children": [ "label_text" ] }, "label_panel/label_text": { "file": "ui/tabbed_upsell_screen.json", "type": "label" }, "text_panel": { "file": "ui/tabbed_upsell_screen.json", "type": "stack_panel", "children": [ "tab_content_title_panel", "tab_content_description_panel", "tab_content_description_panel_second" ] }, "text_panel/tab_content_title_panel": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "label_panel", "namespace": "tabbed_upsell" } }, "text_panel/tab_content_description_panel": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "label_panel", "namespace": "tabbed_upsell" } }, "text_panel/tab_content_description_panel_second": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "label_panel", "namespace": "tabbed_upsell" } }, "dialog_image": { "file": "ui/tabbed_upsell_screen.json", "type": "image" }, "dialog_image_with_border": { "file": "ui/tabbed_upsell_screen.json", "type": "image", "children": [ "dialog_image" ] }, "dialog_image_with_border/dialog_image": { "file": "ui/tabbed_upsell_screen.json", "type": "image", "extend": { "name": "dialog_image", "namespace": "tabbed_upsell" } }, "content_image_panel": { "file": "ui/tabbed_upsell_screen.json", "type": "stack_panel", "children": [ "minecraft_dialog_image_with_border", "horizontal_padding_01", "scrolling_panel" ] }, "content_image_panel/minecraft_dialog_image_with_border": { "file": "ui/tabbed_upsell_screen.json", "type": "image", "extend": { "name": "dialog_image_with_border", "namespace": "tabbed_upsell" } }, "content_image_panel/horizontal_padding_01": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "text_horizontal_padding", "namespace": "tabbed_upsell" } }, "content_image_panel/scrolling_panel": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "scroll_text": { "file": "ui/tabbed_upsell_screen.json", "type": "button", "extend": { "name": "non_interact_focus_border_button", "namespace": "common" } }, "image_panel": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "children": [ "dialog_image_with_border", "focus_image" ] }, "image_panel/dialog_image_with_border": { "file": "ui/tabbed_upsell_screen.json", "type": "image", "extend": { "name": "dialog_image_with_border", "namespace": "tabbed_upsell" } }, "image_panel/focus_image": { "file": "ui/tabbed_upsell_screen.json", "type": "unknown" }, "top_tab": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "tab_top", "namespace": "common_tabs" } }, "tab_navigation_panel_layout": { "file": "ui/tabbed_upsell_screen.json", "type": "stack_panel", "children": [ "navigation_tabs" ] }, "tab_navigation_panel_layout/navigation_tabs": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "children": [ "content" ] }, "tab_navigation_panel_layout/navigation_tabs/content": { "file": "ui/tabbed_upsell_screen.json", "type": "unknown" }, "common_tab_navigation_panel_layout": { "file": "ui/tabbed_upsell_screen.json", "type": "stack_panel" }, "tabbed_tab_navigation_panel_layout": { "file": "ui/tabbed_upsell_screen.json", "type": "stack_panel", "extend": { "name": "common_tab_navigation_panel_layout", "namespace": "tabbed_upsell" }, "children": [ "minecraft_navigation_tab", "nav_padding_01", "xbl_navigation_tab", "nav_padding_02", "achievements_navigation_tab3", "nav_padding_03", "multiplayer_navigation_tab4", "nav_padding_04", "server_navigation_tab", "nav_padding_05", "store_navigation_tab", "nav_padding_06", "creative_navigation_tab", "nav_padding_07", "packs_navigation_tab", "nav_padding_08", "seeds_navigation_tab" ] }, "tabbed_tab_navigation_panel_layout/minecraft_navigation_tab": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "top_tab", "namespace": "tabbed_upsell" } }, "tabbed_tab_navigation_panel_layout/nav_padding_01": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "tabbed_upsell" } }, "tabbed_tab_navigation_panel_layout/xbl_navigation_tab": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "top_tab", "namespace": "tabbed_upsell" } }, "tabbed_tab_navigation_panel_layout/nav_padding_02": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "tabbed_upsell" } }, "tabbed_tab_navigation_panel_layout/achievements_navigation_tab3": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "top_tab", "namespace": "tabbed_upsell" } }, "tabbed_tab_navigation_panel_layout/nav_padding_03": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "tabbed_upsell" } }, "tabbed_tab_navigation_panel_layout/multiplayer_navigation_tab4": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "top_tab", "namespace": "tabbed_upsell" } }, "tabbed_tab_navigation_panel_layout/nav_padding_04": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "tabbed_upsell" } }, "tabbed_tab_navigation_panel_layout/server_navigation_tab": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "top_tab", "namespace": "tabbed_upsell" } }, "tabbed_tab_navigation_panel_layout/nav_padding_05": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "tabbed_upsell" } }, "tabbed_tab_navigation_panel_layout/store_navigation_tab": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "top_tab", "namespace": "tabbed_upsell" } }, "tabbed_tab_navigation_panel_layout/nav_padding_06": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "tabbed_upsell" } }, "tabbed_tab_navigation_panel_layout/creative_navigation_tab": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "top_tab", "namespace": "tabbed_upsell" } }, "tabbed_tab_navigation_panel_layout/nav_padding_07": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "tabbed_upsell" } }, "tabbed_tab_navigation_panel_layout/packs_navigation_tab": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "top_tab", "namespace": "tabbed_upsell" } }, "tabbed_tab_navigation_panel_layout/nav_padding_08": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "tabbed_upsell" } }, "tabbed_tab_navigation_panel_layout/seeds_navigation_tab": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "top_tab", "namespace": "tabbed_upsell" } }, "tabbed_tab_content_panel_layout": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "children": [ "minecraft_tab_content", "xbl_tab_content2", "achievements_tab_content3", "multiplayer_tab_content4", "server_tab_content5", "store_tab_content6", "creative_tab_content7", "packs_tab_content8", "seeds_tab_content9" ] }, "tabbed_tab_content_panel_layout/minecraft_tab_content": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "minecraft_tab_content_panel", "namespace": "tabbed_upsell" } }, "tabbed_tab_content_panel_layout/xbl_tab_content2": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "xbl_tab_content_panel", "namespace": "tabbed_upsell" } }, "tabbed_tab_content_panel_layout/achievements_tab_content3": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "achievements_tab_content_panel", "namespace": "tabbed_upsell" } }, "tabbed_tab_content_panel_layout/multiplayer_tab_content4": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "multiplayer_tab_content_panel", "namespace": "tabbed_upsell" } }, "tabbed_tab_content_panel_layout/server_tab_content5": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "server_tab_content_panel", "namespace": "tabbed_upsell" } }, "tabbed_tab_content_panel_layout/store_tab_content6": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "store_tab_content_panel", "namespace": "tabbed_upsell" } }, "tabbed_tab_content_panel_layout/creative_tab_content7": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "creative_tab_content_panel", "namespace": "tabbed_upsell" } }, "tabbed_tab_content_panel_layout/packs_tab_content8": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "packs_tab_content_panel", "namespace": "tabbed_upsell" } }, "tabbed_tab_content_panel_layout/seeds_tab_content9": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "seeds_tab_content_panel", "namespace": "tabbed_upsell" } }, "common_tab_content_panel": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "children": [ "content" ] }, "common_tab_content_panel/content": { "file": "ui/tabbed_upsell_screen.json", "type": "unknown" }, "minecraft_tab_content_panel": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "common_tab_content_panel", "namespace": "tabbed_upsell" } }, "xbl_tab_content_panel": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "common_tab_content_panel", "namespace": "tabbed_upsell" } }, "achievements_tab_content_panel": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "common_tab_content_panel", "namespace": "tabbed_upsell" } }, "multiplayer_tab_content_panel": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "common_tab_content_panel", "namespace": "tabbed_upsell" } }, "server_tab_content_panel": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "common_tab_content_panel", "namespace": "tabbed_upsell" } }, "store_tab_content_panel": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "common_tab_content_panel", "namespace": "tabbed_upsell" } }, "creative_tab_content_panel": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "common_tab_content_panel", "namespace": "tabbed_upsell" } }, "packs_tab_content_panel": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "common_tab_content_panel", "namespace": "tabbed_upsell" } }, "seeds_tab_content_panel": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "common_tab_content_panel", "namespace": "tabbed_upsell" } }, "common_tab_screen_panel": { "file": "ui/tabbed_upsell_screen.json", "type": "stack_panel", "children": [ "tab_navigation_panel", "padding_01", "tab_content_panel" ] }, "common_tab_screen_panel/tab_navigation_panel": { "file": "ui/tabbed_upsell_screen.json", "type": "stack_panel", "extend": { "name": "tab_navigation_panel_layout", "namespace": "tabbed_upsell" } }, "common_tab_screen_panel/padding_01": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "padding_vertical", "namespace": "tabbed_upsell" } }, "common_tab_screen_panel/tab_content_panel": { "file": "ui/tabbed_upsell_screen.json", "type": "unknown" }, "tabbed_screen_panel": { "file": "ui/tabbed_upsell_screen.json", "type": "stack_panel", "extend": { "name": "common_tab_screen_panel", "namespace": "tabbed_upsell" } }, "button_panel": { "file": "ui/tabbed_upsell_screen.json", "type": "stack_panel", "children": [ "padding_5", "buy_now_button", "padding_6" ] }, "button_panel/padding_5": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "tabbed_upsell" } }, "button_panel/buy_now_button": { "file": "ui/tabbed_upsell_screen.json", "type": "button", "extend": { "name": "tabbed_upsell_buy_now_button", "namespace": "tabbed_upsell" } }, "button_panel/padding_6": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "tabbed_upsell" } }, "tab_panel": { "file": "ui/tabbed_upsell_screen.json", "type": "stack_panel", "children": [ "padding_3", "main_control", "padding_4" ] }, "tab_panel/padding_3": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "tabbed_upsell" } }, "tab_panel/main_control": { "file": "ui/tabbed_upsell_screen.json", "type": "stack_panel", "extend": { "name": "tabbed_screen_panel", "namespace": "tabbed_upsell" } }, "tab_panel/padding_4": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "tabbed_upsell" } }, "tabbed_upsell_content": { "file": "ui/tabbed_upsell_screen.json", "type": "stack_panel", "children": [ "padding_0", "tab_panel", "padding_1", "button_panel", "padding_2" ] }, "tabbed_upsell_content/padding_0": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "padding_vertical", "namespace": "tabbed_upsell" } }, "tabbed_upsell_content/tab_panel": { "file": "ui/tabbed_upsell_screen.json", "type": "stack_panel", "extend": { "name": "tab_panel", "namespace": "tabbed_upsell" } }, "tabbed_upsell_content/padding_1": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "padding_vertical", "namespace": "tabbed_upsell" } }, "tabbed_upsell_content/button_panel": { "file": "ui/tabbed_upsell_screen.json", "type": "stack_panel", "extend": { "name": "button_panel", "namespace": "tabbed_upsell" } }, "tabbed_upsell_content/padding_2": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "padding_vertical", "namespace": "tabbed_upsell" } }, "tabbed_upsell_screen": { "file": "ui/tabbed_upsell_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "tabbed_upsell_screen_panel": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "children": [ "tabbed_upsell_screen_content", "background" ] }, "tabbed_upsell_screen_panel/tabbed_upsell_screen_content": { "file": "ui/tabbed_upsell_screen.json", "type": "panel", "extend": { "name": "main_panel_no_buttons", "namespace": "common_dialogs" } }, "tabbed_upsell_screen_panel/background": { "file": "ui/tabbed_upsell_screen.json", "type": "image", "extend": { "name": "screen_background", "namespace": "common" } } }, "thanks_for_testing": { "padding_horizontal": { "file": "ui/thanks_for_testing_screen.json", "type": "panel" }, "padding_vertical": { "file": "ui/thanks_for_testing_screen.json", "type": "panel" }, "text_horizontal_padding": { "file": "ui/thanks_for_testing_screen.json", "type": "panel" }, "tabbed_upsell_buy_now_button": { "file": "ui/thanks_for_testing_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "tabbed_buy_now_label": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "children": [ "button_label" ] }, "tabbed_buy_now_label/button_label": { "file": "ui/thanks_for_testing_screen.json", "type": "label" }, "label_panel": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "children": [ "label_text" ] }, "label_panel/label_text": { "file": "ui/thanks_for_testing_screen.json", "type": "label" }, "text_panel": { "file": "ui/thanks_for_testing_screen.json", "type": "stack_panel", "children": [ "tab_content_title_panel", "tab_content_description_panel", "tab_content_description_panel_second" ] }, "text_panel/tab_content_title_panel": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "label_panel", "namespace": "thanks_for_testing" } }, "text_panel/tab_content_description_panel": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "label_panel", "namespace": "thanks_for_testing" } }, "text_panel/tab_content_description_panel_second": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "label_panel", "namespace": "thanks_for_testing" } }, "dialog_image": { "file": "ui/thanks_for_testing_screen.json", "type": "image" }, "dialog_image_with_border": { "file": "ui/thanks_for_testing_screen.json", "type": "image", "children": [ "dialog_image" ] }, "dialog_image_with_border/dialog_image": { "file": "ui/thanks_for_testing_screen.json", "type": "image", "extend": { "name": "dialog_image", "namespace": "thanks_for_testing" } }, "content_image_panel": { "file": "ui/thanks_for_testing_screen.json", "type": "stack_panel", "children": [ "minecraft_dialog_image_with_border", "horizontal_padding_01", "scrolling_panel" ] }, "content_image_panel/minecraft_dialog_image_with_border": { "file": "ui/thanks_for_testing_screen.json", "type": "image", "extend": { "name": "dialog_image_with_border", "namespace": "thanks_for_testing" } }, "content_image_panel/horizontal_padding_01": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "text_horizontal_padding", "namespace": "thanks_for_testing" } }, "content_image_panel/scrolling_panel": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "scroll_text": { "file": "ui/thanks_for_testing_screen.json", "type": "button", "extend": { "name": "non_interact_focus_border_button", "namespace": "common" } }, "image_panel": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "children": [ "dialog_image_with_border", "focus_image" ] }, "image_panel/dialog_image_with_border": { "file": "ui/thanks_for_testing_screen.json", "type": "image", "extend": { "name": "dialog_image_with_border", "namespace": "thanks_for_testing" } }, "image_panel/focus_image": { "file": "ui/thanks_for_testing_screen.json", "type": "unknown" }, "top_tab": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "tab_top", "namespace": "common_tabs" } }, "tab_navigation_panel_layout": { "file": "ui/thanks_for_testing_screen.json", "type": "stack_panel", "children": [ "navigation_tabs" ] }, "tab_navigation_panel_layout/navigation_tabs": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "children": [ "content" ] }, "tab_navigation_panel_layout/navigation_tabs/content": { "file": "ui/thanks_for_testing_screen.json", "type": "unknown" }, "common_tab_navigation_panel_layout": { "file": "ui/thanks_for_testing_screen.json", "type": "stack_panel" }, "tabbed_tab_navigation_panel_layout": { "file": "ui/thanks_for_testing_screen.json", "type": "stack_panel", "extend": { "name": "common_tab_navigation_panel_layout", "namespace": "thanks_for_testing" }, "children": [ "minecraft_navigation_tab", "nav_padding_01", "xbl_navigation_tab", "nav_padding_02", "achievements_navigation_tab3", "nav_padding_03", "multiplayer_navigation_tab4", "nav_padding_04", "server_navigation_tab", "nav_padding_05", "store_navigation_tab", "nav_padding_06", "creative_navigation_tab", "nav_padding_07", "packs_navigation_tab", "nav_padding_08", "seeds_navigation_tab" ] }, "tabbed_tab_navigation_panel_layout/minecraft_navigation_tab": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "top_tab", "namespace": "thanks_for_testing" } }, "tabbed_tab_navigation_panel_layout/nav_padding_01": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "thanks_for_testing" } }, "tabbed_tab_navigation_panel_layout/xbl_navigation_tab": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "top_tab", "namespace": "thanks_for_testing" } }, "tabbed_tab_navigation_panel_layout/nav_padding_02": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "thanks_for_testing" } }, "tabbed_tab_navigation_panel_layout/achievements_navigation_tab3": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "top_tab", "namespace": "thanks_for_testing" } }, "tabbed_tab_navigation_panel_layout/nav_padding_03": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "thanks_for_testing" } }, "tabbed_tab_navigation_panel_layout/multiplayer_navigation_tab4": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "top_tab", "namespace": "thanks_for_testing" } }, "tabbed_tab_navigation_panel_layout/nav_padding_04": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "thanks_for_testing" } }, "tabbed_tab_navigation_panel_layout/server_navigation_tab": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "top_tab", "namespace": "thanks_for_testing" } }, "tabbed_tab_navigation_panel_layout/nav_padding_05": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "thanks_for_testing" } }, "tabbed_tab_navigation_panel_layout/store_navigation_tab": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "top_tab", "namespace": "thanks_for_testing" } }, "tabbed_tab_navigation_panel_layout/nav_padding_06": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "thanks_for_testing" } }, "tabbed_tab_navigation_panel_layout/creative_navigation_tab": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "top_tab", "namespace": "thanks_for_testing" } }, "tabbed_tab_navigation_panel_layout/nav_padding_07": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "thanks_for_testing" } }, "tabbed_tab_navigation_panel_layout/packs_navigation_tab": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "top_tab", "namespace": "thanks_for_testing" } }, "tabbed_tab_navigation_panel_layout/nav_padding_08": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "thanks_for_testing" } }, "tabbed_tab_navigation_panel_layout/seeds_navigation_tab": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "top_tab", "namespace": "thanks_for_testing" } }, "tabbed_tab_content_panel_layout": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "children": [ "minecraft_tab_content", "xbl_tab_content2", "achievements_tab_content3", "multiplayer_tab_content4", "server_tab_content5", "store_tab_content6", "creative_tab_content7", "packs_tab_content8", "seeds_tab_content9" ] }, "tabbed_tab_content_panel_layout/minecraft_tab_content": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "minecraft_tab_content_panel", "namespace": "thanks_for_testing" } }, "tabbed_tab_content_panel_layout/xbl_tab_content2": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "xbl_tab_content_panel", "namespace": "thanks_for_testing" } }, "tabbed_tab_content_panel_layout/achievements_tab_content3": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "achievements_tab_content_panel", "namespace": "thanks_for_testing" } }, "tabbed_tab_content_panel_layout/multiplayer_tab_content4": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "multiplayer_tab_content_panel", "namespace": "thanks_for_testing" } }, "tabbed_tab_content_panel_layout/server_tab_content5": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "server_tab_content_panel", "namespace": "thanks_for_testing" } }, "tabbed_tab_content_panel_layout/store_tab_content6": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "store_tab_content_panel", "namespace": "thanks_for_testing" } }, "tabbed_tab_content_panel_layout/creative_tab_content7": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "creative_tab_content_panel", "namespace": "thanks_for_testing" } }, "tabbed_tab_content_panel_layout/packs_tab_content8": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "packs_tab_content_panel", "namespace": "thanks_for_testing" } }, "tabbed_tab_content_panel_layout/seeds_tab_content9": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "seeds_tab_content_panel", "namespace": "thanks_for_testing" } }, "common_tab_content_panel": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "children": [ "content" ] }, "common_tab_content_panel/content": { "file": "ui/thanks_for_testing_screen.json", "type": "unknown" }, "minecraft_tab_content_panel": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "common_tab_content_panel", "namespace": "thanks_for_testing" } }, "xbl_tab_content_panel": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "common_tab_content_panel", "namespace": "thanks_for_testing" } }, "achievements_tab_content_panel": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "common_tab_content_panel", "namespace": "thanks_for_testing" } }, "multiplayer_tab_content_panel": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "common_tab_content_panel", "namespace": "thanks_for_testing" } }, "server_tab_content_panel": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "common_tab_content_panel", "namespace": "thanks_for_testing" } }, "store_tab_content_panel": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "common_tab_content_panel", "namespace": "thanks_for_testing" } }, "creative_tab_content_panel": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "common_tab_content_panel", "namespace": "thanks_for_testing" } }, "packs_tab_content_panel": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "common_tab_content_panel", "namespace": "thanks_for_testing" } }, "seeds_tab_content_panel": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "common_tab_content_panel", "namespace": "thanks_for_testing" } }, "common_tab_screen_panel": { "file": "ui/thanks_for_testing_screen.json", "type": "stack_panel", "children": [ "tab_navigation_panel", "padding_01", "tab_content_panel" ] }, "common_tab_screen_panel/tab_navigation_panel": { "file": "ui/thanks_for_testing_screen.json", "type": "stack_panel", "extend": { "name": "tab_navigation_panel_layout", "namespace": "thanks_for_testing" } }, "common_tab_screen_panel/padding_01": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "padding_vertical", "namespace": "thanks_for_testing" } }, "common_tab_screen_panel/tab_content_panel": { "file": "ui/thanks_for_testing_screen.json", "type": "unknown" }, "tabbed_screen_panel": { "file": "ui/thanks_for_testing_screen.json", "type": "stack_panel", "extend": { "name": "common_tab_screen_panel", "namespace": "thanks_for_testing" } }, "button_panel": { "file": "ui/thanks_for_testing_screen.json", "type": "stack_panel", "children": [ "padding_5", "buy_now_button", "padding_6" ] }, "button_panel/padding_5": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "thanks_for_testing" } }, "button_panel/buy_now_button": { "file": "ui/thanks_for_testing_screen.json", "type": "button", "extend": { "name": "tabbed_upsell_buy_now_button", "namespace": "thanks_for_testing" } }, "button_panel/padding_6": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "thanks_for_testing" } }, "tab_panel": { "file": "ui/thanks_for_testing_screen.json", "type": "stack_panel", "children": [ "padding_3", "main_control", "padding_4" ] }, "tab_panel/padding_3": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "thanks_for_testing" } }, "tab_panel/main_control": { "file": "ui/thanks_for_testing_screen.json", "type": "stack_panel", "extend": { "name": "tabbed_screen_panel", "namespace": "thanks_for_testing" } }, "tab_panel/padding_4": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "thanks_for_testing" } }, "tabbed_upsell_content": { "file": "ui/thanks_for_testing_screen.json", "type": "stack_panel", "children": [ "padding_0", "tab_panel", "padding_1", "button_panel", "padding_2" ] }, "tabbed_upsell_content/padding_0": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "padding_vertical", "namespace": "thanks_for_testing" } }, "tabbed_upsell_content/tab_panel": { "file": "ui/thanks_for_testing_screen.json", "type": "stack_panel", "extend": { "name": "tab_panel", "namespace": "thanks_for_testing" } }, "tabbed_upsell_content/padding_1": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "padding_vertical", "namespace": "thanks_for_testing" } }, "tabbed_upsell_content/button_panel": { "file": "ui/thanks_for_testing_screen.json", "type": "stack_panel", "extend": { "name": "button_panel", "namespace": "thanks_for_testing" } }, "tabbed_upsell_content/padding_2": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "padding_vertical", "namespace": "thanks_for_testing" } }, "thanks_for_testing_screen": { "file": "ui/thanks_for_testing_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "tabbed_upsell_screen_panel": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "children": [ "tabbed_upsell_screen_content", "background" ] }, "tabbed_upsell_screen_panel/tabbed_upsell_screen_content": { "file": "ui/thanks_for_testing_screen.json", "type": "panel", "extend": { "name": "main_panel_no_buttons", "namespace": "common_dialogs" } }, "tabbed_upsell_screen_panel/background": { "file": "ui/thanks_for_testing_screen.json", "type": "image", "extend": { "name": "screen_background", "namespace": "common" } } }, "third_party_store": { "third_party_store_screen": { "file": "ui/third_party_store_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } } }, "toast_screen": { "toast_image": { "file": "ui/toast_screen.json", "type": "image" }, "toast_icon": { "file": "ui/toast_screen.json", "type": "panel", "children": [ "toast_icon" ] }, "toast_icon/toast_icon": { "file": "ui/toast_screen.json", "type": "image", "extend": { "name": "toast_image", "namespace": "toast_screen" } }, "xbox_icon": { "file": "ui/toast_screen.json", "type": "panel", "extend": { "name": "toast_icon", "namespace": "toast_screen" } }, "third_party_invite_icon": { "file": "ui/toast_screen.json", "type": "panel", "extend": { "name": "toast_icon", "namespace": "toast_screen" } }, "third_party_achievement_icon": { "file": "ui/toast_screen.json", "type": "panel", "extend": { "name": "toast_icon", "namespace": "toast_screen" } }, "persona_icon": { "file": "ui/toast_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "item" ] }, "persona_icon/item": { "file": "ui/toast_screen.json", "type": "panel", "extend": { "name": "piece_item_display", "namespace": "persona_common" } }, "resource_pack_icon": { "file": "ui/toast_screen.json", "type": "panel", "children": [ "resource_pack_image" ] }, "resource_pack_icon/resource_pack_image": { "file": "ui/toast_screen.json", "type": "image" }, "key_art_image": { "file": "ui/toast_screen.json", "type": "panel", "extend": { "name": "resource_pack_icon", "namespace": "toast_screen" } }, "gamer_score_icon": { "file": "ui/toast_screen.json", "type": "image" }, "toast_label": { "file": "ui/toast_screen.json", "type": "label" }, "static_button_state_panel": { "file": "ui/toast_screen.json", "type": "panel", "extend": { "name": "new_ui_button_panel", "namespace": "common_buttons" } }, "static_button": { "file": "ui/toast_screen.json", "type": "button", "extend": { "name": "light_button_assets", "namespace": "common_buttons" }, "children": [ "default", "hover", "pressed", "locked" ] }, "static_button/default": { "file": "ui/toast_screen.json", "type": "panel", "extend": { "name": "static_button_state_panel", "namespace": "toast_screen" } }, "static_button/hover": { "file": "ui/toast_screen.json", "type": "panel", "extend": { "name": "static_button_state_panel", "namespace": "toast_screen" } }, "static_button/pressed": { "file": "ui/toast_screen.json", "type": "panel", "extend": { "name": "static_button_state_panel", "namespace": "toast_screen" } }, "static_button/locked": { "file": "ui/toast_screen.json", "type": "panel", "extend": { "name": "static_button_state_panel", "namespace": "toast_screen" } }, "popup": { "file": "ui/toast_screen.json", "type": "input_panel", "extend": { "name": "input_panel", "namespace": "common" }, "children": [ "background", "popup_content" ] }, "popup/background": { "file": "ui/toast_screen.json", "type": "image" }, "popup/popup_content": { "file": "ui/toast_screen.json", "type": "stack_panel", "children": [ "icon_padding", "text_padding", "text_panel", "button_panel" ] }, "popup/popup_content/icon_padding": { "file": "ui/toast_screen.json", "type": "stack_panel" }, "popup/popup_content/text_padding": { "file": "ui/toast_screen.json", "type": "panel" }, "popup/popup_content/text_panel": { "file": "ui/toast_screen.json", "type": "panel", "children": [ "text_stack_panel" ] }, "popup/popup_content/text_panel/text_stack_panel": { "file": "ui/toast_screen.json", "type": "stack_panel", "extend": { "name": "text_stack_panel", "namespace": "toast_screen" } }, "popup/popup_content/button_panel": { "file": "ui/toast_screen.json", "type": "panel", "children": [ "visual_button" ] }, "popup/popup_content/button_panel/visual_button": { "file": "ui/toast_screen.json", "type": "button", "extend": { "name": "static_button", "namespace": "toast_screen" } }, "item_renderer": { "file": "ui/toast_screen.json", "type": "custom" }, "game_tip_label": { "file": "ui/toast_screen.json", "type": "label" }, "toast_progress_bar": { "file": "ui/toast_screen.json", "type": "panel", "children": [ "toast_duration_progress_bar" ] }, "toast_progress_bar/toast_duration_progress_bar": { "file": "ui/toast_screen.json", "type": "custom" }, "recipe_unlocked_icon": { "file": "ui/toast_screen.json", "type": "stack_panel", "children": [ "padding_vertical", "item_renderer" ] }, "recipe_unlocked_icon/padding_vertical": { "file": "ui/toast_screen.json", "type": "panel" }, "recipe_unlocked_icon/item_renderer": { "file": "ui/toast_screen.json", "type": "custom", "extend": { "name": "item_renderer", "namespace": "toast_screen" } }, "recipe_unlocked_popup": { "file": "ui/toast_screen.json", "type": "image", "children": [ "input_panel" ] }, "recipe_unlocked_popup/input_panel": { "file": "ui/toast_screen.json", "type": "input_panel", "children": [ "label_panel" ] }, "recipe_unlocked_popup/input_panel/label_panel": { "file": "ui/toast_screen.json", "type": "stack_panel", "children": [ "horizontal_padding_1", "recipe_unlocked_icon", "horizontal_padding_2", "label_panel", "horizontal_padding_3" ] }, "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_1": { "file": "ui/toast_screen.json", "type": "panel" }, "recipe_unlocked_popup/input_panel/label_panel/recipe_unlocked_icon": { "file": "ui/toast_screen.json", "type": "stack_panel", "extend": { "name": "recipe_unlocked_icon", "namespace": "toast_screen" } }, "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_2": { "file": "ui/toast_screen.json", "type": "panel" }, "recipe_unlocked_popup/input_panel/label_panel/label_panel": { "file": "ui/toast_screen.json", "type": "stack_panel", "children": [ "padding_vertical_1", "label", "padding_vertical_2" ] }, "recipe_unlocked_popup/input_panel/label_panel/label_panel/padding_vertical_1": { "file": "ui/toast_screen.json", "type": "panel" }, "recipe_unlocked_popup/input_panel/label_panel/label_panel/label": { "file": "ui/toast_screen.json", "type": "label", "extend": { "name": "game_tip_label", "namespace": "toast_screen" } }, "recipe_unlocked_popup/input_panel/label_panel/label_panel/padding_vertical_2": { "file": "ui/toast_screen.json", "type": "panel" }, "recipe_unlocked_popup/input_panel/label_panel/horizontal_padding_3": { "file": "ui/toast_screen.json", "type": "panel" }, "recipe_unlocked_pocket_popup": { "file": "ui/toast_screen.json", "type": "image", "children": [ "input_panel" ] }, "recipe_unlocked_pocket_popup/input_panel": { "file": "ui/toast_screen.json", "type": "input_panel", "children": [ "label_panel" ] }, "recipe_unlocked_pocket_popup/input_panel/label_panel": { "file": "ui/toast_screen.json", "type": "stack_panel", "children": [ "horizontal_padding_1", "recipe_unlocked_icon", "horizontal_padding_2", "label_panel", "horizontal_padding_3" ] }, "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_1": { "file": "ui/toast_screen.json", "type": "panel" }, "recipe_unlocked_pocket_popup/input_panel/label_panel/recipe_unlocked_icon": { "file": "ui/toast_screen.json", "type": "stack_panel", "extend": { "name": "recipe_unlocked_icon", "namespace": "toast_screen" } }, "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_2": { "file": "ui/toast_screen.json", "type": "panel" }, "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel": { "file": "ui/toast_screen.json", "type": "stack_panel", "children": [ "padding_vertical", "label", "padding_vertical_1" ] }, "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/padding_vertical": { "file": "ui/toast_screen.json", "type": "panel" }, "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/label": { "file": "ui/toast_screen.json", "type": "label", "extend": { "name": "game_tip_label", "namespace": "toast_screen" } }, "recipe_unlocked_pocket_popup/input_panel/label_panel/label_panel/padding_vertical_1": { "file": "ui/toast_screen.json", "type": "panel" }, "recipe_unlocked_pocket_popup/input_panel/label_panel/horizontal_padding_3": { "file": "ui/toast_screen.json", "type": "panel" }, "text_stack_panel": { "file": "ui/toast_screen.json", "type": "stack_panel", "children": [ "title", "subtitle" ] }, "text_stack_panel/title": { "file": "ui/toast_screen.json", "type": "label", "extend": { "name": "toast_label", "namespace": "toast_screen" } }, "text_stack_panel/subtitle": { "file": "ui/toast_screen.json", "type": "stack_panel", "children": [ "icon_padding", "subtext_offset" ] }, "text_stack_panel/subtitle/icon_padding": { "file": "ui/toast_screen.json", "type": "panel", "children": [ "gamer_score_icon" ] }, "text_stack_panel/subtitle/icon_padding/gamer_score_icon": { "file": "ui/toast_screen.json", "type": "image", "extend": { "name": "gamer_score_icon", "namespace": "toast_screen" } }, "text_stack_panel/subtitle/subtext_offset": { "file": "ui/toast_screen.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "subtext" ] }, "text_stack_panel/subtitle/subtext_offset/subtext": { "file": "ui/toast_screen.json", "type": "label", "extend": { "name": "toast_label", "namespace": "toast_screen" } }, "join_button_icon": { "file": "ui/toast_screen.json", "type": "image" }, "chat_popup": { "file": "ui/toast_screen.json", "type": "input_panel", "extend": { "name": "popup", "namespace": "toast_screen" } }, "splitscreen_join_popup": { "file": "ui/toast_screen.json", "type": "stack_panel", "children": [ "join_button_icon", "join_prompt_text_panel" ] }, "splitscreen_join_popup/join_button_icon": { "file": "ui/toast_screen.json", "type": "image", "extend": { "name": "join_button_icon", "namespace": "toast_screen" } }, "splitscreen_join_popup/join_prompt_text_panel": { "file": "ui/toast_screen.json", "type": "panel", "children": [ "join_prompt_text" ] }, "splitscreen_join_popup/join_prompt_text_panel/join_prompt_text": { "file": "ui/toast_screen.json", "type": "label" }, "formfitting_alpha_toast": { "file": "ui/toast_screen.json", "type": "panel", "children": [ "bg" ] }, "formfitting_alpha_toast/bg": { "file": "ui/toast_screen.json", "type": "image", "children": [ "label" ] }, "formfitting_alpha_toast/bg/label": { "file": "ui/toast_screen.json", "type": "label", "extend": { "name": "toast_label", "namespace": "toast_screen" } }, "snackbar": { "file": "ui/toast_screen.json", "type": "panel", "children": [ "body" ] }, "snackbar/body": { "file": "ui/toast_screen.json", "type": "image", "children": [ "background" ] }, "snackbar/body/background": { "file": "ui/toast_screen.json", "type": "image", "children": [ "content", "right_shadow" ] }, "snackbar/body/background/content": { "file": "ui/toast_screen.json", "type": "stack_panel", "children": [ "left_padding", "vertically_central_text", "right_padding" ] }, "snackbar/body/background/content/left_padding": { "file": "ui/toast_screen.json", "type": "panel" }, "snackbar/body/background/content/vertically_central_text": { "file": "ui/toast_screen.json", "type": "stack_panel", "children": [ "top_padding", "text" ] }, "snackbar/body/background/content/vertically_central_text/top_padding": { "file": "ui/toast_screen.json", "type": "panel" }, "snackbar/body/background/content/vertically_central_text/text": { "file": "ui/toast_screen.json", "type": "label" }, "snackbar/body/background/content/right_padding": { "file": "ui/toast_screen.json", "type": "panel" }, "snackbar/body/background/right_shadow": { "file": "ui/toast_screen.json", "type": "image" }, "progress_button_content": { "file": "ui/toast_screen.json", "type": "stack_panel", "children": [ "gamepad_icon_glyph", "spacer", "progress_button_label" ] }, "progress_button_content/gamepad_icon_glyph": { "file": "ui/toast_screen.json", "type": "label", "extend": { "name": "game_tip_label", "namespace": "toast_screen" } }, "progress_button_content/spacer": { "file": "ui/toast_screen.json", "type": "panel" }, "progress_button_content/progress_button_label": { "file": "ui/toast_screen.json", "type": "label", "extend": { "name": "game_tip_label", "namespace": "toast_screen" } }, "progress_popup": { "file": "ui/toast_screen.json", "type": "input_panel", "extend": { "name": "input_panel", "namespace": "common" }, "children": [ "background", "popup_content" ] }, "progress_popup/background": { "file": "ui/toast_screen.json", "type": "image" }, "progress_popup/popup_content": { "file": "ui/toast_screen.json", "type": "stack_panel", "children": [ "progress_toast_image", "profilepicture", "text_padding", "progress_content_vertical_panel", "divider_padding", "divider_image", "popup_decline_button", "end_padding" ] }, "progress_popup/popup_content/progress_toast_image": { "file": "ui/toast_screen.json", "type": "image" }, "progress_popup/popup_content/profilepicture": { "file": "ui/toast_screen.json", "type": "custom" }, "progress_popup/popup_content/text_padding": { "file": "ui/toast_screen.json", "type": "panel" }, "progress_popup/popup_content/progress_content_vertical_panel": { "file": "ui/toast_screen.json", "type": "stack_panel", "children": [ "title_text_label", "subtext", "stacked_progress_bar", "end_progress_padding" ] }, "progress_popup/popup_content/progress_content_vertical_panel/title_text_label": { "file": "ui/toast_screen.json", "type": "label", "extend": { "name": "game_tip_label", "namespace": "toast_screen" } }, "progress_popup/popup_content/progress_content_vertical_panel/subtext": { "file": "ui/toast_screen.json", "type": "label", "extend": { "name": "toast_label", "namespace": "toast_screen" } }, "progress_popup/popup_content/progress_content_vertical_panel/stacked_progress_bar": { "file": "ui/toast_screen.json", "type": "panel", "extend": { "name": "toast_progress_bar", "namespace": "toast_screen" } }, "progress_popup/popup_content/progress_content_vertical_panel/end_progress_padding": { "file": "ui/toast_screen.json", "type": "panel" }, "progress_popup/popup_content/divider_padding": { "file": "ui/toast_screen.json", "type": "panel" }, "progress_popup/popup_content/divider_image": { "file": "ui/toast_screen.json", "type": "image" }, "progress_popup/popup_content/popup_decline_button": { "file": "ui/toast_screen.json", "type": "button", "extend": { "name": "no_background_content_button", "namespace": "common_buttons" } }, "progress_popup/popup_content/end_padding": { "file": "ui/toast_screen.json", "type": "panel" }, "party_invite_popup": { "file": "ui/toast_screen.json", "type": "input_panel", "extend": { "name": "input_panel", "namespace": "common" }, "children": [ "background", "party_invite_content" ] }, "party_invite_popup/background": { "file": "ui/toast_screen.json", "type": "image" }, "party_invite_popup/party_invite_content": { "file": "ui/toast_screen.json", "type": "stack_panel", "children": [ "profilepicture", "text_padding", "party_invite_content_vertical_panel", "divider_padding", "divider_image", "party_invite_button", "end_padding" ] }, "party_invite_popup/party_invite_content/profilepicture": { "file": "ui/toast_screen.json", "type": "custom" }, "party_invite_popup/party_invite_content/text_padding": { "file": "ui/toast_screen.json", "type": "panel" }, "party_invite_popup/party_invite_content/party_invite_content_vertical_panel": { "file": "ui/toast_screen.json", "type": "stack_panel", "children": [ "title_text_label", "subtext", "end_padding" ] }, "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/title_text_label": { "file": "ui/toast_screen.json", "type": "label", "extend": { "name": "game_tip_label", "namespace": "toast_screen" } }, "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/subtext": { "file": "ui/toast_screen.json", "type": "label", "extend": { "name": "toast_label", "namespace": "toast_screen" } }, "party_invite_popup/party_invite_content/party_invite_content_vertical_panel/end_padding": { "file": "ui/toast_screen.json", "type": "panel" }, "party_invite_popup/party_invite_content/divider_padding": { "file": "ui/toast_screen.json", "type": "panel" }, "party_invite_popup/party_invite_content/divider_image": { "file": "ui/toast_screen.json", "type": "image" }, "party_invite_popup/party_invite_content/party_invite_button": { "file": "ui/toast_screen.json", "type": "button", "extend": { "name": "no_background_content_button", "namespace": "common_buttons" } }, "party_invite_popup/party_invite_content/end_padding": { "file": "ui/toast_screen.json", "type": "panel" }, "party_travel_popup": { "file": "ui/toast_screen.json", "type": "input_panel", "extend": { "name": "progress_popup", "namespace": "toast_screen" } }, "toast_screen": { "file": "ui/toast_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "toast_screen_content": { "file": "ui/toast_screen.json", "type": "panel", "children": [ "content_log_panel", "perf_turtle_panel" ] }, "toast_screen_content/content_log_panel": { "file": "ui/toast_screen.json", "type": "panel", "extend": { "name": "content_log_panel", "namespace": "content_log" } }, "toast_screen_content/perf_turtle_panel": { "file": "ui/toast_screen.json", "type": "panel", "extend": { "name": "perf_turtle_panel", "namespace": "perf_turtle" } } }, "token_faq": { "main_panel": { "file": "ui/token_faq_screen.json", "type": "stack_panel", "children": [ "faq_question_1", "faq_question_1_divider", "faq_question_2", "faq_question_2_divider", "faq_question_3", "faq_question_3_divider", "faq_question_4", "faq_question_4_divider", "faq_question_5" ] }, "main_panel/faq_question_1": { "file": "ui/token_faq_screen.json", "type": "button", "extend": { "name": "image_left_faq_question_body", "namespace": "realmsPlus_faq" } }, "main_panel/faq_question_1_divider": { "file": "ui/token_faq_screen.json", "type": "stack_panel", "extend": { "name": "section_divider", "namespace": "common" } }, "main_panel/faq_question_2": { "file": "ui/token_faq_screen.json", "type": "button", "extend": { "name": "image_right_faq_question_body", "namespace": "realmsPlus_faq" } }, "main_panel/faq_question_2_divider": { "file": "ui/token_faq_screen.json", "type": "stack_panel", "extend": { "name": "section_divider", "namespace": "common" } }, "main_panel/faq_question_3": { "file": "ui/token_faq_screen.json", "type": "button", "extend": { "name": "image_left_faq_question_body", "namespace": "realmsPlus_faq" } }, "main_panel/faq_question_3_divider": { "file": "ui/token_faq_screen.json", "type": "stack_panel", "extend": { "name": "section_divider", "namespace": "common" } }, "main_panel/faq_question_4": { "file": "ui/token_faq_screen.json", "type": "button", "extend": { "name": "image_right_faq_question_body", "namespace": "realmsPlus_faq" } }, "main_panel/faq_question_4_divider": { "file": "ui/token_faq_screen.json", "type": "stack_panel", "extend": { "name": "section_divider", "namespace": "common" } }, "main_panel/faq_question_5": { "file": "ui/token_faq_screen.json", "type": "button", "extend": { "name": "image_left_faq_question_body", "namespace": "realmsPlus_faq" } }, "scrolling_panel": { "file": "ui/token_faq_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "token_faq_screen_content": { "file": "ui/token_faq_screen.json", "type": "panel", "children": [ "dialog" ] }, "token_faq_screen_content/dialog": { "file": "ui/token_faq_screen.json", "type": "panel", "extend": { "name": "main_panel_no_buttons", "namespace": "common_dialogs" } }, "background": { "file": "ui/token_faq_screen.json", "type": "image", "extend": { "name": "screen_background", "namespace": "common" } }, "token_faq_screen": { "file": "ui/token_faq_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "token_content_panel": { "file": "ui/token_faq_screen.json", "type": "stack_panel", "children": [ "token_info_text" ] }, "token_content_panel/token_info_text": { "file": "ui/token_faq_screen.json", "type": "label" }, "token_popup_content": { "file": "ui/token_faq_screen.json", "type": "panel", "children": [ "dialog" ] }, "token_popup_content/dialog": { "file": "ui/token_faq_screen.json", "type": "panel", "extend": { "name": "main_panel_two_buttons", "namespace": "common_dialogs" } }, "token_faq_button_panel": { "file": "ui/token_faq_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "back_button_panel": { "file": "ui/token_faq_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "token_popup": { "file": "ui/token_faq_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } } }, "trade": { "cycle_recipe_button": { "file": "ui/trade_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "cycle_recipe_left_button": { "file": "ui/trade_screen.json", "type": "button", "extend": { "name": "cycle_recipe_button", "namespace": "trade" } }, "cycle_recipe_right_button": { "file": "ui/trade_screen.json", "type": "button", "extend": { "name": "cycle_recipe_button", "namespace": "trade" } }, "arrow_image": { "file": "ui/trade_screen.json", "type": "image" }, "cross_out_icon": { "file": "ui/trade_screen.json", "type": "image" }, "highlight_slot_panel": { "file": "ui/trade_screen.json", "type": "panel", "children": [ "hover_text" ] }, "highlight_slot_panel/hover_text": { "file": "ui/trade_screen.json", "type": "custom", "extend": { "name": "hover_text", "namespace": "common" } }, "recipe_button": { "file": "ui/trade_screen.json", "type": "button", "children": [ "hover" ] }, "recipe_button/hover": { "file": "ui/trade_screen.json", "type": "panel", "extend": { "name": "highlight_slot_panel", "namespace": "trade" } }, "recipe_item_panel": { "file": "ui/trade_screen.json", "type": "panel", "children": [ "item_renderer", "recipe_button" ] }, "recipe_item_panel/item_renderer": { "file": "ui/trade_screen.json", "type": "custom", "extend": { "name": "item_renderer", "namespace": "common" }, "children": [ "stack_count_label" ] }, "recipe_item_panel/item_renderer/stack_count_label": { "file": "ui/trade_screen.json", "type": "label", "extend": { "name": "stack_count_label", "namespace": "common" } }, "recipe_item_panel/recipe_button": { "file": "ui/trade_screen.json", "type": "button", "extend": { "name": "recipe_button", "namespace": "trade" } }, "trade_item_slot": { "file": "ui/trade_screen.json", "type": "panel", "children": [ "container_item" ] }, "trade_item_slot/container_item": { "file": "ui/trade_screen.json", "type": "input_panel", "extend": { "name": "container_item", "namespace": "common" } }, "trade_item_slotB": { "file": "ui/trade_screen.json", "type": "panel", "extend": { "name": "trade_item_slot", "namespace": "trade" } }, "trade_item_slot_result_button": { "file": "ui/trade_screen.json", "type": "button", "extend": { "name": "container_slot_button_prototype", "namespace": "common" } }, "trade_item_slot_result": { "file": "ui/trade_screen.json", "type": "panel", "extend": { "name": "trade_item_slot", "namespace": "trade" } }, "arrow": { "file": "ui/trade_screen.json", "type": "panel", "children": [ "arrow_image", "cross_out_icon", "recipe_button" ] }, "arrow/arrow_image": { "file": "ui/trade_screen.json", "type": "image", "extend": { "name": "arrow_image", "namespace": "trade" } }, "arrow/cross_out_icon": { "file": "ui/trade_screen.json", "type": "image", "extend": { "name": "cross_out_icon", "namespace": "trade" } }, "arrow/recipe_button": { "file": "ui/trade_screen.json", "type": "button", "extend": { "name": "recipe_button", "namespace": "trade" } }, "purchase_grid_item": { "file": "ui/trade_screen.json", "type": "stack_panel", "children": [ "top_item", "padding", "bottom_item" ] }, "purchase_grid_item/top_item": { "file": "ui/trade_screen.json", "type": "unknown" }, "purchase_grid_item/padding": { "file": "ui/trade_screen.json", "type": "panel" }, "purchase_grid_item/bottom_item": { "file": "ui/trade_screen.json", "type": "unknown" }, "purchase_grid": { "file": "ui/trade_screen.json", "type": "grid", "children": [ "grid_slot1", "grid_slot2", "arrow", "result_item_slot" ] }, "purchase_grid/grid_slot1": { "file": "ui/trade_screen.json", "type": "stack_panel", "extend": { "name": "purchase_grid_item", "namespace": "trade" } }, "purchase_grid/grid_slot2": { "file": "ui/trade_screen.json", "type": "stack_panel", "extend": { "name": "purchase_grid_item", "namespace": "trade" } }, "purchase_grid/arrow": { "file": "ui/trade_screen.json", "type": "stack_panel", "extend": { "name": "purchase_grid_item", "namespace": "trade" } }, "purchase_grid/result_item_slot": { "file": "ui/trade_screen.json", "type": "stack_panel", "extend": { "name": "purchase_grid_item", "namespace": "trade" } }, "greyed_item_panel": { "file": "ui/trade_screen.json", "type": "panel", "children": [ "item_renderer" ] }, "greyed_item_panel/item_renderer": { "file": "ui/trade_screen.json", "type": "custom", "extend": { "name": "item_renderer", "namespace": "common" } }, "cycle_panel_keyboard": { "file": "ui/trade_screen.json", "type": "panel", "children": [ "left", "right" ] }, "cycle_panel_keyboard/left": { "file": "ui/trade_screen.json", "type": "button", "extend": { "name": "cycle_recipe_left_button", "namespace": "trade" } }, "cycle_panel_keyboard/right": { "file": "ui/trade_screen.json", "type": "button", "extend": { "name": "cycle_recipe_right_button", "namespace": "trade" } }, "cycle_panel_gamepad": { "file": "ui/trade_screen.json", "type": "panel", "children": [ "left", "right" ] }, "cycle_panel_gamepad/left": { "file": "ui/trade_screen.json", "type": "button", "extend": { "name": "cycle_recipe_left_button", "namespace": "trade" } }, "cycle_panel_gamepad/right": { "file": "ui/trade_screen.json", "type": "button", "extend": { "name": "cycle_recipe_right_button", "namespace": "trade" } }, "cycle_panel": { "file": "ui/trade_screen.json", "type": "panel", "children": [ "keyboard", "gamepad" ] }, "cycle_panel/keyboard": { "file": "ui/trade_screen.json", "type": "panel", "extend": { "name": "cycle_panel_keyboard", "namespace": "trade" } }, "cycle_panel/gamepad": { "file": "ui/trade_screen.json", "type": "panel", "extend": { "name": "cycle_panel_gamepad", "namespace": "trade" } }, "merchant_purchase_panel": { "file": "ui/trade_screen.json", "type": "panel", "children": [ "purchase_grid" ] }, "merchant_purchase_panel/purchase_grid": { "file": "ui/trade_screen.json", "type": "grid", "extend": { "name": "purchase_grid", "namespace": "trade" } }, "top_half_panel": { "file": "ui/trade_screen.json", "type": "panel", "children": [ "villager_name_label", "cycle_panel", "merchant_purchase_panel" ] }, "top_half_panel/villager_name_label": { "file": "ui/trade_screen.json", "type": "label", "extend": { "name": "section_heading_label", "namespace": "common" } }, "top_half_panel/cycle_panel": { "file": "ui/trade_screen.json", "type": "panel", "extend": { "name": "cycle_panel", "namespace": "trade" } }, "top_half_panel/merchant_purchase_panel": { "file": "ui/trade_screen.json", "type": "panel", "extend": { "name": "merchant_purchase_panel", "namespace": "trade" } }, "trade_panel": { "file": "ui/trade_screen.json", "type": "panel", "children": [ "gamepad_helpers", "selected_item_details_factory", "item_lock_notification_factory", "root_panel", "flying_item_renderer" ] }, "trade_panel/gamepad_helpers": { "file": "ui/trade_screen.json", "type": "stack_panel", "extend": { "name": "container_gamepad_helpers", "namespace": "common" } }, "trade_panel/selected_item_details_factory": { "file": "ui/trade_screen.json", "type": "factory", "extend": { "name": "selected_item_details_factory", "namespace": "common" } }, "trade_panel/item_lock_notification_factory": { "file": "ui/trade_screen.json", "type": "factory", "extend": { "name": "item_lock_notification_factory", "namespace": "common" } }, "trade_panel/root_panel": { "file": "ui/trade_screen.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "common_panel", "trade_inventory" ] }, "trade_panel/root_panel/common_panel": { "file": "ui/trade_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "trade_panel/root_panel/trade_inventory": { "file": "ui/trade_screen.json", "type": "panel", "children": [ "top_half_panel", "inventory_panel_bottom_half_with_label", "hotbar_grid_template", "inventory_selected_icon_button", "gamepad_cursor" ] }, "trade_panel/root_panel/trade_inventory/top_half_panel": { "file": "ui/trade_screen.json", "type": "panel", "extend": { "name": "top_half_panel", "namespace": "trade" } }, "trade_panel/root_panel/trade_inventory/inventory_panel_bottom_half_with_label": { "file": "ui/trade_screen.json", "type": "panel", "extend": { "name": "inventory_panel_bottom_half_with_label", "namespace": "common" } }, "trade_panel/root_panel/trade_inventory/hotbar_grid_template": { "file": "ui/trade_screen.json", "type": "grid", "extend": { "name": "hotbar_grid_template", "namespace": "common" } }, "trade_panel/root_panel/trade_inventory/inventory_selected_icon_button": { "file": "ui/trade_screen.json", "type": "button", "extend": { "name": "inventory_selected_icon_button", "namespace": "common" } }, "trade_panel/root_panel/trade_inventory/gamepad_cursor": { "file": "ui/trade_screen.json", "type": "button", "extend": { "name": "gamepad_cursor_button", "namespace": "common" } }, "trade_panel/flying_item_renderer": { "file": "ui/trade_screen.json", "type": "custom", "extend": { "name": "flying_item_renderer", "namespace": "common" } }, "trade_screen": { "file": "ui/trade_screen.json", "type": "screen", "extend": { "name": "inventory_screen_common", "namespace": "common" } } }, "trade_pocket": { "background_image": { "file": "ui/trade_screen_pocket.json", "type": "image" }, "recipe_item_panel": { "file": "ui/trade_screen_pocket.json", "type": "panel", "children": [ "item_renderer" ] }, "recipe_item_panel/item_renderer": { "file": "ui/trade_screen_pocket.json", "type": "custom", "extend": { "name": "item_renderer", "namespace": "common" }, "children": [ "stack_count_label" ] }, "recipe_item_panel/item_renderer/stack_count_label": { "file": "ui/trade_screen_pocket.json", "type": "label", "extend": { "name": "stack_count_label", "namespace": "common" } }, "result_item_panel": { "file": "ui/trade_screen_pocket.json", "type": "panel", "children": [ "output_item_name", "recipe_item_panel" ] }, "result_item_panel/output_item_name": { "file": "ui/trade_screen_pocket.json", "type": "label" }, "result_item_panel/recipe_item_panel": { "file": "ui/trade_screen_pocket.json", "type": "panel", "extend": { "name": "recipe_item_panel", "namespace": "trade" } }, "trade_item_slot": { "file": "ui/trade_screen_pocket.json", "type": "panel", "children": [ "container_item" ] }, "trade_item_slot/container_item": { "file": "ui/trade_screen_pocket.json", "type": "input_panel", "extend": { "name": "pocket_ui_container_item", "namespace": "common" } }, "trade_item_slotB": { "file": "ui/trade_screen_pocket.json", "type": "panel", "extend": { "name": "trade_item_slot", "namespace": "trade_pocket" } }, "trade_item_slot_result_button": { "file": "ui/trade_screen_pocket.json", "type": "button", "extend": { "name": "container_slot_button_prototype", "namespace": "common" } }, "trade_item_slot_result": { "file": "ui/trade_screen_pocket.json", "type": "panel", "extend": { "name": "trade_item_slot", "namespace": "trade_pocket" } }, "purchase_grid": { "file": "ui/trade_screen_pocket.json", "type": "grid", "children": [ "grid_slot1", "grid_slot2", "arrow", "result_item_slot" ] }, "purchase_grid/grid_slot1": { "file": "ui/trade_screen_pocket.json", "type": "stack_panel", "extend": { "name": "purchase_grid_item", "namespace": "trade" } }, "purchase_grid/grid_slot2": { "file": "ui/trade_screen_pocket.json", "type": "stack_panel", "extend": { "name": "purchase_grid_item", "namespace": "trade" } }, "purchase_grid/arrow": { "file": "ui/trade_screen_pocket.json", "type": "stack_panel", "extend": { "name": "purchase_grid_item", "namespace": "trade" } }, "purchase_grid/result_item_slot": { "file": "ui/trade_screen_pocket.json", "type": "stack_panel", "extend": { "name": "purchase_grid_item", "namespace": "trade" } }, "merchant_purchase_panel": { "file": "ui/trade_screen_pocket.json", "type": "panel", "children": [ "left", "purchase_grid", "right" ] }, "merchant_purchase_panel/left": { "file": "ui/trade_screen_pocket.json", "type": "button", "extend": { "name": "cycle_recipe_left_button", "namespace": "trade" } }, "merchant_purchase_panel/purchase_grid": { "file": "ui/trade_screen_pocket.json", "type": "grid", "extend": { "name": "purchase_grid", "namespace": "trade_pocket" } }, "merchant_purchase_panel/right": { "file": "ui/trade_screen_pocket.json", "type": "button", "extend": { "name": "cycle_recipe_right_button", "namespace": "trade" } }, "merchant_panel": { "file": "ui/trade_screen_pocket.json", "type": "panel", "children": [ "merchant_purchase_panel" ] }, "merchant_panel/merchant_purchase_panel": { "file": "ui/trade_screen_pocket.json", "type": "panel", "extend": { "name": "merchant_purchase_panel", "namespace": "trade_pocket" } }, "inventory_grid": { "file": "ui/trade_screen_pocket.json", "type": "grid" }, "inventory_content": { "file": "ui/trade_screen_pocket.json", "type": "panel", "children": [ "scrolling_panel" ] }, "inventory_content/scrolling_panel": { "file": "ui/trade_screen_pocket.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "half_screen": { "file": "ui/trade_screen_pocket.json", "type": "panel" }, "inventory_half_screen": { "file": "ui/trade_screen_pocket.json", "type": "panel", "extend": { "name": "half_screen", "namespace": "trade_pocket" }, "children": [ "inventory_content" ] }, "inventory_half_screen/inventory_content": { "file": "ui/trade_screen_pocket.json", "type": "panel", "extend": { "name": "inventory_content", "namespace": "trade_pocket" } }, "merchant_half_screen": { "file": "ui/trade_screen_pocket.json", "type": "panel", "extend": { "name": "half_screen", "namespace": "trade_pocket" }, "children": [ "merchant_panel" ] }, "merchant_half_screen/merchant_panel": { "file": "ui/trade_screen_pocket.json", "type": "panel", "extend": { "name": "merchant_panel", "namespace": "trade_pocket" } }, "header": { "file": "ui/trade_screen_pocket.json", "type": "panel", "children": [ "header_background", "close_button", "villager_name_label" ] }, "header/header_background": { "file": "ui/trade_screen_pocket.json", "type": "image" }, "header/close_button": { "file": "ui/trade_screen_pocket.json", "type": "button", "extend": { "name": "legacy_pocket_close_button", "namespace": "common" } }, "header/villager_name_label": { "file": "ui/trade_screen_pocket.json", "type": "label" }, "trade_panel": { "file": "ui/trade_screen_pocket.json", "type": "screen", "extend": { "name": "inventory_screen_common", "namespace": "common" }, "children": [ "bg", "root_panel", "header", "inventory", "merchant_half_screen", "gamepad_helpers", "container_gamepad_helpers", "inventory_selected_icon_button", "selected_item_details_factory", "item_lock_notification_factory", "flying_item_renderer" ] }, "trade_panel/bg": { "file": "ui/trade_screen_pocket.json", "type": "image", "extend": { "name": "background_image", "namespace": "trade_pocket" } }, "trade_panel/root_panel": { "file": "ui/trade_screen_pocket.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" } }, "trade_panel/header": { "file": "ui/trade_screen_pocket.json", "type": "panel", "extend": { "name": "header", "namespace": "trade_pocket" } }, "trade_panel/inventory": { "file": "ui/trade_screen_pocket.json", "type": "panel", "extend": { "name": "inventory_half_screen", "namespace": "trade_pocket" } }, "trade_panel/merchant_half_screen": { "file": "ui/trade_screen_pocket.json", "type": "panel", "extend": { "name": "merchant_half_screen", "namespace": "trade_pocket" } }, "trade_panel/gamepad_helpers": { "file": "ui/trade_screen_pocket.json", "type": "stack_panel", "extend": { "name": "container_gamepad_helpers", "namespace": "common" } }, "trade_panel/container_gamepad_helpers": { "file": "ui/trade_screen_pocket.json", "type": "stack_panel", "extend": { "name": "container_gamepad_helpers", "namespace": "common" } }, "trade_panel/inventory_selected_icon_button": { "file": "ui/trade_screen_pocket.json", "type": "button", "extend": { "name": "inventory_selected_icon_button", "namespace": "common" } }, "trade_panel/selected_item_details_factory": { "file": "ui/trade_screen_pocket.json", "type": "factory", "extend": { "name": "selected_item_details_factory", "namespace": "common" } }, "trade_panel/item_lock_notification_factory": { "file": "ui/trade_screen_pocket.json", "type": "factory", "extend": { "name": "item_lock_notification_factory", "namespace": "common" } }, "trade_panel/flying_item_renderer": { "file": "ui/trade_screen_pocket.json", "type": "custom", "extend": { "name": "flying_item_renderer", "namespace": "common" } } }, "trade2": { "toolbar_background": { "file": "ui/trade_2_screen.json", "type": "image" }, "arrow_left_image": { "file": "ui/trade_2_screen.json", "type": "image" }, "arrow_right_image": { "file": "ui/trade_2_screen.json", "type": "image" }, "trade_cell_image": { "file": "ui/trade_2_screen.json", "type": "image" }, "cross_out_image": { "file": "ui/trade_2_screen.json", "type": "image" }, "lock_image": { "file": "ui/trade_2_screen.json", "type": "image" }, "scroll_background_image": { "file": "ui/trade_2_screen.json", "type": "image" }, "red_slash": { "file": "ui/trade_2_screen.json", "type": "image" }, "blue_progress_bar": { "file": "ui/trade_2_screen.json", "type": "image" }, "white_progress_bar": { "file": "ui/trade_2_screen.json", "type": "image" }, "empty_progress_bar": { "file": "ui/trade_2_screen.json", "type": "image" }, "progress_bar_nub": { "file": "ui/trade_2_screen.json", "type": "image" }, "hover_button": { "file": "ui/trade_2_screen.json", "type": "button", "children": [ "hover_text" ] }, "hover_button/hover_text": { "file": "ui/trade_2_screen.json", "type": "custom", "extend": { "name": "hover_text", "namespace": "common" } }, "stack_count_label": { "file": "ui/trade_2_screen.json", "type": "label" }, "changed_item_count_label": { "file": "ui/trade_2_screen.json", "type": "stack_panel", "children": [ "stack_count_label", "padding", "second_stack_count_label" ] }, "changed_item_count_label/stack_count_label": { "file": "ui/trade_2_screen.json", "type": "label", "extend": { "name": "stack_count_label", "namespace": "trade2" }, "children": [ "red_slash", "red_slash_double" ] }, "changed_item_count_label/stack_count_label/red_slash": { "file": "ui/trade_2_screen.json", "type": "image", "extend": { "name": "red_slash", "namespace": "trade2" } }, "changed_item_count_label/stack_count_label/red_slash_double": { "file": "ui/trade_2_screen.json", "type": "image", "extend": { "name": "red_slash", "namespace": "trade2" } }, "changed_item_count_label/padding": { "file": "ui/trade_2_screen.json", "type": "panel" }, "changed_item_count_label/second_stack_count_label": { "file": "ui/trade_2_screen.json", "type": "label", "extend": { "name": "stack_count_label", "namespace": "trade2" } }, "single_item_grid": { "file": "ui/trade_2_screen.json", "type": "grid", "children": [ "item_with_count" ] }, "single_item_grid/item_with_count": { "file": "ui/trade_2_screen.json", "type": "panel", "children": [ "item_renderer" ] }, "single_item_grid/item_with_count/item_renderer": { "file": "ui/trade_2_screen.json", "type": "custom", "extend": { "name": "item_renderer", "namespace": "common" }, "children": [ "stack_count_label", "changed_item_count_label", "hover_button" ] }, "single_item_grid/item_with_count/item_renderer/stack_count_label": { "file": "ui/trade_2_screen.json", "type": "label", "extend": { "name": "stack_count_label", "namespace": "trade2" } }, "single_item_grid/item_with_count/item_renderer/changed_item_count_label": { "file": "ui/trade_2_screen.json", "type": "stack_panel", "extend": { "name": "changed_item_count_label", "namespace": "trade2" } }, "single_item_grid/item_with_count/item_renderer/hover_button": { "file": "ui/trade_2_screen.json", "type": "button", "extend": { "name": "hover_button", "namespace": "trade2" } }, "trade_item_1": { "file": "ui/trade_2_screen.json", "type": "grid", "extend": { "name": "single_item_grid", "namespace": "trade2" } }, "trade_item_2": { "file": "ui/trade_2_screen.json", "type": "grid", "extend": { "name": "single_item_grid", "namespace": "trade2" } }, "sell_item": { "file": "ui/trade_2_screen.json", "type": "grid", "extend": { "name": "single_item_grid", "namespace": "trade2" } }, "arrow_holder": { "file": "ui/trade_2_screen.json", "type": "panel", "children": [ "arrow_image", "cross_out_image", "lock_image" ] }, "arrow_holder/arrow_image": { "file": "ui/trade_2_screen.json", "type": "image", "extend": { "name": "arrow_right_image", "namespace": "trade2" } }, "arrow_holder/cross_out_image": { "file": "ui/trade_2_screen.json", "type": "image", "extend": { "name": "cross_out_image", "namespace": "trade2" } }, "arrow_holder/lock_image": { "file": "ui/trade_2_screen.json", "type": "image", "extend": { "name": "lock_image", "namespace": "trade2" } }, "toggle_content": { "file": "ui/trade_2_screen.json", "type": "stack_panel", "children": [ "padding_1", "trade_item_1", "padding_2", "padding_2_extra", "trade_item_2", "padding_3", "padding_3_extra", "arrow_holder", "padding_4", "sell_item_holder", "sell_item_holder_with_less_padding", "padding_5" ] }, "toggle_content/padding_1": { "file": "ui/trade_2_screen.json", "type": "panel" }, "toggle_content/trade_item_1": { "file": "ui/trade_2_screen.json", "type": "grid", "extend": { "name": "trade_item_1", "namespace": "trade2" } }, "toggle_content/padding_2": { "file": "ui/trade_2_screen.json", "type": "panel" }, "toggle_content/padding_2_extra": { "file": "ui/trade_2_screen.json", "type": "panel" }, "toggle_content/trade_item_2": { "file": "ui/trade_2_screen.json", "type": "grid", "extend": { "name": "trade_item_2", "namespace": "trade2" } }, "toggle_content/padding_3": { "file": "ui/trade_2_screen.json", "type": "panel" }, "toggle_content/padding_3_extra": { "file": "ui/trade_2_screen.json", "type": "panel" }, "toggle_content/arrow_holder": { "file": "ui/trade_2_screen.json", "type": "panel", "extend": { "name": "arrow_holder", "namespace": "trade2" } }, "toggle_content/padding_4": { "file": "ui/trade_2_screen.json", "type": "panel" }, "toggle_content/sell_item_holder": { "file": "ui/trade_2_screen.json", "type": "panel", "children": [ "sell_item" ] }, "toggle_content/sell_item_holder/sell_item": { "file": "ui/trade_2_screen.json", "type": "grid", "extend": { "name": "sell_item", "namespace": "trade2" } }, "toggle_content/sell_item_holder_with_less_padding": { "file": "ui/trade_2_screen.json", "type": "panel", "children": [ "sell_item" ] }, "toggle_content/sell_item_holder_with_less_padding/sell_item": { "file": "ui/trade_2_screen.json", "type": "grid", "extend": { "name": "sell_item", "namespace": "trade2" } }, "toggle_content/padding_5": { "file": "ui/trade_2_screen.json", "type": "panel" }, "toggle_content_holder": { "file": "ui/trade_2_screen.json", "type": "panel", "children": [ "toggle_content" ] }, "toggle_content_holder/toggle_content": { "file": "ui/trade_2_screen.json", "type": "unknown" }, "trade_toggle_unchecked": { "file": "ui/trade_2_screen.json", "type": "panel", "children": [ "toggle_checked_normal", "toggle_checked_red" ] }, "trade_toggle_unchecked/toggle_checked_normal": { "file": "ui/trade_2_screen.json", "type": "panel", "extend": { "name": "toggle_unchecked", "namespace": "common_toggles" } }, "trade_toggle_unchecked/toggle_checked_red": { "file": "ui/trade_2_screen.json", "type": "panel", "extend": { "name": "toggle_unchecked", "namespace": "common_toggles" } }, "trade_toggle_checked": { "file": "ui/trade_2_screen.json", "type": "panel", "children": [ "toggle_checked_normal", "toggle_checked_red" ] }, "trade_toggle_checked/toggle_checked_normal": { "file": "ui/trade_2_screen.json", "type": "panel", "extend": { "name": "toggle_checked", "namespace": "common_toggles" } }, "trade_toggle_checked/toggle_checked_red": { "file": "ui/trade_2_screen.json", "type": "panel", "extend": { "name": "toggle_checked", "namespace": "common_toggles" } }, "trade_toggle_locked": { "file": "ui/trade_2_screen.json", "type": "panel", "extend": { "name": "toggle_locked", "namespace": "common_toggles" } }, "trade_actual_toggle": { "file": "ui/trade_2_screen.json", "type": "toggle", "extend": { "name": "toggle", "namespace": "common" } }, "trade_toggle": { "file": "ui/trade_2_screen.json", "type": "panel", "extend": { "name": "light_image_toggle_collection", "namespace": "common_toggles" } }, "trade_toggle_holder": { "file": "ui/trade_2_screen.json", "type": "panel", "children": [ "trade_toggle" ] }, "trade_toggle_holder/trade_toggle": { "file": "ui/trade_2_screen.json", "type": "panel", "extend": { "name": "trade_toggle", "namespace": "trade2" } }, "trade_toggle_stack_panel": { "file": "ui/trade_2_screen.json", "type": "stack_panel" }, "tier_label": { "file": "ui/trade_2_screen.json", "type": "label" }, "tier_label_locked": { "file": "ui/trade_2_screen.json", "type": "label" }, "tier_stack_panel": { "file": "ui/trade_2_screen.json", "type": "stack_panel", "children": [ "padding", "tier_label_holder", "trade_toggle_stack_panel" ] }, "tier_stack_panel/padding": { "file": "ui/trade_2_screen.json", "type": "panel" }, "tier_stack_panel/tier_label_holder": { "file": "ui/trade_2_screen.json", "type": "panel", "children": [ "tier_label", "tier_label_locked" ] }, "tier_stack_panel/tier_label_holder/tier_label": { "file": "ui/trade_2_screen.json", "type": "label", "extend": { "name": "tier_label", "namespace": "trade2" } }, "tier_stack_panel/tier_label_holder/tier_label_locked": { "file": "ui/trade_2_screen.json", "type": "label", "extend": { "name": "tier_label_locked", "namespace": "trade2" } }, "tier_stack_panel/trade_toggle_stack_panel": { "file": "ui/trade_2_screen.json", "type": "stack_panel", "extend": { "name": "trade_toggle_stack_panel", "namespace": "trade2" } }, "trade_selector_stack_panel": { "file": "ui/trade_2_screen.json", "type": "stack_panel" }, "scroll_inner_input_panel": { "file": "ui/trade_2_screen.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "trade_selector_stack_panel" ] }, "scroll_inner_input_panel/trade_selector_stack_panel": { "file": "ui/trade_2_screen.json", "type": "stack_panel", "extend": { "name": "trade_selector_stack_panel", "namespace": "trade2" } }, "trade_scroll_panel": { "file": "ui/trade_2_screen.json", "type": "panel", "extend": { "name": "container_scroll_panel", "namespace": "common" } }, "left_panel": { "file": "ui/trade_2_screen.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "bg", "trade_scroll_panel" ] }, "left_panel/bg": { "file": "ui/trade_2_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "left_panel/trade_scroll_panel": { "file": "ui/trade_2_screen.json", "type": "panel", "extend": { "name": "trade_scroll_panel", "namespace": "trade2" } }, "exp_progress_bar": { "file": "ui/trade_2_screen.json", "type": "panel", "children": [ "empty_progress_bar" ] }, "exp_progress_bar/empty_progress_bar": { "file": "ui/trade_2_screen.json", "type": "image", "extend": { "name": "empty_progress_bar", "namespace": "trade2" }, "children": [ "progress_bar_nub", "blue_progress_bar", "white_progress_bar" ] }, "exp_progress_bar/empty_progress_bar/progress_bar_nub": { "file": "ui/trade_2_screen.json", "type": "image", "extend": { "name": "progress_bar_nub", "namespace": "trade2" } }, "exp_progress_bar/empty_progress_bar/blue_progress_bar": { "file": "ui/trade_2_screen.json", "type": "image", "extend": { "name": "blue_progress_bar", "namespace": "trade2" } }, "exp_progress_bar/empty_progress_bar/white_progress_bar": { "file": "ui/trade_2_screen.json", "type": "image", "extend": { "name": "white_progress_bar", "namespace": "trade2" } }, "trade_details": { "file": "ui/trade_2_screen.json", "type": "panel", "children": [ "item_panel_image" ] }, "trade_details/item_panel_image": { "file": "ui/trade_2_screen.json", "type": "image", "children": [ "item_text_label" ] }, "trade_details/item_panel_image/item_text_label": { "file": "ui/trade_2_screen.json", "type": "label" }, "trade_details_factory": { "file": "ui/trade_2_screen.json", "type": "factory" }, "trade_details_factory_holder": { "file": "ui/trade_2_screen.json", "type": "panel" }, "trade_details_button": { "file": "ui/trade_2_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "trade_details_1_button": { "file": "ui/trade_2_screen.json", "type": "button", "extend": { "name": "trade_details_button", "namespace": "trade2" } }, "trade_details_2_button": { "file": "ui/trade_2_screen.json", "type": "button", "extend": { "name": "trade_details_button", "namespace": "trade2" } }, "enchantment_details_button": { "file": "ui/trade_2_screen.json", "type": "button", "extend": { "name": "trade_details_button", "namespace": "trade2" } }, "trade_result_item_slot_button": { "file": "ui/trade_2_screen.json", "type": "button", "extend": { "name": "container_slot_button_prototype", "namespace": "common" } }, "red_cell_image": { "file": "ui/trade_2_screen.json", "type": "image" }, "container_cell_image": { "file": "ui/trade_2_screen.json", "type": "panel", "children": [ "cell_image", "red_cell_image" ] }, "container_cell_image/cell_image": { "file": "ui/trade_2_screen.json", "type": "image", "extend": { "name": "cell_image", "namespace": "common" } }, "container_cell_image/red_cell_image": { "file": "ui/trade_2_screen.json", "type": "image", "extend": { "name": "red_cell_image", "namespace": "trade2" } }, "item_slot": { "file": "ui/trade_2_screen.json", "type": "input_panel", "extend": { "name": "container_item", "namespace": "common" } }, "ingredient_1_item_slot": { "file": "ui/trade_2_screen.json", "type": "input_panel", "extend": { "name": "item_slot", "namespace": "trade2" } }, "ingredient_2_item_slot": { "file": "ui/trade_2_screen.json", "type": "input_panel", "extend": { "name": "item_slot", "namespace": "trade2" } }, "result_item_slot": { "file": "ui/trade_2_screen.json", "type": "input_panel", "extend": { "name": "item_slot", "namespace": "trade2" } }, "item_slot_holder": { "file": "ui/trade_2_screen.json", "type": "panel", "children": [ "ingredient_1_item_slot", "trade_details_1_button", "trade_details_1_factory_holder" ] }, "item_slot_holder/ingredient_1_item_slot": { "file": "ui/trade_2_screen.json", "type": "unknown" }, "item_slot_holder/trade_details_1_button": { "file": "ui/trade_2_screen.json", "type": "unknown" }, "item_slot_holder/trade_details_1_factory_holder": { "file": "ui/trade_2_screen.json", "type": "panel", "extend": { "name": "trade_details_factory_holder", "namespace": "trade2" } }, "item_slots_stack_panel": { "file": "ui/trade_2_screen.json", "type": "stack_panel", "children": [ "ingredient_item_1_holder", "ingredient_item_2_holder", "pointing_right_arrow_holder", "pointing_left_arrow_holder", "result_item_slot_holder" ] }, "item_slots_stack_panel/ingredient_item_1_holder": { "file": "ui/trade_2_screen.json", "type": "panel", "extend": { "name": "item_slot_holder", "namespace": "trade2" } }, "item_slots_stack_panel/ingredient_item_2_holder": { "file": "ui/trade_2_screen.json", "type": "panel", "extend": { "name": "item_slot_holder", "namespace": "trade2" } }, "item_slots_stack_panel/pointing_right_arrow_holder": { "file": "ui/trade_2_screen.json", "type": "panel", "children": [ "arrow_right_image" ] }, "item_slots_stack_panel/pointing_right_arrow_holder/arrow_right_image": { "file": "ui/trade_2_screen.json", "type": "image", "extend": { "name": "arrow_right_image", "namespace": "trade2" } }, "item_slots_stack_panel/pointing_left_arrow_holder": { "file": "ui/trade_2_screen.json", "type": "panel", "children": [ "arrow_left_image" ] }, "item_slots_stack_panel/pointing_left_arrow_holder/arrow_left_image": { "file": "ui/trade_2_screen.json", "type": "image", "extend": { "name": "arrow_left_image", "namespace": "trade2" } }, "item_slots_stack_panel/result_item_slot_holder": { "file": "ui/trade_2_screen.json", "type": "panel", "extend": { "name": "item_slot_holder", "namespace": "trade2" } }, "trade_button": { "file": "ui/trade_2_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "how_to_play_button": { "file": "ui/trade_2_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "top_half_stack_panel": { "file": "ui/trade_2_screen.json", "type": "stack_panel", "children": [ "item_slots_holder", "padding_1", "trade_button_holder", "how_to_play_button_holder" ] }, "top_half_stack_panel/item_slots_holder": { "file": "ui/trade_2_screen.json", "type": "panel", "children": [ "item_slots_stack_panel" ] }, "top_half_stack_panel/item_slots_holder/item_slots_stack_panel": { "file": "ui/trade_2_screen.json", "type": "stack_panel", "extend": { "name": "item_slots_stack_panel", "namespace": "trade2" } }, "top_half_stack_panel/padding_1": { "file": "ui/trade_2_screen.json", "type": "panel" }, "top_half_stack_panel/trade_button_holder": { "file": "ui/trade_2_screen.json", "type": "panel", "children": [ "trade_button" ] }, "top_half_stack_panel/trade_button_holder/trade_button": { "file": "ui/trade_2_screen.json", "type": "button", "extend": { "name": "trade_button", "namespace": "trade2" } }, "top_half_stack_panel/how_to_play_button_holder": { "file": "ui/trade_2_screen.json", "type": "panel", "children": [ "how_to_play_button" ] }, "top_half_stack_panel/how_to_play_button_holder/how_to_play_button": { "file": "ui/trade_2_screen.json", "type": "button", "extend": { "name": "how_to_play_button", "namespace": "trade2" } }, "top_half_panel": { "file": "ui/trade_2_screen.json", "type": "panel", "children": [ "top_half_stack_panel" ] }, "top_half_panel/top_half_stack_panel": { "file": "ui/trade_2_screen.json", "type": "stack_panel", "extend": { "name": "top_half_stack_panel", "namespace": "trade2" } }, "villager_name_label": { "file": "ui/trade_2_screen.json", "type": "label" }, "right_panel": { "file": "ui/trade_2_screen.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "common_panel", "trade_screen_inventory" ] }, "right_panel/common_panel": { "file": "ui/trade_2_screen.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "right_panel/trade_screen_inventory": { "file": "ui/trade_2_screen.json", "type": "panel", "children": [ "villager_name_label", "exp_progress_bar", "top_half_panel", "inventory_panel_bottom_half_with_label", "hotbar_grid" ] }, "right_panel/trade_screen_inventory/villager_name_label": { "file": "ui/trade_2_screen.json", "type": "label", "extend": { "name": "villager_name_label", "namespace": "trade2" } }, "right_panel/trade_screen_inventory/exp_progress_bar": { "file": "ui/trade_2_screen.json", "type": "panel", "extend": { "name": "exp_progress_bar", "namespace": "trade2" } }, "right_panel/trade_screen_inventory/top_half_panel": { "file": "ui/trade_2_screen.json", "type": "panel", "extend": { "name": "top_half_panel", "namespace": "trade2" } }, "right_panel/trade_screen_inventory/inventory_panel_bottom_half_with_label": { "file": "ui/trade_2_screen.json", "type": "panel", "extend": { "name": "inventory_panel_bottom_half_with_label", "namespace": "common" } }, "right_panel/trade_screen_inventory/hotbar_grid": { "file": "ui/trade_2_screen.json", "type": "grid", "extend": { "name": "hotbar_grid_template", "namespace": "common" } }, "toolbar_panel": { "file": "ui/trade_2_screen.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "toolbar_background" ] }, "toolbar_panel/toolbar_background": { "file": "ui/trade_2_screen.json", "type": "image", "extend": { "name": "toolbar_background", "namespace": "trade2" }, "children": [ "toolbar_stack_panel" ] }, "toolbar_panel/toolbar_background/toolbar_stack_panel": { "file": "ui/trade_2_screen.json", "type": "stack_panel", "children": [ "padding_1", "close_button_panel", "padding_2" ] }, "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": { "file": "ui/trade_2_screen.json", "type": "panel" }, "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel": { "file": "ui/trade_2_screen.json", "type": "panel", "children": [ "close_button" ] }, "toolbar_panel/toolbar_background/toolbar_stack_panel/close_button_panel/close_button": { "file": "ui/trade_2_screen.json", "type": "button", "extend": { "name": "light_close_button", "namespace": "common" } }, "toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": { "file": "ui/trade_2_screen.json", "type": "panel" }, "toolbar_anchor": { "file": "ui/trade_2_screen.json", "type": "panel", "children": [ "toolbar_panel" ] }, "toolbar_anchor/toolbar_panel": { "file": "ui/trade_2_screen.json", "type": "input_panel", "extend": { "name": "toolbar_panel", "namespace": "trade2" } }, "center_fold": { "file": "ui/trade_2_screen.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "center_bg" ] }, "center_fold/center_bg": { "file": "ui/trade_2_screen.json", "type": "image" }, "screen_stack_panel": { "file": "ui/trade_2_screen.json", "type": "stack_panel", "children": [ "left_panel", "center_fold", "right_panel", "toolbar_anchor" ] }, "screen_stack_panel/left_panel": { "file": "ui/trade_2_screen.json", "type": "input_panel", "extend": { "name": "left_panel", "namespace": "trade2" } }, "screen_stack_panel/center_fold": { "file": "ui/trade_2_screen.json", "type": "input_panel", "extend": { "name": "center_fold", "namespace": "trade2" } }, "screen_stack_panel/right_panel": { "file": "ui/trade_2_screen.json", "type": "input_panel", "extend": { "name": "right_panel", "namespace": "trade2" } }, "screen_stack_panel/toolbar_anchor": { "file": "ui/trade_2_screen.json", "type": "panel", "extend": { "name": "toolbar_anchor", "namespace": "trade2" } }, "gamepad_helper_x": { "file": "ui/trade_2_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_x", "namespace": "common" } }, "gamepad_helper_y": { "file": "ui/trade_2_screen.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_y", "namespace": "common" } }, "screen_panel": { "file": "ui/trade_2_screen.json", "type": "panel", "children": [ "screen_stack_panel", "container_gamepad_helpers", "selected_item_details_factory", "item_lock_notification_factory", "inventory_selected_icon_button", "inventory_take_progress_icon_button", "flying_item_renderer" ] }, "screen_panel/screen_stack_panel": { "file": "ui/trade_2_screen.json", "type": "stack_panel", "extend": { "name": "screen_stack_panel", "namespace": "trade2" } }, "screen_panel/container_gamepad_helpers": { "file": "ui/trade_2_screen.json", "type": "stack_panel", "extend": { "name": "container_gamepad_helpers", "namespace": "common" } }, "screen_panel/selected_item_details_factory": { "file": "ui/trade_2_screen.json", "type": "factory", "extend": { "name": "selected_item_details_factory", "namespace": "common" } }, "screen_panel/item_lock_notification_factory": { "file": "ui/trade_2_screen.json", "type": "factory", "extend": { "name": "item_lock_notification_factory", "namespace": "common" } }, "screen_panel/inventory_selected_icon_button": { "file": "ui/trade_2_screen.json", "type": "button", "extend": { "name": "inventory_selected_icon_button", "namespace": "common" } }, "screen_panel/inventory_take_progress_icon_button": { "file": "ui/trade_2_screen.json", "type": "button", "extend": { "name": "inventory_take_progress_icon_button", "namespace": "common" } }, "screen_panel/flying_item_renderer": { "file": "ui/trade_2_screen.json", "type": "custom", "extend": { "name": "flying_item_renderer", "namespace": "common" } }, "trade_screen": { "file": "ui/trade_2_screen.json", "type": "screen", "extend": { "name": "inventory_screen_common", "namespace": "common" } } }, "trade2_pocket": { "chest_item_renderer": { "file": "ui/trade_2_screen_pocket.json", "type": "custom" }, "trade_icon": { "file": "ui/trade_2_screen_pocket.json", "type": "image" }, "arrow_right_image": { "file": "ui/trade_2_screen_pocket.json", "type": "image" }, "right_navigation_tabs": { "file": "ui/trade_2_screen_pocket.json", "type": "stack_panel", "children": [ "pocket_tab_close_button", "fill" ] }, "right_navigation_tabs/pocket_tab_close_button": { "file": "ui/trade_2_screen_pocket.json", "type": "image", "extend": { "name": "pocket_tab_close_button", "namespace": "common_tabs" } }, "right_navigation_tabs/fill": { "file": "ui/trade_2_screen_pocket.json", "type": "panel" }, "trade_slots_panel": { "file": "ui/trade_2_screen_pocket.json", "type": "image", "extend": { "name": "scroll_background_image", "namespace": "trade2" }, "children": [ "item_slots_stack_panel" ] }, "trade_slots_panel/item_slots_stack_panel": { "file": "ui/trade_2_screen_pocket.json", "type": "stack_panel", "extend": { "name": "item_slots_stack_panel", "namespace": "trade2" } }, "trade_and_help_buttons": { "file": "ui/trade_2_screen_pocket.json", "type": "stack_panel", "children": [ "trade_button_holder", "how_to_play_button_holder" ] }, "trade_and_help_buttons/trade_button_holder": { "file": "ui/trade_2_screen_pocket.json", "type": "panel", "children": [ "trade_button" ] }, "trade_and_help_buttons/trade_button_holder/trade_button": { "file": "ui/trade_2_screen_pocket.json", "type": "button", "extend": { "name": "trade_button", "namespace": "trade2" } }, "trade_and_help_buttons/how_to_play_button_holder": { "file": "ui/trade_2_screen_pocket.json", "type": "panel", "children": [ "how_to_play_button" ] }, "trade_and_help_buttons/how_to_play_button_holder/how_to_play_button": { "file": "ui/trade_2_screen_pocket.json", "type": "button", "extend": { "name": "how_to_play_button", "namespace": "trade2" } }, "name_and_trade_slots_stack_panel": { "file": "ui/trade_2_screen_pocket.json", "type": "stack_panel", "children": [ "padding_1", "villager_name_label_holder", "padding_2", "exp_progress_bar_holder", "padding_3", "trade_slots_panel", "padding_4", "trade_and_help_buttons" ] }, "name_and_trade_slots_stack_panel/padding_1": { "file": "ui/trade_2_screen_pocket.json", "type": "panel" }, "name_and_trade_slots_stack_panel/villager_name_label_holder": { "file": "ui/trade_2_screen_pocket.json", "type": "panel", "children": [ "villager_name_label" ] }, "name_and_trade_slots_stack_panel/villager_name_label_holder/villager_name_label": { "file": "ui/trade_2_screen_pocket.json", "type": "label", "extend": { "name": "villager_name_label", "namespace": "trade2" } }, "name_and_trade_slots_stack_panel/padding_2": { "file": "ui/trade_2_screen_pocket.json", "type": "panel" }, "name_and_trade_slots_stack_panel/exp_progress_bar_holder": { "file": "ui/trade_2_screen_pocket.json", "type": "panel", "children": [ "exp_progress_bar" ] }, "name_and_trade_slots_stack_panel/exp_progress_bar_holder/exp_progress_bar": { "file": "ui/trade_2_screen_pocket.json", "type": "panel", "extend": { "name": "exp_progress_bar", "namespace": "trade2" } }, "name_and_trade_slots_stack_panel/padding_3": { "file": "ui/trade_2_screen_pocket.json", "type": "panel" }, "name_and_trade_slots_stack_panel/trade_slots_panel": { "file": "ui/trade_2_screen_pocket.json", "type": "image", "extend": { "name": "trade_slots_panel", "namespace": "trade2_pocket" } }, "name_and_trade_slots_stack_panel/padding_4": { "file": "ui/trade_2_screen_pocket.json", "type": "panel" }, "name_and_trade_slots_stack_panel/trade_and_help_buttons": { "file": "ui/trade_2_screen_pocket.json", "type": "stack_panel", "extend": { "name": "trade_and_help_buttons", "namespace": "trade2_pocket" } }, "right_panel": { "file": "ui/trade_2_screen_pocket.json", "type": "stack_panel", "children": [ "content", "navigation_tabs_holder" ] }, "right_panel/content": { "file": "ui/trade_2_screen_pocket.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "bg", "name_and_trade_slots_stack_panel" ] }, "right_panel/content/bg": { "file": "ui/trade_2_screen_pocket.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "right_panel/content/name_and_trade_slots_stack_panel": { "file": "ui/trade_2_screen_pocket.json", "type": "stack_panel", "extend": { "name": "name_and_trade_slots_stack_panel", "namespace": "trade2_pocket" } }, "right_panel/navigation_tabs_holder": { "file": "ui/trade_2_screen_pocket.json", "type": "panel", "children": [ "right_navigation_tabs" ] }, "right_panel/navigation_tabs_holder/right_navigation_tabs": { "file": "ui/trade_2_screen_pocket.json", "type": "stack_panel", "extend": { "name": "right_navigation_tabs", "namespace": "trade2_pocket" } }, "left_tab_trade": { "file": "ui/trade_2_screen_pocket.json", "type": "panel", "extend": { "name": "pocket_tab_left", "namespace": "common_tabs" } }, "left_tab_inventory": { "file": "ui/trade_2_screen_pocket.json", "type": "panel", "extend": { "name": "pocket_tab_left", "namespace": "common_tabs" } }, "left_navigation_tabs": { "file": "ui/trade_2_screen_pocket.json", "type": "stack_panel", "children": [ "left_tab_trades", "padding", "left_tab_inventory" ] }, "left_navigation_tabs/left_tab_trades": { "file": "ui/trade_2_screen_pocket.json", "type": "panel", "extend": { "name": "left_tab_trade", "namespace": "trade2_pocket" } }, "left_navigation_tabs/padding": { "file": "ui/trade_2_screen_pocket.json", "type": "panel" }, "left_navigation_tabs/left_tab_inventory": { "file": "ui/trade_2_screen_pocket.json", "type": "panel", "extend": { "name": "left_tab_inventory", "namespace": "trade2_pocket" } }, "arrow_holder": { "file": "ui/trade_2_screen_pocket.json", "type": "panel", "children": [ "arrow_image", "cross_out_image", "lock_image" ] }, "arrow_holder/arrow_image": { "file": "ui/trade_2_screen_pocket.json", "type": "image", "extend": { "name": "arrow_right_image", "namespace": "trade2_pocket" } }, "arrow_holder/cross_out_image": { "file": "ui/trade_2_screen_pocket.json", "type": "image", "extend": { "name": "cross_out_image", "namespace": "trade2" } }, "arrow_holder/lock_image": { "file": "ui/trade_2_screen_pocket.json", "type": "image", "extend": { "name": "lock_image", "namespace": "trade2" } }, "inventory_scroll_panel": { "file": "ui/trade_2_screen_pocket.json", "type": "panel", "extend": { "name": "container_scroll_panel", "namespace": "common" } }, "toggle_content": { "file": "ui/trade_2_screen_pocket.json", "type": "stack_panel", "children": [ "padding_1", "trade_item_holder", "padding_2", "arrow_holder", "padding_3", "sell_item_holder", "padding_4" ] }, "toggle_content/padding_1": { "file": "ui/trade_2_screen_pocket.json", "type": "panel" }, "toggle_content/trade_item_holder": { "file": "ui/trade_2_screen_pocket.json", "type": "stack_panel", "children": [ "padding_left", "trade_item_1", "padding_middle", "trade_item_2", "padding_right" ] }, "toggle_content/trade_item_holder/padding_left": { "file": "ui/trade_2_screen_pocket.json", "type": "panel" }, "toggle_content/trade_item_holder/trade_item_1": { "file": "ui/trade_2_screen_pocket.json", "type": "grid", "extend": { "name": "trade_item_1", "namespace": "trade2" } }, "toggle_content/trade_item_holder/padding_middle": { "file": "ui/trade_2_screen_pocket.json", "type": "panel" }, "toggle_content/trade_item_holder/trade_item_2": { "file": "ui/trade_2_screen_pocket.json", "type": "grid", "extend": { "name": "trade_item_2", "namespace": "trade2" } }, "toggle_content/trade_item_holder/padding_right": { "file": "ui/trade_2_screen_pocket.json", "type": "panel" }, "toggle_content/padding_2": { "file": "ui/trade_2_screen_pocket.json", "type": "panel" }, "toggle_content/arrow_holder": { "file": "ui/trade_2_screen_pocket.json", "type": "panel", "extend": { "name": "arrow_holder", "namespace": "trade2_pocket" } }, "toggle_content/padding_3": { "file": "ui/trade_2_screen_pocket.json", "type": "panel" }, "toggle_content/sell_item_holder": { "file": "ui/trade_2_screen_pocket.json", "type": "panel", "children": [ "sell_item" ] }, "toggle_content/sell_item_holder/sell_item": { "file": "ui/trade_2_screen_pocket.json", "type": "grid", "extend": { "name": "sell_item", "namespace": "trade2" } }, "toggle_content/padding_4": { "file": "ui/trade_2_screen_pocket.json", "type": "panel" }, "left_panel": { "file": "ui/trade_2_screen_pocket.json", "type": "stack_panel", "children": [ "gamepad_helpers_and_tabs_holder", "content" ] }, "left_panel/gamepad_helpers_and_tabs_holder": { "file": "ui/trade_2_screen_pocket.json", "type": "panel", "children": [ "tabs_left_gamepad_helpers", "navigation_tabs_holder" ] }, "left_panel/gamepad_helpers_and_tabs_holder/tabs_left_gamepad_helpers": { "file": "ui/trade_2_screen_pocket.json", "type": "panel", "extend": { "name": "tabs_left_gamepad_helpers", "namespace": "common" } }, "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder": { "file": "ui/trade_2_screen_pocket.json", "type": "panel", "children": [ "left_navigation_tabs" ] }, "left_panel/gamepad_helpers_and_tabs_holder/navigation_tabs_holder/left_navigation_tabs": { "file": "ui/trade_2_screen_pocket.json", "type": "stack_panel", "extend": { "name": "left_navigation_tabs", "namespace": "trade2_pocket" } }, "left_panel/content": { "file": "ui/trade_2_screen_pocket.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "bg", "inventory_scroll_panel", "trade_scroll_panel" ] }, "left_panel/content/bg": { "file": "ui/trade_2_screen_pocket.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "left_panel/content/inventory_scroll_panel": { "file": "ui/trade_2_screen_pocket.json", "type": "panel", "extend": { "name": "inventory_scroll_panel", "namespace": "trade2_pocket" } }, "left_panel/content/trade_scroll_panel": { "file": "ui/trade_2_screen_pocket.json", "type": "panel", "extend": { "name": "trade_scroll_panel", "namespace": "trade2" } }, "pocket_hotbar_and_content_panels": { "file": "ui/trade_2_screen_pocket.json", "type": "stack_panel", "extend": { "name": "pocket_hotbar_and_content_panels", "namespace": "common" } }, "screen_panel": { "file": "ui/trade_2_screen_pocket.json", "type": "panel", "children": [ "pocket_hotbar_and_content_panels", "container_gamepad_helpers", "selected_item_details_factory", "item_lock_notification_factory", "inventory_selected_icon_button", "inventory_take_progress_icon_button", "flying_item_renderer" ] }, "screen_panel/pocket_hotbar_and_content_panels": { "file": "ui/trade_2_screen_pocket.json", "type": "stack_panel", "extend": { "name": "pocket_hotbar_and_content_panels", "namespace": "trade2_pocket" } }, "screen_panel/container_gamepad_helpers": { "file": "ui/trade_2_screen_pocket.json", "type": "stack_panel", "extend": { "name": "container_gamepad_helpers", "namespace": "common" } }, "screen_panel/selected_item_details_factory": { "file": "ui/trade_2_screen_pocket.json", "type": "factory", "extend": { "name": "selected_item_details_factory", "namespace": "common" } }, "screen_panel/item_lock_notification_factory": { "file": "ui/trade_2_screen_pocket.json", "type": "factory", "extend": { "name": "item_lock_notification_factory", "namespace": "common" } }, "screen_panel/inventory_selected_icon_button": { "file": "ui/trade_2_screen_pocket.json", "type": "button", "extend": { "name": "inventory_selected_icon_button", "namespace": "common" } }, "screen_panel/inventory_take_progress_icon_button": { "file": "ui/trade_2_screen_pocket.json", "type": "button", "extend": { "name": "inventory_take_progress_icon_button", "namespace": "common" } }, "screen_panel/flying_item_renderer": { "file": "ui/trade_2_screen_pocket.json", "type": "custom", "extend": { "name": "flying_item_renderer", "namespace": "common" } } }, "trialUpsell": { "normal_stroke_button": { "file": "ui/trial_upsell_screen.json", "type": "image" }, "normal_description_label": { "file": "ui/trial_upsell_screen.json", "type": "label" }, "trialTime": { "file": "ui/trial_upsell_screen.json", "type": "custom" }, "trial_label": { "file": "ui/trial_upsell_screen.json", "type": "label" }, "trial_description_panel": { "file": "ui/trial_upsell_screen.json", "type": "panel", "children": [ "description_text" ] }, "trial_description_panel/description_text": { "file": "ui/trial_upsell_screen.json", "type": "label", "extend": { "name": "normal_description_label", "namespace": "trialUpsell" } }, "trial_expired_description_panel": { "file": "ui/trial_upsell_screen.json", "type": "stack_panel", "children": [ "vertical_padding_0", "line1", "vertical_padding_1", "line2", "line3", "line4", "line5" ] }, "trial_expired_description_panel/vertical_padding_0": { "file": "ui/trial_upsell_screen.json", "type": "panel" }, "trial_expired_description_panel/line1": { "file": "ui/trial_upsell_screen.json", "type": "label", "extend": { "name": "normal_description_label", "namespace": "trialUpsell" } }, "trial_expired_description_panel/vertical_padding_1": { "file": "ui/trial_upsell_screen.json", "type": "panel" }, "trial_expired_description_panel/line2": { "file": "ui/trial_upsell_screen.json", "type": "label", "extend": { "name": "normal_description_label", "namespace": "trialUpsell" } }, "trial_expired_description_panel/line3": { "file": "ui/trial_upsell_screen.json", "type": "label", "extend": { "name": "normal_description_label", "namespace": "trialUpsell" } }, "trial_expired_description_panel/line4": { "file": "ui/trial_upsell_screen.json", "type": "label", "extend": { "name": "normal_description_label", "namespace": "trialUpsell" } }, "trial_expired_description_panel/line5": { "file": "ui/trial_upsell_screen.json", "type": "label", "extend": { "name": "normal_description_label", "namespace": "trialUpsell" } }, "continue_button": { "file": "ui/trial_upsell_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "buy_button": { "file": "ui/trial_upsell_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "root_panel": { "file": "ui/trial_upsell_screen.json", "type": "panel" }, "trial_upsell_screen_dialog": { "file": "ui/trial_upsell_screen.json", "type": "panel", "extend": { "name": "main_panel_one_button", "namespace": "common_dialogs" } }, "trial_upsell_expired_screen_dialog": { "file": "ui/trial_upsell_screen.json", "type": "panel", "extend": { "name": "main_panel_one_button", "namespace": "common_dialogs" } }, "button_content_panel": { "file": "ui/trial_upsell_screen.json", "type": "panel", "children": [ "buy", "continue" ] }, "button_content_panel/buy": { "file": "ui/trial_upsell_screen.json", "type": "button", "extend": { "name": "buy_button", "namespace": "trialUpsell" } }, "button_content_panel/continue": { "file": "ui/trial_upsell_screen.json", "type": "button", "extend": { "name": "continue_button", "namespace": "trialUpsell" } }, "trial_upsell_screen": { "file": "ui/trial_upsell_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "trial_upsell_screen_content": { "file": "ui/trial_upsell_screen.json", "type": "panel", "children": [ "trialTime", "root_panel" ] }, "trial_upsell_screen_content/trialTime": { "file": "ui/trial_upsell_screen.json", "type": "custom", "extend": { "name": "trialTime", "namespace": "trialUpsell" } }, "trial_upsell_screen_content/root_panel": { "file": "ui/trial_upsell_screen.json", "type": "panel", "extend": { "name": "root_panel", "namespace": "trialUpsell" }, "children": [ "trial_upsell_screen_dialog" ] }, "trial_upsell_screen_content/root_panel/trial_upsell_screen_dialog": { "file": "ui/trial_upsell_screen.json", "type": "panel", "extend": { "name": "trial_upsell_screen_dialog", "namespace": "trialUpsell" } }, "trial_upsell_expired_screen": { "file": "ui/trial_upsell_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "trial_upsell_expired_screen_content": { "file": "ui/trial_upsell_screen.json", "type": "panel", "children": [ "trialTime", "root_panel" ] }, "trial_upsell_expired_screen_content/trialTime": { "file": "ui/trial_upsell_screen.json", "type": "custom", "extend": { "name": "trialTime", "namespace": "trialUpsell" } }, "trial_upsell_expired_screen_content/root_panel": { "file": "ui/trial_upsell_screen.json", "type": "panel", "extend": { "name": "root_panel", "namespace": "trialUpsell" }, "children": [ "trial_upsell_expired_screen_dialog" ] }, "trial_upsell_expired_screen_content/root_panel/trial_upsell_expired_screen_dialog": { "file": "ui/trial_upsell_screen.json", "type": "panel", "extend": { "name": "trial_upsell_expired_screen_dialog", "namespace": "trialUpsell" } }, "content_description_panel": { "file": "ui/trial_upsell_screen.json", "type": "panel", "children": [ "scrolling_panel" ] }, "content_description_panel/scrolling_panel": { "file": "ui/trial_upsell_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } } }, "ugc_viewer": { "padding": { "file": "ui/ugc_viewer_screen.json", "type": "panel" }, "world_label": { "file": "ui/ugc_viewer_screen.json", "type": "label" }, "world_image": { "file": "ui/ugc_viewer_screen.json", "type": "image" }, "button_content": { "file": "ui/ugc_viewer_screen.json", "type": "panel", "children": [ "stack_panel" ] }, "button_content/stack_panel": { "file": "ui/ugc_viewer_screen.json", "type": "stack_panel", "children": [ "world_label", "world_panel" ] }, "button_content/stack_panel/world_label": { "file": "ui/ugc_viewer_screen.json", "type": "label", "extend": { "name": "world_label", "namespace": "ugc_viewer" } }, "button_content/stack_panel/world_panel": { "file": "ui/ugc_viewer_screen.json", "type": "panel", "children": [ "background" ] }, "button_content/stack_panel/world_panel/background": { "file": "ui/ugc_viewer_screen.json", "type": "image", "children": [ "world_image" ] }, "button_content/stack_panel/world_panel/background/world_image": { "file": "ui/ugc_viewer_screen.json", "type": "image", "extend": { "name": "world_image", "namespace": "ugc_viewer" } }, "grid_item": { "file": "ui/ugc_viewer_screen.json", "type": "panel", "children": [ "button" ] }, "grid_item/button": { "file": "ui/ugc_viewer_screen.json", "type": "button", "extend": { "name": "dark_content_button", "namespace": "common_buttons" } }, "place_holder_control": { "file": "ui/ugc_viewer_screen.json", "type": "panel", "children": [ "search_icon", "place_holder_text" ] }, "place_holder_control/search_icon": { "file": "ui/ugc_viewer_screen.json", "type": "image" }, "place_holder_control/place_holder_text": { "file": "ui/ugc_viewer_screen.json", "type": "label", "extend": { "name": "text_edit_box_place_holder_label", "namespace": "common" } }, "search_box": { "file": "ui/ugc_viewer_screen.json", "type": "edit_box", "extend": { "name": "text_edit_box", "namespace": "common" } }, "grid_content": { "file": "ui/ugc_viewer_screen.json", "type": "grid" }, "scrolling_content": { "file": "ui/ugc_viewer_screen.json", "type": "panel", "children": [ "grid_content" ] }, "scrolling_content/grid_content": { "file": "ui/ugc_viewer_screen.json", "type": "grid", "extend": { "name": "grid_content", "namespace": "ugc_viewer" } }, "main_panel": { "file": "ui/ugc_viewer_screen.json", "type": "stack_panel", "children": [ "padding_0", "centerer_panel_0", "padding_1", "centerer_panel_1", "padding_2" ] }, "main_panel/padding_0": { "file": "ui/ugc_viewer_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "ugc_viewer" } }, "main_panel/centerer_panel_0": { "file": "ui/ugc_viewer_screen.json", "type": "panel", "children": [ "search_box" ] }, "main_panel/centerer_panel_0/search_box": { "file": "ui/ugc_viewer_screen.json", "type": "edit_box", "extend": { "name": "search_box", "namespace": "ugc_viewer" } }, "main_panel/padding_1": { "file": "ui/ugc_viewer_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "ugc_viewer" } }, "main_panel/centerer_panel_1": { "file": "ui/ugc_viewer_screen.json", "type": "panel", "children": [ "scrolling_panel" ] }, "main_panel/centerer_panel_1/scrolling_panel": { "file": "ui/ugc_viewer_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "main_panel/padding_2": { "file": "ui/ugc_viewer_screen.json", "type": "panel", "extend": { "name": "padding", "namespace": "ugc_viewer" } }, "ugc_viewer_screen": { "file": "ui/ugc_viewer_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "screen_content": { "file": "ui/ugc_viewer_screen.json", "type": "panel", "children": [ "main_panel" ] }, "screen_content/main_panel": { "file": "ui/ugc_viewer_screen.json", "type": "panel", "extend": { "name": "main_panel_no_buttons", "namespace": "common_dialogs" } } }, "common_art": { "title_image": { "file": "ui/ui_art_assets_common.json", "type": "image" }, "title_image_edu": { "file": "ui/ui_art_assets_common.json", "type": "image" }, "splash_text": { "file": "ui/ui_art_assets_common.json", "type": "custom" }, "title_panel_pocket": { "file": "ui/ui_art_assets_common.json", "type": "panel", "children": [ "title_image", "splash_text" ] }, "title_panel_pocket/title_image": { "file": "ui/ui_art_assets_common.json", "type": "image", "extend": { "name": "title_image", "namespace": "common_art" } }, "title_panel_pocket/splash_text": { "file": "ui/ui_art_assets_common.json", "type": "custom", "extend": { "name": "splash_text", "namespace": "common_art" } }, "title_panel_win10": { "file": "ui/ui_art_assets_common.json", "type": "panel", "children": [ "title_image", "splash_text" ] }, "title_panel_win10/title_image": { "file": "ui/ui_art_assets_common.json", "type": "image", "extend": { "name": "title_image", "namespace": "common_art" } }, "title_panel_win10/splash_text": { "file": "ui/ui_art_assets_common.json", "type": "custom", "extend": { "name": "splash_text", "namespace": "common_art" } }, "title_panel_osx": { "file": "ui/ui_art_assets_common.json", "type": "panel", "children": [ "title_image", "splash_text" ] }, "title_panel_osx/title_image": { "file": "ui/ui_art_assets_common.json", "type": "image", "extend": { "name": "title_image", "namespace": "common_art" } }, "title_panel_osx/splash_text": { "file": "ui/ui_art_assets_common.json", "type": "custom", "extend": { "name": "splash_text", "namespace": "common_art" } }, "title_panel_edu_desktop": { "file": "ui/ui_art_assets_common.json", "type": "panel", "children": [ "banner_control", "title_control" ] }, "title_panel_edu_desktop/banner_control": { "file": "ui/ui_art_assets_common.json", "type": "panel", "children": [ "banner", "drop_shadow" ] }, "title_panel_edu_desktop/banner_control/banner": { "file": "ui/ui_art_assets_common.json", "type": "image" }, "title_panel_edu_desktop/banner_control/drop_shadow": { "file": "ui/ui_art_assets_common.json", "type": "image" }, "title_panel_edu_desktop/title_control": { "file": "ui/ui_art_assets_common.json", "type": "panel", "children": [ "title_image_edu", "splash_text" ] }, "title_panel_edu_desktop/title_control/title_image_edu": { "file": "ui/ui_art_assets_common.json", "type": "image", "extend": { "name": "title_image_edu", "namespace": "common_art" } }, "title_panel_edu_desktop/title_control/splash_text": { "file": "ui/ui_art_assets_common.json", "type": "custom", "extend": { "name": "splash_text", "namespace": "common_art" } }, "title_panel_edu_mobile": { "file": "ui/ui_art_assets_common.json", "type": "panel", "children": [ "title_control" ] }, "title_panel_edu_mobile/title_control": { "file": "ui/ui_art_assets_common.json", "type": "panel", "children": [ "title_image_edu", "splash_text" ] }, "title_panel_edu_mobile/title_control/title_image_edu": { "file": "ui/ui_art_assets_common.json", "type": "image", "extend": { "name": "title_image_edu", "namespace": "common_art" } }, "title_panel_edu_mobile/title_control/splash_text": { "file": "ui/ui_art_assets_common.json", "type": "custom", "extend": { "name": "splash_text", "namespace": "common_art" } }, "title_panel_content": { "file": "ui/ui_art_assets_common.json", "type": "panel" }, "start_title_panel_content": { "file": "ui/ui_art_assets_common.json", "type": "panel" }, "pause_logo_panel": { "file": "ui/ui_art_assets_common.json", "type": "input_panel", "children": [ "logo" ] }, "pause_logo_panel/logo": { "file": "ui/ui_art_assets_common.json", "type": "unknown" } }, "common": { "empty_panel": { "file": "ui/ui_common.json", "type": "panel" }, "vertical_padding_8px": { "file": "ui/ui_common.json", "type": "panel" }, "horizontal_padding_2px": { "file": "ui/ui_common.json", "type": "panel" }, "empty_image": { "file": "ui/ui_common.json", "type": "image" }, "horizontal_stack_panel": { "file": "ui/ui_common.json", "type": "stack_panel" }, "vertical_stack_panel": { "file": "ui/ui_common.json", "type": "stack_panel" }, "vert_stack_centering_panel": { "file": "ui/ui_common.json", "type": "panel", "children": [ "stack_content" ] }, "vert_stack_centering_panel/stack_content": { "file": "ui/ui_common.json", "type": "unknown" }, "button": { "file": "ui/ui_common.json", "type": "button" }, "screen_header_title_panel": { "file": "ui/ui_common.json", "type": "panel", "children": [ "store_header_title" ] }, "screen_header_title_panel/store_header_title": { "file": "ui/ui_common.json", "type": "label" }, "back_button": { "file": "ui/ui_common.json", "type": "button", "extend": { "name": "no_background_content_button", "namespace": "common_buttons" } }, "back_title_button": { "file": "ui/ui_common.json", "type": "stack_panel", "children": [ "panel1", "padding1", "panel2" ] }, "back_title_button/panel1": { "file": "ui/ui_common.json", "type": "panel", "children": [ "button" ] }, "back_title_button/panel1/button": { "file": "ui/ui_common.json", "type": "button", "extend": { "name": "back_button", "namespace": "common" } }, "back_title_button/padding1": { "file": "ui/ui_common.json", "type": "panel" }, "back_title_button/panel2": { "file": "ui/ui_common.json", "type": "panel", "children": [ "label" ] }, "back_title_button/panel2/label": { "file": "ui/ui_common.json", "type": "label" }, "chevron_image": { "file": "ui/ui_common.json", "type": "image" }, "back_button_content": { "file": "ui/ui_common.json", "type": "stack_panel", "children": [ "chevron_panel", "padding1", "label_panel" ] }, "back_button_content/chevron_panel": { "file": "ui/ui_common.json", "type": "panel", "children": [ "left_chevron" ] }, "back_button_content/chevron_panel/left_chevron": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "chevron_image", "namespace": "common" } }, "back_button_content/padding1": { "file": "ui/ui_common.json", "type": "panel" }, "back_button_content/label_panel": { "file": "ui/ui_common.json", "type": "panel", "children": [ "label" ] }, "back_button_content/label_panel/label": { "file": "ui/ui_common.json", "type": "label", "extend": { "name": "new_ui_binding_button_label", "namespace": "common_buttons" } }, "label_hover": { "file": "ui/ui_common.json", "type": "panel", "children": [ "hover" ] }, "label_hover/hover": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "focus_border_white", "namespace": "common" } }, "tts_activate_sibling": { "file": "ui/ui_common.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "pressed", "hover" ] }, "tts_activate_sibling/default": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "tts_activate_sibling/pressed": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "label_hover", "namespace": "common" } }, "tts_activate_sibling/hover": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "label_hover", "namespace": "common" } }, "back_title_button_content": { "file": "ui/ui_common.json", "type": "stack_panel", "children": [ "padding1", "chevron_panel", "padding2" ] }, "back_title_button_content/padding1": { "file": "ui/ui_common.json", "type": "panel" }, "back_title_button_content/chevron_panel": { "file": "ui/ui_common.json", "type": "panel", "children": [ "left_chevron" ] }, "back_title_button_content/chevron_panel/left_chevron": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "chevron_image", "namespace": "common" } }, "back_title_button_content/padding2": { "file": "ui/ui_common.json", "type": "panel" }, "toggle_visuals": { "file": "ui/ui_common.json", "type": "panel", "children": [ "unchecked", "checked", "unchecked_hover", "checked_hover", "unchecked_locked", "checked_locked", "unchecked_locked_hover", "checked_locked_hover" ] }, "toggle_visuals/unchecked": { "file": "ui/ui_common.json", "type": "unknown" }, "toggle_visuals/checked": { "file": "ui/ui_common.json", "type": "unknown" }, "toggle_visuals/unchecked_hover": { "file": "ui/ui_common.json", "type": "unknown" }, "toggle_visuals/checked_hover": { "file": "ui/ui_common.json", "type": "unknown" }, "toggle_visuals/unchecked_locked": { "file": "ui/ui_common.json", "type": "unknown" }, "toggle_visuals/checked_locked": { "file": "ui/ui_common.json", "type": "unknown" }, "toggle_visuals/unchecked_locked_hover": { "file": "ui/ui_common.json", "type": "unknown" }, "toggle_visuals/checked_locked_hover": { "file": "ui/ui_common.json", "type": "unknown" }, "toggle": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "toggle_visuals", "namespace": "common" } }, "radio_toggle": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "toggle", "namespace": "common" } }, "checkbox": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "toggle", "namespace": "common" } }, "checkbox_image": { "file": "ui/ui_common.json", "type": "image" }, "checked_image": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "checkbox_image", "namespace": "common" } }, "unchecked_image": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "checkbox_image", "namespace": "common" } }, "checked_hover_image": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "checkbox_image", "namespace": "common" } }, "unchecked_hover_image": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "checkbox_image", "namespace": "common" } }, "rotating_text": { "file": "ui/ui_common.json", "type": "carousel_label" }, "button_text": { "file": "ui/ui_common.json", "type": "label" }, "toggle_state_template": { "file": "ui/ui_common.json", "type": "image" }, "new_button_label": { "file": "ui/ui_common.json", "type": "label" }, "checkbox_checked_state": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "toggle_state_template", "namespace": "common" } }, "checkbox_unchecked_state": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "toggle_state_template", "namespace": "common" } }, "checkbox_checked_hover_state": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "checkbox_checked_state", "namespace": "common" } }, "checkbox_unchecked_hover_state": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "checkbox_unchecked_state", "namespace": "common" } }, "checkbox_checked_locked_state": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "checkbox_checked_state", "namespace": "common" } }, "checkbox_unchecked_locked_state": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "toggle_state_template", "namespace": "common" } }, "radio_toggle_checked_state": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "checkbox_unchecked_state", "namespace": "common" } }, "radio_toggle_unchecked_state": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "checkbox_unchecked_state", "namespace": "common" } }, "radio_toggle_checked_hover_state": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "toggle_state_template", "namespace": "common" } }, "radio_toggle_unchecked_hover_state": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "checkbox_unchecked_hover_state", "namespace": "common" } }, "radio_toggle_checked_locked_state": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "toggle_state_template", "namespace": "common" } }, "radio_toggle_unchecked_locked_state": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "checkbox_unchecked_locked_state", "namespace": "common" } }, "slider_button_state": { "file": "ui/ui_common.json", "type": "image" }, "slider_button_layout": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "slider_button_state", "namespace": "common" } }, "slider_button_hover_layout": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "slider_button_state", "namespace": "common" } }, "slider_button_locked_layout": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "slider_button_state", "namespace": "common" } }, "slider_button_indent_layout": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "slider_button_state", "namespace": "common" } }, "slider_box": { "file": "ui/ui_common.json", "type": "slider_box", "children": [ "default", "hover", "indent", "locked" ] }, "slider_box/default": { "file": "ui/ui_common.json", "type": "unknown" }, "slider_box/hover": { "file": "ui/ui_common.json", "type": "unknown" }, "slider_box/indent": { "file": "ui/ui_common.json", "type": "unknown" }, "slider_box/locked": { "file": "ui/ui_common.json", "type": "unknown", "children": [ "transparent_grey" ] }, "slider_box/locked/transparent_grey": { "file": "ui/ui_common.json", "type": "image" }, "slider_background": { "file": "ui/ui_common.json", "type": "image" }, "slider_background_hover": { "file": "ui/ui_common.json", "type": "image" }, "slider_progress": { "file": "ui/ui_common.json", "type": "image" }, "slider_progress_hover": { "file": "ui/ui_common.json", "type": "image" }, "slider_border": { "file": "ui/ui_common.json", "type": "image" }, "slider_bar_default": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "slider_border", "namespace": "common" }, "children": [ "sizing_panel", "transparent_grey" ] }, "slider_bar_default/sizing_panel": { "file": "ui/ui_common.json", "type": "panel" }, "slider_bar_default/transparent_grey": { "file": "ui/ui_common.json", "type": "image" }, "slider_bar_hover": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "slider_bar_default", "namespace": "common" } }, "slider_step": { "file": "ui/ui_common.json", "type": "image" }, "slider_step_hover": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "slider_step", "namespace": "common" } }, "slider_step_progress": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "slider_step", "namespace": "common" } }, "slider_step_progress_hover": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "slider_step", "namespace": "common" } }, "slider": { "file": "ui/ui_common.json", "type": "slider", "children": [ "slider_box", "slider_bar_default", "slider_bar_hover" ] }, "slider/slider_box": { "file": "ui/ui_common.json", "type": "slider_box", "extend": { "name": "slider_box", "namespace": "common" } }, "slider/slider_bar_default": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "slider_bar_default", "namespace": "common" } }, "slider/slider_bar_hover": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "slider_bar_hover", "namespace": "common" } }, "dropdown_background": { "file": "ui/ui_common.json", "type": "image" }, "dropdown": { "file": "ui/ui_common.json", "type": "panel", "children": [ "dropdown_content" ] }, "dropdown/dropdown_content": { "file": "ui/ui_common.json", "type": "input_panel", "children": [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ] }, "dropdown/dropdown_content/0": { "file": "ui/ui_common.json", "type": "unknown" }, "dropdown_no_scrollpanel": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "dropdown", "namespace": "common" } }, "square_image_border_white": { "file": "ui/ui_common.json", "type": "image" }, "focus_border_white": { "file": "ui/ui_common.json", "type": "image" }, "focus_border_yellow": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "focus_border_white", "namespace": "common" } }, "focus_border_black": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "focus_border_white", "namespace": "common" } }, "non_interact_focus_border": { "file": "ui/ui_common.json", "type": "image" }, "non_interact_focus_border_button": { "file": "ui/ui_common.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed", "content" ] }, "non_interact_focus_border_button/default": { "file": "ui/ui_common.json", "type": "unknown" }, "non_interact_focus_border_button/hover": { "file": "ui/ui_common.json", "type": "unknown" }, "non_interact_focus_border_button/pressed": { "file": "ui/ui_common.json", "type": "unknown" }, "non_interact_focus_border_button/content": { "file": "ui/ui_common.json", "type": "unknown" }, "tts_label_focus_wrapper": { "file": "ui/ui_common.json", "type": "panel", "children": [ "label", "focus_border" ] }, "tts_label_focus_wrapper/label": { "file": "ui/ui_common.json", "type": "unknown" }, "tts_label_focus_wrapper/focus_border": { "file": "ui/ui_common.json", "type": "button", "extend": { "name": "non_interact_focus_border_button", "namespace": "common" } }, "default_indent": { "file": "ui/ui_common.json", "type": "image" }, "edit_box_indent": { "file": "ui/ui_common.json", "type": "image" }, "edit_box_indent_hover": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "edit_box_indent", "namespace": "common" } }, "transparent_edit_box_indent": { "file": "ui/ui_common.json", "type": "image" }, "transparent_edit_box_indent_hover": { "file": "ui/ui_common.json", "type": "image" }, "text_edit_box_label": { "file": "ui/ui_common.json", "type": "label" }, "text_edit_box_place_holder_label": { "file": "ui/ui_common.json", "type": "label" }, "text_magnifying_glass_image": { "file": "ui/ui_common.json", "type": "image" }, "text_close_X_button_image": { "file": "ui/ui_common.json", "type": "image" }, "text_close_X_button_image_hover": { "file": "ui/ui_common.json", "type": "image" }, "clear_text_button": { "file": "ui/ui_common.json", "type": "button", "children": [ "default", "hover", "pressed" ] }, "clear_text_button/default": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "text_close_X_button_image", "namespace": "common" } }, "clear_text_button/hover": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "text_close_X_button_image_hover", "namespace": "common" } }, "clear_text_button/pressed": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "text_close_X_button_image_hover", "namespace": "common" } }, "text_edit_box": { "file": "ui/ui_common.json", "type": "edit_box", "children": [ "centering_panel", "locked", "default", "hover", "pressed" ] }, "text_edit_box/centering_panel": { "file": "ui/ui_common.json", "type": "panel", "children": [ "clipper_panel" ] }, "text_edit_box/centering_panel/clipper_panel": { "file": "ui/ui_common.json", "type": "panel", "children": [ "magnifying_glass", "clear_text_button_panel", "visibility_panel" ] }, "text_edit_box/centering_panel/clipper_panel/magnifying_glass": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "text_magnifying_glass_image", "namespace": "common" } }, "text_edit_box/centering_panel/clipper_panel/clear_text_button_panel": { "file": "ui/ui_common.json", "type": "panel", "children": [ "clear_text_button" ] }, "text_edit_box/centering_panel/clipper_panel/clear_text_button_panel/clear_text_button": { "file": "ui/ui_common.json", "type": "button", "extend": { "name": "clear_text_button", "namespace": "common" } }, "text_edit_box/centering_panel/clipper_panel/visibility_panel": { "file": "ui/ui_common.json", "type": "panel", "children": [ "place_holder_control" ] }, "text_edit_box/centering_panel/clipper_panel/visibility_panel/place_holder_control": { "file": "ui/ui_common.json", "type": "unknown" }, "text_edit_box/locked": { "file": "ui/ui_common.json", "type": "panel", "children": [ "edit_box_indent" ] }, "text_edit_box/locked/edit_box_indent": { "file": "ui/ui_common.json", "type": "unknown" }, "text_edit_box/default": { "file": "ui/ui_common.json", "type": "unknown" }, "text_edit_box/hover": { "file": "ui/ui_common.json", "type": "unknown" }, "text_edit_box/pressed": { "file": "ui/ui_common.json", "type": "unknown" }, "text_edit_box_scrolling_content": { "file": "ui/ui_common.json", "type": "input_panel" }, "scrollable_text_edit_box": { "file": "ui/ui_common.json", "type": "edit_box", "extend": { "name": "text_edit_box", "namespace": "common" }, "children": [ "centering_panel", "locked", "default", "hover", "pressed" ] }, "scrollable_text_edit_box/centering_panel": { "file": "ui/ui_common.json", "type": "panel", "children": [ "clipper_panel" ] }, "scrollable_text_edit_box/centering_panel/clipper_panel": { "file": "ui/ui_common.json", "type": "panel", "children": [ "text_edit_text_control", "visibility_panel" ] }, "scrollable_text_edit_box/centering_panel/clipper_panel/text_edit_text_control": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "scrollable_text_edit_box/centering_panel/clipper_panel/visibility_panel": { "file": "ui/ui_common.json", "type": "panel", "children": [ "place_holder_control" ] }, "scrollable_text_edit_box/centering_panel/clipper_panel/visibility_panel/place_holder_control": { "file": "ui/ui_common.json", "type": "unknown" }, "scrollable_text_edit_box/locked": { "file": "ui/ui_common.json", "type": "panel", "children": [ "edit_box_indent" ] }, "scrollable_text_edit_box/locked/edit_box_indent": { "file": "ui/ui_common.json", "type": "unknown" }, "scrollable_text_edit_box/default": { "file": "ui/ui_common.json", "type": "unknown" }, "scrollable_text_edit_box/hover": { "file": "ui/ui_common.json", "type": "unknown" }, "scrollable_text_edit_box/pressed": { "file": "ui/ui_common.json", "type": "unknown" }, "transparent_text_edit_box": { "file": "ui/ui_common.json", "type": "edit_box", "children": [ "clipper_panel", "locked", "default", "hover", "pressed" ] }, "transparent_text_edit_box/clipper_panel": { "file": "ui/ui_common.json", "type": "panel", "children": [ "visibility_panel" ] }, "transparent_text_edit_box/clipper_panel/visibility_panel": { "file": "ui/ui_common.json", "type": "panel", "children": [ "place_holder_control" ] }, "transparent_text_edit_box/clipper_panel/visibility_panel/place_holder_control": { "file": "ui/ui_common.json", "type": "unknown" }, "transparent_text_edit_box/locked": { "file": "ui/ui_common.json", "type": "panel", "children": [ "edit_box_indent" ] }, "transparent_text_edit_box/locked/edit_box_indent": { "file": "ui/ui_common.json", "type": "unknown" }, "transparent_text_edit_box/default": { "file": "ui/ui_common.json", "type": "unknown" }, "transparent_text_edit_box/hover": { "file": "ui/ui_common.json", "type": "unknown" }, "transparent_text_edit_box/pressed": { "file": "ui/ui_common.json", "type": "unknown" }, "multiline_text_edit_box": { "file": "ui/ui_common.json", "type": "edit_box", "extend": { "name": "text_edit_box", "namespace": "common" } }, "scrollable_multiline_text_edit_box": { "file": "ui/ui_common.json", "type": "edit_box", "extend": { "name": "scrollable_text_edit_box", "namespace": "common" } }, "dirt_background": { "file": "ui/ui_common.json", "type": "image" }, "portal_background": { "file": "ui/ui_common.json", "type": "image" }, "empty_progress_bar": { "file": "ui/ui_common.json", "type": "image" }, "filled_progress_bar": { "file": "ui/ui_common.json", "type": "image" }, "empty_progress_bar_beveled": { "file": "ui/ui_common.json", "type": "image" }, "progress_bar_beveled_overlay": { "file": "ui/ui_common.json", "type": "image" }, "filled_progress_bar_for_collections": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "filled_progress_bar", "namespace": "common" } }, "progress_bar": { "file": "ui/ui_common.json", "type": "panel", "children": [ "empty_progress_bar", "filled_progress_bar" ] }, "progress_bar/empty_progress_bar": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "empty_progress_bar", "namespace": "common" } }, "progress_bar/filled_progress_bar": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "filled_progress_bar", "namespace": "common" } }, "progress_bar_for_collections": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "progress_bar", "namespace": "common" }, "children": [ "empty_progress_bar", "filled_progress_bar_for_collections" ] }, "progress_bar_for_collections/empty_progress_bar": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "empty_progress_bar", "namespace": "common" } }, "progress_bar_for_collections/filled_progress_bar_for_collections": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "filled_progress_bar_for_collections", "namespace": "common" } }, "horizontal_divider": { "file": "ui/ui_common.json", "type": "panel", "children": [ "divider_image" ] }, "horizontal_divider/divider_image": { "file": "ui/ui_common.json", "type": "image" }, "vertical_divider": { "file": "ui/ui_common.json", "type": "panel", "children": [ "divider_image" ] }, "vertical_divider/divider_image": { "file": "ui/ui_common.json", "type": "image" }, "underline": { "file": "ui/ui_common.json", "type": "image" }, "single_line_label": { "file": "ui/ui_common.json", "type": "panel", "children": [ "label_panel" ] }, "single_line_label/label_panel": { "file": "ui/ui_common.json", "type": "label", "children": [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ] }, "single_line_label/label_panel/0": { "file": "ui/ui_common.json", "type": "unknown" }, "gamepad_helper_icon_description": { "file": "ui/ui_common.json", "type": "label" }, "gamepad_helper_icon_image": { "file": "ui/ui_common.json", "type": "image" }, "keyboard_helper_icon_image": { "file": "ui/ui_common.json", "type": "image" }, "gamepad_helper": { "file": "ui/ui_common.json", "type": "stack_panel", "children": [ "icon_panel", "description_panel" ] }, "gamepad_helper/icon_panel": { "file": "ui/ui_common.json", "type": "panel" }, "gamepad_helper/description_panel": { "file": "ui/ui_common.json", "type": "panel", "children": [ "desc" ] }, "gamepad_helper/description_panel/desc": { "file": "ui/ui_common.json", "type": "unknown" }, "gamepad_helpers": { "file": "ui/ui_common.json", "type": "stack_panel" }, "gamepad_helpers_a_and_b": { "file": "ui/ui_common.json", "type": "stack_panel", "children": [ "gamepad_helper_a", "control", "gamepad_helper_b" ] }, "gamepad_helpers_a_and_b/gamepad_helper_a": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_a", "namespace": "common" } }, "gamepad_helpers_a_and_b/control": { "file": "ui/ui_common.json", "type": "panel" }, "gamepad_helpers_a_and_b/gamepad_helper_b": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_b", "namespace": "common" } }, "container_gamepad_helpers": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helpers", "namespace": "common" }, "children": [ "fill_panel", "buttons", "buffer_panel_right" ] }, "container_gamepad_helpers/fill_panel": { "file": "ui/ui_common.json", "type": "panel" }, "container_gamepad_helpers/buttons": { "file": "ui/ui_common.json", "type": "stack_panel", "children": [ "gamepad_helper_x", "gamepad_helper_a", "gamepad_helper_y", "gamepad_helper_b" ] }, "container_gamepad_helpers/buttons/gamepad_helper_x": { "file": "ui/ui_common.json", "type": "unknown" }, "container_gamepad_helpers/buttons/gamepad_helper_a": { "file": "ui/ui_common.json", "type": "unknown" }, "container_gamepad_helpers/buttons/gamepad_helper_y": { "file": "ui/ui_common.json", "type": "unknown" }, "container_gamepad_helpers/buttons/gamepad_helper_b": { "file": "ui/ui_common.json", "type": "unknown" }, "container_gamepad_helpers/buffer_panel_right": { "file": "ui/ui_common.json", "type": "panel" }, "container_gamepad_helpers_pocket": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "container_gamepad_helpers", "namespace": "common" } }, "gamepad_helper_bumpers": { "file": "ui/ui_common.json", "type": "panel", "children": [ "gamepad_helper_left_bumper", "gamepad_helper_right_bumper" ] }, "gamepad_helper_bumpers/gamepad_helper_left_bumper": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_left_bumper", "namespace": "common" } }, "gamepad_helper_bumpers/gamepad_helper_right_bumper": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_right_bumper", "namespace": "common" } }, "tabs_left_gamepad_helpers": { "file": "ui/ui_common.json", "type": "panel", "children": [ "gamepad_helper_left_bumper", "gamepad_helper_left_trigger" ] }, "tabs_left_gamepad_helpers/gamepad_helper_left_bumper": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_left_bumper", "namespace": "common" } }, "tabs_left_gamepad_helpers/gamepad_helper_left_trigger": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_left_trigger", "namespace": "common" } }, "tabs_right_gamepad_helpers": { "file": "ui/ui_common.json", "type": "panel", "children": [ "gamepad_helper_right_bumper", "gamepad_helper_right_trigger" ] }, "tabs_right_gamepad_helpers/gamepad_helper_right_bumper": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_right_bumper", "namespace": "common" } }, "tabs_right_gamepad_helpers/gamepad_helper_right_trigger": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_right_trigger", "namespace": "common" } }, "container_x_gamepad_helper": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_x_14", "namespace": "common" } }, "container_y_gamepad_helper": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_y_14", "namespace": "common" } }, "container_a_gamepad_helper": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_a_14", "namespace": "common" } }, "container_b_gamepad_helper": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_b_14", "namespace": "common" } }, "keyboard_helper_description": { "file": "ui/ui_common.json", "type": "label" }, "keyboard_helper": { "file": "ui/ui_common.json", "type": "stack_panel", "children": [ "image_centerer", "centerer" ] }, "keyboard_helper/image_centerer": { "file": "ui/ui_common.json", "type": "panel", "children": [ "image" ] }, "keyboard_helper/image_centerer/image": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "keyboard_helper_icon_image", "namespace": "common" }, "children": [ "keyboard_character" ] }, "keyboard_helper/image_centerer/image/keyboard_character": { "file": "ui/ui_common.json", "type": "label" }, "keyboard_helper/centerer": { "file": "ui/ui_common.json", "type": "panel", "children": [ "desc" ] }, "keyboard_helper/centerer/desc": { "file": "ui/ui_common.json", "type": "unknown" }, "keyboard_helpers": { "file": "ui/ui_common.json", "type": "panel" }, "gamepad_icon_button": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "gamepad_helper_icon_image", "namespace": "common" } }, "gamepad_helper_start": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper", "namespace": "common" } }, "gamepad_helper_a": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper", "namespace": "common" } }, "gamepad_helper_a_14": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper", "namespace": "common" } }, "gamepad_helper_b": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper", "namespace": "common" } }, "gamepad_helper_b_14": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper", "namespace": "common" } }, "gamepad_helper_x": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper", "namespace": "common" } }, "gamepad_helper_x_14": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper", "namespace": "common" } }, "gamepad_helper_y": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper", "namespace": "common" } }, "gamepad_helper_y_14": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper", "namespace": "common" } }, "keyboard_helper_keys": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "keyboard_helper", "namespace": "common" } }, "gamepad_helper_left_trigger": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper", "namespace": "common" } }, "gamepad_helper_right_trigger": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper", "namespace": "common" } }, "keyboard_left_trigger": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "keyboard_helper", "namespace": "common" } }, "keyboard_right_trigger": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "keyboard_helper", "namespace": "common" } }, "gamepad_icon_dpad": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "gamepad_helper_icon_image", "namespace": "common" } }, "gamepad_helper_dpad": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper", "namespace": "common" } }, "gamepad_helper_dpad_down": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper", "namespace": "common" } }, "gamepad_helper_dpad_left": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper", "namespace": "common" } }, "gamepad_helper_dpad_right": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper", "namespace": "common" } }, "gamepad_helper_dpad_up": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper", "namespace": "common" } }, "gamepad_icon_thumbstick": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "gamepad_helper_icon_image", "namespace": "common" } }, "gamepad_helper_thumbstick": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper", "namespace": "common" } }, "gamepad_helper_thumbstick_right": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper", "namespace": "common" } }, "gamepad_helper_thumbstick_left": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper", "namespace": "common" } }, "gamepad_helper_left_bumper": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper", "namespace": "common" } }, "gamepad_helper_right_bumper": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper", "namespace": "common" } }, "dialog_background_common": { "file": "ui/ui_common.json", "type": "image" }, "dialog_background_hollow_common": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "dialog_background_common", "namespace": "common" }, "children": [ "control" ] }, "dialog_background_hollow_common/control": { "file": "ui/ui_common.json", "type": "image" }, "dialog_background_opaque": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "dialog_background_common", "namespace": "common" } }, "dialog_background_hollow_1": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "dialog_background_hollow_common", "namespace": "common" } }, "dialog_background_hollow_2": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "dialog_background_hollow_common", "namespace": "common" } }, "dialog_background_hollow_3": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "dialog_background_hollow_common", "namespace": "common" } }, "dialog_background_hollow_4": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "dialog_background_hollow_common", "namespace": "common" } }, "dialog_background_hollow_4_thin": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "dialog_background_hollow_common", "namespace": "common" } }, "dialog_background_hollow_5": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "dialog_background_hollow_common", "namespace": "common" } }, "dialog_background_hollow_6": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "dialog_background_hollow_common", "namespace": "common" } }, "dialog_background_hollow_7": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "dialog_background_hollow_common", "namespace": "common" } }, "dialog_background_hollow_8": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "dialog_background_hollow_common", "namespace": "common" } }, "dialog_divider": { "file": "ui/ui_common.json", "type": "image" }, "normal_button": { "file": "ui/ui_common.json", "type": "image" }, "normal_stroke_button": { "file": "ui/ui_common.json", "type": "image" }, "section_heading_label": { "file": "ui/ui_common.json", "type": "label" }, "center_fold": { "file": "ui/ui_common.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "center_bg" ] }, "center_fold/center_bg": { "file": "ui/ui_common.json", "type": "image" }, "section_divider": { "file": "ui/ui_common.json", "type": "stack_panel", "children": [ "padding1", "divider_parent", "padding2" ] }, "section_divider/padding1": { "file": "ui/ui_common.json", "type": "panel" }, "section_divider/divider_parent": { "file": "ui/ui_common.json", "type": "panel", "children": [ "divider" ] }, "section_divider/divider_parent/divider": { "file": "ui/ui_common.json", "type": "image" }, "section_divider/padding2": { "file": "ui/ui_common.json", "type": "panel" }, "minecraftTenLabel": { "file": "ui/ui_common.json", "type": "label" }, "close_button_image": { "file": "ui/ui_common.json", "type": "image" }, "close_button_panel": { "file": "ui/ui_common.json", "type": "panel", "children": [ "close_button_image" ] }, "close_button_panel/close_button_image": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "close_button_image", "namespace": "common" } }, "close_button": { "file": "ui/ui_common.json", "type": "button", "children": [ "default", "hover", "pressed" ] }, "close_button/default": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "close_button_panel", "namespace": "common" } }, "close_button/hover": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "close_button_panel", "namespace": "common" } }, "close_button/pressed": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "close_button_panel", "namespace": "common" } }, "close_button_grey_bg": { "file": "ui/ui_common.json", "type": "button", "extend": { "name": "close_button", "namespace": "common" }, "children": [ "default", "hover", "pressed" ] }, "close_button_grey_bg/default": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "close_button_panel", "namespace": "common" } }, "close_button_grey_bg/hover": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "close_button_panel", "namespace": "common" } }, "close_button_grey_bg/pressed": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "close_button_panel", "namespace": "common" } }, "close_button_high_contrast": { "file": "ui/ui_common.json", "type": "button", "extend": { "name": "close_button", "namespace": "common" }, "children": [ "background", "default", "hover", "pressed" ] }, "close_button_high_contrast/background": { "file": "ui/ui_common.json", "type": "image" }, "close_button_high_contrast/default": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "close_button_panel", "namespace": "common" } }, "close_button_high_contrast/hover": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "close_button_panel", "namespace": "common" } }, "close_button_high_contrast/pressed": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "close_button_panel", "namespace": "common" } }, "compact_close_button": { "file": "ui/ui_common.json", "type": "button", "extend": { "name": "close_button", "namespace": "common" }, "children": [ "default", "hover", "pressed" ] }, "compact_close_button/default": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "close_button_panel", "namespace": "common" } }, "compact_close_button/hover": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "close_button_panel", "namespace": "common" } }, "compact_close_button/pressed": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "close_button_panel", "namespace": "common" } }, "light_close_button": { "file": "ui/ui_common.json", "type": "button", "extend": { "name": "close_button", "namespace": "common" }, "children": [ "default", "hover", "pressed" ] }, "light_close_button/default": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "close_button_panel", "namespace": "common" } }, "light_close_button/hover": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "close_button_panel", "namespace": "common" } }, "light_close_button/pressed": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "close_button_panel", "namespace": "common" } }, "help_button": { "file": "ui/ui_common.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed" ] }, "help_button/default": { "file": "ui/ui_common.json", "type": "image" }, "help_button/hover": { "file": "ui/ui_common.json", "type": "image" }, "help_button/pressed": { "file": "ui/ui_common.json", "type": "image" }, "cell_image": { "file": "ui/ui_common.json", "type": "image" }, "cell_image_selected": { "file": "ui/ui_common.json", "type": "image" }, "cell_image_panel": { "file": "ui/ui_common.json", "type": "panel", "children": [ "cell_image", "cell_image_selected" ] }, "cell_image_panel/cell_image": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "cell_image", "namespace": "common" } }, "cell_image_panel/cell_image_selected": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "cell_image_selected", "namespace": "common" } }, "cell_overlay": { "file": "ui/ui_common.json", "type": "unknown" }, "highlight_slot": { "file": "ui/ui_common.json", "type": "image" }, "white_border_slot": { "file": "ui/ui_common.json", "type": "image" }, "progressive_select_progress_bar": { "file": "ui/ui_common.json", "type": "panel", "children": [ "stack_progress_bar_down" ] }, "progressive_select_progress_bar/stack_progress_bar_down": { "file": "ui/ui_common.json", "type": "image", "children": [ "progressive_select_progress_bar", "progressive_select_text" ] }, "progressive_select_progress_bar/stack_progress_bar_down/progressive_select_progress_bar": { "file": "ui/ui_common.json", "type": "image" }, "progressive_select_progress_bar/stack_progress_bar_down/progressive_select_text": { "file": "ui/ui_common.json", "type": "label" }, "stack_splitting_overlay": { "file": "ui/ui_common.json", "type": "panel", "children": [ "classic_stack_splitting_overlay", "pocket_stack_splitting_overlay" ] }, "stack_splitting_overlay/classic_stack_splitting_overlay": { "file": "ui/ui_common.json", "type": "panel", "children": [ "stack_splitting_bar" ] }, "stack_splitting_overlay/classic_stack_splitting_overlay/stack_splitting_bar": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "inventory_hold_icon_holding", "namespace": "common" } }, "stack_splitting_overlay/pocket_stack_splitting_overlay": { "file": "ui/ui_common.json", "type": "panel", "children": [ "stack_splitting_bar" ] }, "stack_splitting_overlay/pocket_stack_splitting_overlay/stack_splitting_bar": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "inventory_hold_icon_holding", "namespace": "common" } }, "inventory_hold_icon_holding": { "file": "ui/ui_common.json", "type": "panel", "children": [ "progressive_down", "progressive_up", "progressive_left_side", "progressive_right_side" ] }, "inventory_hold_icon_holding/progressive_down": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "progressive_select_progress_bar", "namespace": "common" } }, "inventory_hold_icon_holding/progressive_up": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "progressive_select_progress_bar", "namespace": "common" } }, "inventory_hold_icon_holding/progressive_left_side": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "progressive_select_progress_bar", "namespace": "common" } }, "inventory_hold_icon_holding/progressive_right_side": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "progressive_select_progress_bar", "namespace": "common" } }, "inventory_hold_icon_release": { "file": "ui/ui_common.json", "type": "custom" }, "highlight_slot_panel": { "file": "ui/ui_common.json", "type": "panel", "children": [ "highlight", "white_border" ] }, "highlight_slot_panel/highlight": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "highlight_slot", "namespace": "common" }, "children": [ "hover_text" ] }, "highlight_slot_panel/highlight/hover_text": { "file": "ui/ui_common.json", "type": "custom", "extend": { "name": "hover_text", "namespace": "common" } }, "highlight_slot_panel/white_border": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "white_border_slot", "namespace": "common" } }, "pocket_ui_highlight_slot": { "file": "ui/ui_common.json", "type": "image" }, "hover_text": { "file": "ui/ui_common.json", "type": "custom" }, "screen_background": { "file": "ui/ui_common.json", "type": "image" }, "stack_count_label": { "file": "ui/ui_common.json", "type": "label" }, "durability_bar": { "file": "ui/ui_common.json", "type": "custom" }, "durability_bar_grabbed": { "file": "ui/ui_common.json", "type": "custom", "extend": { "name": "durability_bar", "namespace": "common" } }, "storage_bar": { "file": "ui/ui_common.json", "type": "custom" }, "storage_bar_grabbed": { "file": "ui/ui_common.json", "type": "custom", "extend": { "name": "storage_bar", "namespace": "common" } }, "item_renderer": { "file": "ui/ui_common.json", "type": "custom" }, "filtered_item_renderer": { "file": "ui/ui_common.json", "type": "custom" }, "flying_item_renderer": { "file": "ui/ui_common.json", "type": "custom" }, "selected_item_details": { "file": "ui/ui_common.json", "type": "panel", "children": [ "item_panel_image" ] }, "selected_item_details/item_panel_image": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "item_panel_image", "namespace": "common" } }, "item_panel_image": { "file": "ui/ui_common.json", "type": "image", "children": [ "item_text_label" ] }, "item_panel_image/item_text_label": { "file": "ui/ui_common.json", "type": "label", "extend": { "name": "item_text_label", "namespace": "common" } }, "item_text_label": { "file": "ui/ui_common.json", "type": "label" }, "selected_item_details_factory": { "file": "ui/ui_common.json", "type": "factory" }, "item_lock_notification": { "file": "ui/ui_common.json", "type": "panel", "children": [ "notification_background_image" ] }, "item_lock_notification/notification_background_image": { "file": "ui/ui_common.json", "type": "image", "children": [ "notification_text_label" ] }, "item_lock_notification/notification_background_image/notification_text_label": { "file": "ui/ui_common.json", "type": "label" }, "item_lock_notification_factory": { "file": "ui/ui_common.json", "type": "factory" }, "layout_toggle_content": { "file": "ui/ui_common.json", "type": "panel", "children": [ "image", "icon" ] }, "layout_toggle_content/image": { "file": "ui/ui_common.json", "type": "unknown" }, "layout_toggle_content/icon": { "file": "ui/ui_common.json", "type": "unknown" }, "layout_template_toggle": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "light_template_toggle", "namespace": "common_toggles" } }, "layout_toggle": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "light_image_toggle", "namespace": "common_toggles" } }, "creative_layout_toggle": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "layout_toggle", "namespace": "common" } }, "recipe_book_layout_toggle": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "layout_toggle", "namespace": "common" } }, "survival_layout_toggle": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "layout_toggle", "namespace": "common" } }, "furnace_recipe_book_layout_toggle": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "layout_toggle", "namespace": "common" } }, "furnace_survival_layout_toggle": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "layout_toggle", "namespace": "common" } }, "crafting_root_input_panel": { "file": "ui/ui_common.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" } }, "toolbar_background_image": { "file": "ui/ui_common.json", "type": "image" }, "empty_panel_size_y_0": { "file": "ui/ui_common.json", "type": "panel" }, "scroll_background_and_viewport": { "file": "ui/ui_common.json", "type": "panel", "children": [ "background", "scrolling_view_port" ] }, "scroll_background_and_viewport/background": { "file": "ui/ui_common.json", "type": "unknown" }, "scroll_background_and_viewport/scrolling_view_port": { "file": "ui/ui_common.json", "type": "panel", "children": [ "scrolling_content" ] }, "scroll_background_and_viewport/scrolling_view_port/scrolling_content": { "file": "ui/ui_common.json", "type": "unknown" }, "scroll_bar_and_track": { "file": "ui/ui_common.json", "type": "panel", "children": [ "stack_panel" ] }, "scroll_bar_and_track/stack_panel": { "file": "ui/ui_common.json", "type": "stack_panel", "children": [ "empty_panel_0", "panel", "empty_panel_1" ] }, "scroll_bar_and_track/stack_panel/empty_panel_0": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "scroll_bar_and_track/stack_panel/panel": { "file": "ui/ui_common.json", "type": "panel", "children": [ "centered_panel" ] }, "scroll_bar_and_track/stack_panel/panel/centered_panel": { "file": "ui/ui_common.json", "type": "panel", "children": [ "track", "scroll_box" ] }, "scroll_bar_and_track/stack_panel/panel/centered_panel/track": { "file": "ui/ui_common.json", "type": "scroll_track", "extend": { "name": "scrollbar_track", "namespace": "common" } }, "scroll_bar_and_track/stack_panel/panel/centered_panel/scroll_box": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "scroll_box", "namespace": "common" } }, "scroll_bar_and_track/stack_panel/empty_panel_1": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "scroll_view_control": { "file": "ui/ui_common.json", "type": "scroll_view", "children": [ "stack_panel", "panel" ] }, "scroll_view_control/stack_panel": { "file": "ui/ui_common.json", "type": "stack_panel", "children": [ "background_and_viewport", "bar_and_track" ] }, "scroll_view_control/stack_panel/background_and_viewport": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "scroll_background_and_viewport", "namespace": "common" } }, "scroll_view_control/stack_panel/bar_and_track": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "scroll_bar_and_track", "namespace": "common" } }, "scroll_view_control/panel": { "file": "ui/ui_common.json", "type": "panel", "children": [ "background_and_viewport", "bar_and_track" ] }, "scroll_view_control/panel/background_and_viewport": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "scroll_background_and_viewport", "namespace": "common" } }, "scroll_view_control/panel/bar_and_track": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "scroll_bar_and_track", "namespace": "common" } }, "scrollbar_track": { "file": "ui/ui_common.json", "type": "scroll_track", "children": [ "bar_indent" ] }, "scrollbar_track/bar_indent": { "file": "ui/ui_common.json", "type": "unknown" }, "scroll_box": { "file": "ui/ui_common.json", "type": "panel", "children": [ "box" ] }, "scroll_box/box": { "file": "ui/ui_common.json", "type": "scrollbar_box", "children": [ "mouse_box", "touch_box" ] }, "scroll_box/box/mouse_box": { "file": "ui/ui_common.json", "type": "unknown" }, "scroll_box/box/touch_box": { "file": "ui/ui_common.json", "type": "unknown" }, "scroll_box_indent": { "file": "ui/ui_common.json", "type": "image" }, "scrollbar_box_image": { "file": "ui/ui_common.json", "type": "image" }, "touch_scrollbar_box_image": { "file": "ui/ui_common.json", "type": "image" }, "new_touch_scrollbar_box_image": { "file": "ui/ui_common.json", "type": "image" }, "container_touch_scrollbar_box_image": { "file": "ui/ui_common.json", "type": "image" }, "scroll_indent_image": { "file": "ui/ui_common.json", "type": "image" }, "scrolling_panel_base": { "file": "ui/ui_common.json", "type": "input_panel" }, "scrolling_panel": { "file": "ui/ui_common.json", "type": "panel", "children": [ "scroll_touch", "scroll_mouse" ] }, "scrolling_panel/scroll_touch": { "file": "ui/ui_common.json", "type": "input_panel", "extend": { "name": "scrolling_panel_base", "namespace": "common" } }, "scrolling_panel/scroll_mouse": { "file": "ui/ui_common.json", "type": "input_panel", "extend": { "name": "scrolling_panel_base", "namespace": "common" } }, "scrolling_panel_with_offset": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "mapped_scroll_panel": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "container_scroll_panel", "namespace": "common" } }, "scroll_panel_pocket": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "mapped_scroll_panel", "namespace": "common" } }, "container_slot_button_prototype": { "file": "ui/ui_common.json", "type": "button", "children": [ "hover" ] }, "container_slot_button_prototype/hover": { "file": "ui/ui_common.json", "type": "unknown" }, "no_coalesce_container_slot_button": { "file": "ui/ui_common.json", "type": "button", "extend": { "name": "container_slot_button_prototype", "namespace": "common" } }, "pocket_ui_container_slot": { "file": "ui/ui_common.json", "type": "button", "children": [ "hover" ] }, "pocket_ui_container_slot/hover": { "file": "ui/ui_common.json", "type": "panel", "children": [ "highlight_square" ] }, "pocket_ui_container_slot/hover/highlight_square": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "pocket_ui_highlight_slot", "namespace": "common" } }, "slot_selected": { "file": "ui/ui_common.json", "type": "image", "children": [ "progress_bar_release" ] }, "slot_selected/progress_bar_release": { "file": "ui/ui_common.json", "type": "custom", "extend": { "name": "inventory_hold_icon_release", "namespace": "common" } }, "container_item": { "file": "ui/ui_common.json", "type": "input_panel", "children": [ "item_cell", "item_cell_overlay_ref", "item_selected_image", "item_button_ref", "container_item_lock_overlay", "item_lock_cell_image", "bundle_slot_panel" ] }, "container_item/item_cell": { "file": "ui/ui_common.json", "type": "panel", "children": [ "item", "durability_bar", "storage_bar" ] }, "container_item/item_cell/item": { "file": "ui/ui_common.json", "type": "panel", "children": [ "stack_count_label" ] }, "container_item/item_cell/item/stack_count_label": { "file": "ui/ui_common.json", "type": "label", "extend": { "name": "stack_count_label", "namespace": "common" } }, "container_item/item_cell/durability_bar": { "file": "ui/ui_common.json", "type": "custom", "extend": { "name": "durability_bar", "namespace": "common" } }, "container_item/item_cell/storage_bar": { "file": "ui/ui_common.json", "type": "custom", "extend": { "name": "storage_bar", "namespace": "common" } }, "container_item/item_cell_overlay_ref": { "file": "ui/ui_common.json", "type": "unknown" }, "container_item/item_selected_image": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "slot_selected", "namespace": "common" } }, "container_item/item_button_ref": { "file": "ui/ui_common.json", "type": "unknown" }, "container_item/container_item_lock_overlay": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "container_item_lock_overlay", "namespace": "common" } }, "container_item/item_lock_cell_image": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "item_lock_cell_image", "namespace": "common" } }, "container_item/bundle_slot_panel": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "bundle_slot_panel", "namespace": "gameplay" } }, "pocket_ui_container_item": { "file": "ui/ui_common.json", "type": "input_panel", "extend": { "name": "container_item", "namespace": "common" } }, "pocket_ui_large_container_item": { "file": "ui/ui_common.json", "type": "input_panel", "extend": { "name": "pocket_ui_container_item", "namespace": "common" } }, "container_item_lock_yellow": { "file": "ui/ui_common.json", "type": "image" }, "container_item_lock_red": { "file": "ui/ui_common.json", "type": "image" }, "container_item_lock_overlay": { "file": "ui/ui_common.json", "type": "panel", "children": [ "container_item_lock_yellow", "container_item_lock_red" ] }, "container_item_lock_overlay/container_item_lock_yellow": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "container_item_lock_yellow", "namespace": "common" } }, "container_item_lock_overlay/container_item_lock_red": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "container_item_lock_red", "namespace": "common" } }, "item_lock_cell_image": { "file": "ui/ui_common.json", "type": "image" }, "container_grid": { "file": "ui/ui_common.json", "type": "grid" }, "pocket_container_grid": { "file": "ui/ui_common.json", "type": "grid", "extend": { "name": "container_grid", "namespace": "common" } }, "container_scroll_box_image": { "file": "ui/ui_common.json", "type": "image" }, "container_scroll_bar_side_rails": { "file": "ui/ui_common.json", "type": "image" }, "container_scrollbar_track": { "file": "ui/ui_common.json", "type": "panel", "children": [ "rails" ] }, "container_scrollbar_track/rails": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "container_scroll_bar_side_rails", "namespace": "common" } }, "container_scroll_background_image": { "file": "ui/ui_common.json", "type": "image" }, "container_scroll_panel": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "scrolling_panel_with_offset", "namespace": "common" } }, "pocket_ui_highlight_selected_slot": { "file": "ui/ui_common.json", "type": "image" }, "pocket_hotbar_panel": { "file": "ui/ui_common.json", "type": "input_panel", "children": [ "bg", "hotbar_grid" ] }, "pocket_hotbar_panel/bg": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "pocket_hotbar_panel/hotbar_grid": { "file": "ui/ui_common.json", "type": "grid", "extend": { "name": "container_grid", "namespace": "common" } }, "drop_item_panel": { "file": "ui/ui_common.json", "type": "input_panel" }, "pocket_hotbar_and_content_panels": { "file": "ui/ui_common.json", "type": "stack_panel", "children": [ "pocket_content_panels", "hotbar_drop_item_panel" ] }, "pocket_hotbar_and_content_panels/pocket_content_panels": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "pocket_content_panels", "namespace": "common" } }, "pocket_hotbar_and_content_panels/hotbar_drop_item_panel": { "file": "ui/ui_common.json", "type": "input_panel", "extend": { "name": "drop_item_panel", "namespace": "common" }, "children": [ "pocket_hotbar_panel" ] }, "pocket_hotbar_and_content_panels/hotbar_drop_item_panel/pocket_hotbar_panel": { "file": "ui/ui_common.json", "type": "input_panel", "extend": { "name": "pocket_hotbar_panel", "namespace": "common" } }, "blank_pocket_content_panel": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "pocket_content_panels": { "file": "ui/ui_common.json", "type": "stack_panel", "children": [ "left_panel", "offset_panel", "right_panel" ] }, "pocket_content_panels/left_panel": { "file": "ui/ui_common.json", "type": "unknown" }, "pocket_content_panels/offset_panel": { "file": "ui/ui_common.json", "type": "input_panel", "extend": { "name": "root_panel", "namespace": "common" }, "children": [ "center_bg" ] }, "pocket_content_panels/offset_panel/center_bg": { "file": "ui/ui_common.json", "type": "image" }, "pocket_content_panels/right_panel": { "file": "ui/ui_common.json", "type": "unknown" }, "inventory_selected_icon": { "file": "ui/ui_common.json", "type": "custom", "extend": { "name": "item_renderer", "namespace": "common" } }, "inventory_selected_stack_size_text": { "file": "ui/ui_common.json", "type": "label" }, "inventory_hold_icon": { "file": "ui/ui_common.json", "type": "custom" }, "inventory_selected_item_lock_overlay": { "file": "ui/ui_common.json", "type": "panel", "children": [ "container_item_lock_yellow", "container_item_lock_red" ] }, "inventory_selected_item_lock_overlay/container_item_lock_yellow": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "container_item_lock_yellow", "namespace": "common" } }, "inventory_selected_item_lock_overlay/container_item_lock_red": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "container_item_lock_red", "namespace": "common" } }, "inventory_icon_panel": { "file": "ui/ui_common.json", "type": "panel", "children": [ "selected_item_icon", "selected_stack_size_text", "selected_item_lock_overlay", "hover_text" ] }, "inventory_icon_panel/selected_item_icon": { "file": "ui/ui_common.json", "type": "custom", "extend": { "name": "inventory_selected_icon", "namespace": "common" } }, "inventory_icon_panel/selected_stack_size_text": { "file": "ui/ui_common.json", "type": "label", "extend": { "name": "inventory_selected_stack_size_text", "namespace": "common" } }, "inventory_icon_panel/selected_item_lock_overlay": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "inventory_selected_item_lock_overlay", "namespace": "common" } }, "inventory_icon_panel/hover_text": { "file": "ui/ui_common.json", "type": "custom", "extend": { "name": "hover_text", "namespace": "common" } }, "inventory_selected_icon_button": { "file": "ui/ui_common.json", "type": "button", "children": [ "default", "pressed", "hover", "durability_bar_grabbed", "storage_bar_grabbed" ] }, "inventory_selected_icon_button/default": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "inventory_icon_panel", "namespace": "common" } }, "inventory_selected_icon_button/pressed": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "inventory_icon_panel", "namespace": "common" } }, "inventory_selected_icon_button/hover": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "inventory_icon_panel", "namespace": "common" } }, "inventory_selected_icon_button/durability_bar_grabbed": { "file": "ui/ui_common.json", "type": "custom", "extend": { "name": "durability_bar_grabbed", "namespace": "common" } }, "inventory_selected_icon_button/storage_bar_grabbed": { "file": "ui/ui_common.json", "type": "custom", "extend": { "name": "storage_bar_grabbed", "namespace": "common" } }, "inventory_take_progress_icon_button": { "file": "ui/ui_common.json", "type": "button", "children": [ "default", "pressed", "hover" ] }, "inventory_take_progress_icon_button/default": { "file": "ui/ui_common.json", "type": "custom", "extend": { "name": "inventory_hold_icon", "namespace": "common" } }, "inventory_take_progress_icon_button/pressed": { "file": "ui/ui_common.json", "type": "custom", "extend": { "name": "inventory_hold_icon", "namespace": "common" } }, "inventory_take_progress_icon_button/hover": { "file": "ui/ui_common.json", "type": "custom", "extend": { "name": "inventory_hold_icon", "namespace": "common" } }, "gamepad_cursor_image": { "file": "ui/ui_common.json", "type": "image" }, "gamepad_cursor_button": { "file": "ui/ui_common.json", "type": "button", "children": [ "default", "pressed", "hover" ] }, "gamepad_cursor_button/default": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "gamepad_cursor_image", "namespace": "common" } }, "gamepad_cursor_button/pressed": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "gamepad_cursor_image", "namespace": "common" } }, "gamepad_cursor_button/hover": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "gamepad_cursor_image", "namespace": "common" } }, "grid_item_for_inventory": { "file": "ui/ui_common.json", "type": "input_panel", "extend": { "name": "container_item", "namespace": "common" } }, "grid_item_for_hotbar": { "file": "ui/ui_common.json", "type": "input_panel", "extend": { "name": "container_item", "namespace": "common" } }, "hotbar_grid_template": { "file": "ui/ui_common.json", "type": "grid" }, "inventory_panel": { "file": "ui/ui_common.json", "type": "panel", "children": [ "inventory_grid" ] }, "inventory_panel/inventory_grid": { "file": "ui/ui_common.json", "type": "grid" }, "inventory_panel_bottom_half": { "file": "ui/ui_common.json", "type": "panel", "children": [ "inventory_panel" ] }, "inventory_panel_bottom_half/inventory_panel": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "inventory_panel", "namespace": "common" } }, "inventory_panel_bottom_half_with_label": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "inventory_panel_bottom_half", "namespace": "common" }, "children": [ "inventory_panel", "inventory_label" ] }, "inventory_panel_bottom_half_with_label/inventory_panel": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "inventory_panel", "namespace": "common" } }, "inventory_panel_bottom_half_with_label/inventory_label": { "file": "ui/ui_common.json", "type": "label", "extend": { "name": "section_heading_label", "namespace": "common" } }, "common_panel": { "file": "ui/ui_common.json", "type": "panel", "children": [ "bg_image", "dialog_divider", "close_button_holder" ] }, "common_panel/bg_image": { "file": "ui/ui_common.json", "type": "unknown" }, "common_panel/dialog_divider": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "dialog_divider", "namespace": "common" } }, "common_panel/close_button_holder": { "file": "ui/ui_common.json", "type": "panel", "children": [ "close", "compact_close" ] }, "common_panel/close_button_holder/close": { "file": "ui/ui_common.json", "type": "button", "extend": { "name": "close_button", "namespace": "common" } }, "common_panel/close_button_holder/compact_close": { "file": "ui/ui_common.json", "type": "button", "extend": { "name": "compact_close_button", "namespace": "common" } }, "root_panel": { "file": "ui/ui_common.json", "type": "input_panel" }, "input_panel": { "file": "ui/ui_common.json", "type": "input_panel" }, "base_screen": { "file": "ui/ui_common.json", "type": "screen", "children": [ "variables_button_mappings_and_controls", "loading_bars_background" ] }, "base_screen/variables_button_mappings_and_controls": { "file": "ui/ui_common.json", "type": "input_panel", "children": [ "bg_no_safezone_screen_panel", "safezone_screen_matrix", "screen_background" ] }, "base_screen/variables_button_mappings_and_controls/bg_no_safezone_screen_panel": { "file": "ui/ui_common.json", "type": "unknown" }, "base_screen/variables_button_mappings_and_controls/safezone_screen_matrix": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "safezone_outer_matrix", "namespace": "common" } }, "base_screen/variables_button_mappings_and_controls/screen_background": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "full_screen_background", "namespace": "common_dialogs" } }, "base_screen/loading_bars_background": { "file": "ui/ui_common.json", "type": "image", "children": [ "loading_bars" ] }, "base_screen/loading_bars_background/loading_bars": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "progress_loading_bars", "namespace": "common_store" } }, "render_below_base_screen": { "file": "ui/ui_common.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "safezone_buffer": { "file": "ui/ui_common.json", "type": "panel" }, "top_safezone_vertical_buffer": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "safezone_buffer", "namespace": "common" } }, "bottom_safezone_vertical_buffer": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "safezone_buffer", "namespace": "common" } }, "left_safezone_horizontal_buffer": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "safezone_buffer", "namespace": "common" } }, "right_safezone_horizontal_buffer": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "safezone_buffer", "namespace": "common" } }, "safe_zone_stack": { "file": "ui/ui_common.json", "type": "stack_panel", "children": [ "top_outer_control", "top_inner_control", "header_bar" ] }, "safe_zone_stack/top_outer_control": { "file": "ui/ui_common.json", "type": "unknown" }, "safe_zone_stack/top_inner_control": { "file": "ui/ui_common.json", "type": "unknown" }, "safe_zone_stack/header_bar": { "file": "ui/ui_common.json", "type": "unknown" }, "safezone_inner_matrix": { "file": "ui/ui_common.json", "type": "stack_panel", "children": [ "outer_top", "inner_top", "safezone_screen_panel", "inner_bottom", "outer_bottom" ] }, "safezone_inner_matrix/outer_top": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "top_safezone_vertical_buffer", "namespace": "common" }, "children": [ "top_side_control" ] }, "safezone_inner_matrix/outer_top/top_side_control": { "file": "ui/ui_common.json", "type": "unknown" }, "safezone_inner_matrix/inner_top": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "top_safezone_vertical_buffer", "namespace": "common" }, "children": [ "top_side_control" ] }, "safezone_inner_matrix/inner_top/top_side_control": { "file": "ui/ui_common.json", "type": "unknown" }, "safezone_inner_matrix/safezone_screen_panel": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "screen_panel", "namespace": "common" } }, "safezone_inner_matrix/inner_bottom": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "bottom_safezone_vertical_buffer", "namespace": "common" } }, "safezone_inner_matrix/outer_bottom": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "bottom_safezone_vertical_buffer", "namespace": "common" } }, "safezone_outer_matrix": { "file": "ui/ui_common.json", "type": "stack_panel", "children": [ "outer_left", "inner_left", "inner_matrix", "inner_right", "outer_right" ] }, "safezone_outer_matrix/outer_left": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "left_safezone_horizontal_buffer", "namespace": "common" }, "children": [ "outer_left_safe_zone_stack" ] }, "safezone_outer_matrix/outer_left/outer_left_safe_zone_stack": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "safe_zone_stack", "namespace": "common" } }, "safezone_outer_matrix/inner_left": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "left_safezone_horizontal_buffer", "namespace": "common" }, "children": [ "inner_left_safe_zone_stack" ] }, "safezone_outer_matrix/inner_left/inner_left_safe_zone_stack": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "safe_zone_stack", "namespace": "common" } }, "safezone_outer_matrix/inner_matrix": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "safezone_inner_matrix", "namespace": "common" } }, "safezone_outer_matrix/inner_right": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "right_safezone_horizontal_buffer", "namespace": "common" }, "children": [ "inner_right_safe_zone_stack" ] }, "safezone_outer_matrix/inner_right/inner_right_safe_zone_stack": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "safe_zone_stack", "namespace": "common" } }, "safezone_outer_matrix/outer_right": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "right_safezone_horizontal_buffer", "namespace": "common" }, "children": [ "outer_right_safe_zone_stack" ] }, "safezone_outer_matrix/outer_right/outer_right_safe_zone_stack": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "safe_zone_stack", "namespace": "common" } }, "bundle_tooltip_wrapper": { "file": "ui/ui_common.json", "type": "panel", "children": [ "bundle_tooltip_factory_wrapper", "bundle_touch_tooltip" ] }, "bundle_tooltip_wrapper/bundle_tooltip_factory_wrapper": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "bundle_tooltip_factory_wrapper", "namespace": "gameplay" } }, "bundle_tooltip_wrapper/bundle_touch_tooltip": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "bundle_touch_tooltip", "namespace": "gameplay" } }, "screen_panel": { "file": "ui/ui_common.json", "type": "panel", "children": [ "root_screen_panel", "additional_screen_content", "popup_dialog_factory", "bundle_hover_tooltip" ] }, "screen_panel/root_screen_panel": { "file": "ui/ui_common.json", "type": "unknown" }, "screen_panel/additional_screen_content": { "file": "ui/ui_common.json", "type": "unknown" }, "screen_panel/popup_dialog_factory": { "file": "ui/ui_common.json", "type": "factory" }, "screen_panel/bundle_hover_tooltip": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "bundle_tooltip_wrapper", "namespace": "common" } }, "base_screen_empty_panel": { "file": "ui/ui_common.json", "type": "panel" }, "modal_screen": { "file": "ui/ui_common.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "realms_error_modal_screen": { "file": "ui/ui_common.json", "type": "screen", "extend": { "name": "modal_screen", "namespace": "common" } }, "modal_area_panel_base": { "file": "ui/ui_common.json", "type": "input_panel" }, "inactive_modal_pane_fade": { "file": "ui/ui_common.json", "type": "image" }, "inventory_screen_common": { "file": "ui/ui_common.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "fullscreen_header": { "file": "ui/ui_common.json", "type": "stack_panel", "children": [ "top_bar", "child_control" ] }, "fullscreen_header/top_bar": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "top_bar", "namespace": "common" }, "children": [ "title_stack_panel" ] }, "fullscreen_header/top_bar/title_stack_panel": { "file": "ui/ui_common.json", "type": "stack_panel", "children": [ "padding1", "back_button_content_panel", "padding2" ] }, "fullscreen_header/top_bar/title_stack_panel/padding1": { "file": "ui/ui_common.json", "type": "panel" }, "fullscreen_header/top_bar/title_stack_panel/back_button_content_panel": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "back_content_panel", "namespace": "common" } }, "fullscreen_header/top_bar/title_stack_panel/padding2": { "file": "ui/ui_common.json", "type": "panel" }, "fullscreen_header/child_control": { "file": "ui/ui_common.json", "type": "unknown" }, "back_content_panel": { "file": "ui/ui_common.json", "type": "panel", "children": [ "back_button" ] }, "back_content_panel/back_button": { "file": "ui/ui_common.json", "type": "stack_panel", "extend": { "name": "back_title_button", "namespace": "common" } }, "top_bar": { "file": "ui/ui_common.json", "type": "image" }, "tooltip_background": { "file": "ui/ui_common.json", "type": "image" }, "tooltip_button_content": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "tooltip_background", "namespace": "common" }, "children": [ "tooltip_panel_content" ] }, "tooltip_button_content/tooltip_panel_content": { "file": "ui/ui_common.json", "type": "unknown" }, "static_tooltip_popup_with_image_and_text": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "tooltip_background", "namespace": "common" }, "children": [ "image_and_text_stack_panel", "tooltip_chevron" ] }, "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel": { "file": "ui/ui_common.json", "type": "stack_panel", "children": [ "tooltip_text_image_panel", "padding", "tooltip_text" ] }, "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel": { "file": "ui/ui_common.json", "type": "panel", "children": [ "tooltip_image_panel" ] }, "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel": { "file": "ui/ui_common.json", "type": "panel", "children": [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ] }, "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel/0": { "file": "ui/ui_common.json", "type": "unknown" }, "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/padding": { "file": "ui/ui_common.json", "type": "panel" }, "static_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text": { "file": "ui/ui_common.json", "type": "label" }, "static_tooltip_popup_with_image_and_text/tooltip_chevron": { "file": "ui/ui_common.json", "type": "image" }, "dynamic_tooltip_popup_with_custom_content": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "tooltip_background", "namespace": "common" }, "children": [ "tooltip_content", "tooltip_chevron" ] }, "dynamic_tooltip_popup_with_custom_content/tooltip_content": { "file": "ui/ui_common.json", "type": "unknown" }, "dynamic_tooltip_popup_with_custom_content/tooltip_chevron": { "file": "ui/ui_common.json", "type": "image" }, "dynamic_tooltip_popup_with_image_and_text": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "tooltip_background", "namespace": "common" }, "children": [ "image_and_text_stack_panel", "tooltip_chevron" ] }, "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel": { "file": "ui/ui_common.json", "type": "stack_panel", "children": [ "tooltip_text_image_panel", "padding", "tooltip_text" ] }, "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel": { "file": "ui/ui_common.json", "type": "panel", "children": [ "tooltip_image_panel" ] }, "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel": { "file": "ui/ui_common.json", "type": "panel", "children": [ "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0", "0" ] }, "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text_image_panel/tooltip_image_panel/0": { "file": "ui/ui_common.json", "type": "unknown" }, "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/padding": { "file": "ui/ui_common.json", "type": "panel" }, "dynamic_tooltip_popup_with_image_and_text/image_and_text_stack_panel/tooltip_text": { "file": "ui/ui_common.json", "type": "label" }, "dynamic_tooltip_popup_with_image_and_text/tooltip_chevron": { "file": "ui/ui_common.json", "type": "image" }, "dynamic_tooltip_left": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "dynamic_tooltip_popup_with_image_and_text", "namespace": "common" } }, "dynamic_tooltip_below": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "dynamic_tooltip_popup_with_image_and_text", "namespace": "common" } }, "dynamic_custom_tooltip_below": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "dynamic_tooltip_popup_with_custom_content", "namespace": "common" } }, "dynamic_tooltip": { "file": "ui/ui_common.json", "type": "panel", "children": [ "above", "below" ] }, "dynamic_tooltip/above": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "content" ] }, "dynamic_tooltip/above/content": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "dynamic_tooltip_popup_with_image_and_text", "namespace": "common" } }, "dynamic_tooltip/below": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "content" ] }, "dynamic_tooltip/below/content": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "dynamic_tooltip_below", "namespace": "common" } }, "legacy_pocket_close_button_default": { "file": "ui/ui_common.json", "type": "image" }, "legacy_pocket_close_button_pressed": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "legacy_pocket_close_button_default", "namespace": "common" } }, "legacy_pocket_close_button": { "file": "ui/ui_common.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed" ] }, "legacy_pocket_close_button/default": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "legacy_pocket_close_button_default", "namespace": "common" } }, "legacy_pocket_close_button/hover": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "legacy_pocket_close_button_default", "namespace": "common" } }, "legacy_pocket_close_button/pressed": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "legacy_pocket_close_button_pressed", "namespace": "common" } }, "info_icon": { "file": "ui/ui_common.json", "type": "image" }, "error_glyph": { "file": "ui/ui_common.json", "type": "image" }, "creative_icon": { "file": "ui/ui_common.json", "type": "image" }, "inventory_icon": { "file": "ui/ui_common.json", "type": "image" }, "recipe_book_icon": { "file": "ui/ui_common.json", "type": "image" }, "tab_icon_image": { "file": "ui/ui_common.json", "type": "image" }, "search_icon": { "file": "ui/ui_common.json", "type": "image", "extend": { "name": "tab_icon_image", "namespace": "common" } }, "service_repo_image_panel": { "file": "ui/ui_common.json", "type": "panel", "children": [ "service_repo_image", "progress_loading" ] }, "service_repo_image_panel/service_repo_image": { "file": "ui/ui_common.json", "type": "image" }, "service_repo_image_panel/progress_loading": { "file": "ui/ui_common.json", "type": "panel", "extend": { "name": "progress_loading", "namespace": "common_store" } }, "common_cycler": { "file": "ui/ui_common.json", "type": "unknown" }, "image_cycler": { "file": "ui/ui_common.json", "type": "image_cycler", "extend": { "name": "common_cycler", "namespace": "common" } }, "text_cycler": { "file": "ui/ui_common.json", "type": "label_cycler", "extend": { "name": "common_cycler", "namespace": "common" } }, "squaring_panel": { "file": "ui/ui_common.json", "type": "panel", "children": [ "squaring_panel" ] }, "squaring_panel/squaring_panel": { "file": "ui/ui_common.json", "type": "panel", "children": [ "squaring_panel_content" ] }, "squaring_panel/squaring_panel/squaring_panel_content": { "file": "ui/ui_common.json", "type": "unknown" } }, "common-classic": { "button": { "file": "ui/ui_common_classic.json", "type": "button" }, "button_state_default": { "file": "ui/ui_common_classic.json", "type": "image" }, "button_state_hover": { "file": "ui/ui_common_classic.json", "type": "image", "extend": { "name": "button_state_default", "namespace": "common-classic" } }, "button_state_pressed": { "file": "ui/ui_common_classic.json", "type": "image", "extend": { "name": "button_state_default", "namespace": "common-classic" } }, "toggle": { "file": "ui/ui_common_classic.json", "type": "panel", "extend": { "name": "toggle", "namespace": "common" } }, "toggle_checked_state": { "file": "ui/ui_common_classic.json", "type": "image" }, "toggle_unchecked_state": { "file": "ui/ui_common_classic.json", "type": "image" }, "toggle_checked_hovered_state": { "file": "ui/ui_common_classic.json", "type": "panel", "children": [ "toggle_checked_state", "hover" ] }, "toggle_checked_hovered_state/toggle_checked_state": { "file": "ui/ui_common_classic.json", "type": "image", "extend": { "name": "toggle_checked_state", "namespace": "common-classic" } }, "toggle_checked_hovered_state/hover": { "file": "ui/ui_common_classic.json", "type": "image" }, "toggle_unchecked_hovered_state": { "file": "ui/ui_common_classic.json", "type": "panel", "children": [ "toggle_unchecked_state", "hover" ] }, "toggle_unchecked_hovered_state/toggle_unchecked_state": { "file": "ui/ui_common_classic.json", "type": "image", "extend": { "name": "toggle_unchecked_state", "namespace": "common-classic" } }, "toggle_unchecked_hovered_state/hover": { "file": "ui/ui_common_classic.json", "type": "image" } }, "edu_common": { "light_label": { "file": "ui/ui_edu_common.json", "type": "label" }, "dark_label": { "file": "ui/ui_edu_common.json", "type": "label" }, "readable_label": { "file": "ui/ui_edu_common.json", "type": "label" }, "slider_toggle": { "file": "ui/ui_edu_common.json", "type": "toggle", "extend": { "name": "option_toggle_control", "namespace": "settings_common" } }, "trash_default": { "file": "ui/ui_edu_common.json", "type": "image" }, "trash_hover": { "file": "ui/ui_edu_common.json", "type": "image" }, "trash_pressed": { "file": "ui/ui_edu_common.json", "type": "image" }, "photo_trash_button": { "file": "ui/ui_edu_common.json", "type": "button", "children": [ "default", "hover", "pressed" ] }, "photo_trash_button/default": { "file": "ui/ui_edu_common.json", "type": "image", "extend": { "name": "trash_default", "namespace": "edu_common" } }, "photo_trash_button/hover": { "file": "ui/ui_edu_common.json", "type": "image", "extend": { "name": "trash_hover", "namespace": "edu_common" } }, "photo_trash_button/pressed": { "file": "ui/ui_edu_common.json", "type": "image", "extend": { "name": "trash_pressed", "namespace": "edu_common" } }, "download_progress_modal_panel": { "file": "ui/ui_edu_common.json", "type": "input_panel", "extend": { "name": "input_panel", "namespace": "common" }, "children": [ "downloading" ] }, "download_progress_modal_panel/downloading": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "modal_progress_panel_with_cancel", "namespace": "edu_common" } }, "loading_progress_modal_panel": { "file": "ui/ui_edu_common.json", "type": "input_panel", "extend": { "name": "input_panel", "namespace": "common" }, "children": [ "loading" ] }, "loading_progress_modal_panel/loading": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "modal_progress_panel_no_button", "namespace": "edu_common" } }, "modal_cancel_button": { "file": "ui/ui_edu_common.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "modal_progress_panel_with_cancel": { "file": "ui/ui_edu_common.json", "type": "panel", "children": [ "common_panel", "title", "content", "cancel_button" ] }, "modal_progress_panel_with_cancel/common_panel": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "modal_progress_panel_with_cancel/title": { "file": "ui/ui_edu_common.json", "type": "label" }, "modal_progress_panel_with_cancel/content": { "file": "ui/ui_edu_common.json", "type": "panel", "children": [ "title_panel", "label", "progress_loading_bars" ] }, "modal_progress_panel_with_cancel/content/title_panel": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "title_panel", "namespace": "progress" } }, "modal_progress_panel_with_cancel/content/label": { "file": "ui/ui_edu_common.json", "type": "label" }, "modal_progress_panel_with_cancel/content/progress_loading_bars": { "file": "ui/ui_edu_common.json", "type": "image", "extend": { "name": "progress_loading_bars", "namespace": "progress" } }, "modal_progress_panel_with_cancel/cancel_button": { "file": "ui/ui_edu_common.json", "type": "button", "extend": { "name": "modal_cancel_button", "namespace": "edu_common" } }, "modal_progress_panel_no_button": { "file": "ui/ui_edu_common.json", "type": "panel", "children": [ "common_panel", "content" ] }, "modal_progress_panel_no_button/common_panel": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "modal_progress_panel_no_button/content": { "file": "ui/ui_edu_common.json", "type": "panel", "children": [ "progress_title_text", "progress_loading_bars" ] }, "modal_progress_panel_no_button/content/progress_title_text": { "file": "ui/ui_edu_common.json", "type": "label", "extend": { "name": "progress_title_text", "namespace": "progress" } }, "modal_progress_panel_no_button/content/progress_loading_bars": { "file": "ui/ui_edu_common.json", "type": "image", "extend": { "name": "progress_loading_bars", "namespace": "progress" } }, "apple_animation": { "file": "ui/ui_edu_common.json", "type": "image" }, "book_animation": { "file": "ui/ui_edu_common.json", "type": "image" }, "edu_loading_animation": { "file": "ui/ui_edu_common.json", "type": "image", "extend": { "name": "book_animation", "namespace": "edu_common" } }, "horizontal_stack_item": { "file": "ui/ui_edu_common.json", "type": "panel" }, "vertical_stack_item": { "file": "ui/ui_edu_common.json", "type": "panel" }, "back_button_padded": { "file": "ui/ui_edu_common.json", "type": "stack_panel", "children": [ "back_button_padding_before", "back_button" ] }, "back_button_padded/back_button_padding_before": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "back_button_padded/back_button": { "file": "ui/ui_edu_common.json", "type": "stack_panel", "extend": { "name": "back_title_button", "namespace": "common" } }, "home_button_content": { "file": "ui/ui_edu_common.json", "type": "image" }, "home_button": { "file": "ui/ui_edu_common.json", "type": "button", "extend": { "name": "light_glyph_button", "namespace": "common_buttons" } }, "underline_text": { "file": "ui/ui_edu_common.json", "type": "panel", "children": [ "label_hover" ] }, "underline_text/label_hover": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "single_line_label", "namespace": "common" } }, "underline_button": { "file": "ui/ui_edu_common.json", "type": "button", "extend": { "name": "underline_button", "namespace": "common_buttons" }, "children": [ "default", "hover", "pressed" ] }, "underline_button/default": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "underline_text", "namespace": "edu_common" } }, "underline_button/hover": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "underline_text", "namespace": "edu_common" } }, "underline_button/pressed": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "underline_text", "namespace": "edu_common" } }, "edu_screen_header": { "file": "ui/ui_edu_common.json", "type": "image", "extend": { "name": "top_bar", "namespace": "common" }, "children": [ "title_controls" ] }, "edu_screen_header/title_controls": { "file": "ui/ui_edu_common.json", "type": "stack_panel", "children": [ "back_item", "image_item", "image_item_template", "title_text_padding", "title_item" ] }, "edu_screen_header/title_controls/back_item": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "horizontal_stack_item", "namespace": "edu_common" }, "children": [ "back_button", "gamepad" ] }, "edu_screen_header/title_controls/back_item/back_button": { "file": "ui/ui_edu_common.json", "type": "stack_panel", "extend": { "name": "back_button_padded", "namespace": "edu_common" } }, "edu_screen_header/title_controls/back_item/gamepad": { "file": "ui/ui_edu_common.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_b", "namespace": "common" } }, "edu_screen_header/title_controls/image_item": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "horizontal_stack_item", "namespace": "edu_common" }, "children": [ "image" ] }, "edu_screen_header/title_controls/image_item/image": { "file": "ui/ui_edu_common.json", "type": "image" }, "edu_screen_header/title_controls/image_item_template": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "horizontal_stack_item", "namespace": "edu_common" }, "children": [ "image" ] }, "edu_screen_header/title_controls/image_item_template/image": { "file": "ui/ui_edu_common.json", "type": "image", "children": [ "image_color" ] }, "edu_screen_header/title_controls/image_item_template/image/image_color": { "file": "ui/ui_edu_common.json", "type": "image" }, "edu_screen_header/title_controls/title_text_padding": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "edu_screen_header/title_controls/title_item": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "horizontal_stack_item", "namespace": "edu_common" }, "children": [ "title" ] }, "edu_screen_header/title_controls/title_item/title": { "file": "ui/ui_edu_common.json", "type": "label" }, "share_dialog_title": { "file": "ui/ui_edu_common.json", "type": "label" }, "share_header_panel": { "file": "ui/ui_edu_common.json", "type": "panel", "children": [ "title", "close_button" ] }, "share_header_panel/title": { "file": "ui/ui_edu_common.json", "type": "label", "extend": { "name": "share_dialog_title", "namespace": "edu_common" } }, "share_header_panel/close_button": { "file": "ui/ui_edu_common.json", "type": "button", "extend": { "name": "close_button", "namespace": "common" } }, "teams_advanced_share_header_panel": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "share_header_panel", "namespace": "edu_common" } }, "add_resource_share_header_panel": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "share_header_panel", "namespace": "edu_common" } }, "body_panel": { "file": "ui/ui_edu_common.json", "type": "panel", "children": [ "body_stack" ] }, "body_panel/body_stack": { "file": "ui/ui_edu_common.json", "type": "unknown" }, "teams_body_panel": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "body_panel", "namespace": "edu_common" } }, "teams_body_resource_panel": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "body_panel", "namespace": "edu_common" } }, "teams_simple_body_resource_panel": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "body_panel", "namespace": "edu_common" } }, "joincode_body_panel": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "body_panel", "namespace": "edu_common" } }, "add_resource_body_panel": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "body_panel", "namespace": "edu_common" } }, "icon_section": { "file": "ui/ui_edu_common.json", "type": "stack_panel", "children": [ "icon_stack_panel", "icon_padding" ] }, "icon_section/icon_stack_panel": { "file": "ui/ui_edu_common.json", "type": "stack_panel", "extend": { "name": "icon_stack_panel", "namespace": "edu_common" } }, "icon_section/icon_padding": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "add_resources_section": { "file": "ui/ui_edu_common.json", "type": "stack_panel", "children": [ "divider", "add_resource_label", "teams_padding_middle", "resource_button" ] }, "add_resources_section/divider": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "horizontal_divider", "namespace": "edu_common" } }, "add_resources_section/add_resource_label": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "share_dialog_body_text", "namespace": "edu_common" } }, "add_resources_section/teams_padding_middle": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "add_resources_section/resource_button": { "file": "ui/ui_edu_common.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "edit_resource_uri_glyph": { "file": "ui/ui_edu_common.json", "type": "image" }, "edit_resources_section": { "file": "ui/ui_edu_common.json", "type": "stack_panel", "children": [ "divider", "resource_label_text", "teams_padding_middle", "edit_resource_body_button_stack" ] }, "edit_resources_section/divider": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "horizontal_divider", "namespace": "edu_common" } }, "edit_resources_section/resource_label_text": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "share_dialog_body_text", "namespace": "edu_common" } }, "edit_resources_section/teams_padding_middle": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "edit_resources_section/edit_resource_body_button_stack": { "file": "ui/ui_edu_common.json", "type": "stack_panel", "children": [ "resource_button", "padding_middle", "edit_resource_uri_button" ] }, "edit_resources_section/edit_resource_body_button_stack/resource_button": { "file": "ui/ui_edu_common.json", "type": "unknown", "extend": { "name": "shared_resource_uri_button", "namespace": "edu_pause" } }, "edit_resources_section/edit_resource_body_button_stack/padding_middle": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "edit_resources_section/edit_resource_body_button_stack/edit_resource_uri_button": { "file": "ui/ui_edu_common.json", "type": "button", "extend": { "name": "light_glyph_button", "namespace": "common_buttons" } }, "body_content_stack": { "file": "ui/ui_edu_common.json", "type": "stack_panel", "children": [ "body_text_centering_panel", "padding_middle", "icons", "copy_link_centering_panel", "add_resources", "edit_resources" ] }, "body_content_stack/body_text_centering_panel": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "vertical_stack_item", "namespace": "edu_common" }, "children": [ "body_text" ] }, "body_content_stack/body_text_centering_panel/body_text": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "share_dialog_body_text", "namespace": "edu_common" } }, "body_content_stack/padding_middle": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "body_content_stack/icons": { "file": "ui/ui_edu_common.json", "type": "stack_panel", "extend": { "name": "icon_section", "namespace": "edu_common" } }, "body_content_stack/copy_link_centering_panel": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "vertical_stack_item", "namespace": "edu_common" }, "children": [ "copy_link_panel" ] }, "body_content_stack/copy_link_centering_panel/copy_link_panel": { "file": "ui/ui_edu_common.json", "type": "stack_panel", "extend": { "name": "copy_link_stack_panel", "namespace": "edu_common" } }, "body_content_stack/add_resources": { "file": "ui/ui_edu_common.json", "type": "stack_panel", "extend": { "name": "add_resources_section", "namespace": "edu_common" } }, "body_content_stack/edit_resources": { "file": "ui/ui_edu_common.json", "type": "stack_panel", "extend": { "name": "edit_resources_section", "namespace": "edu_common" } }, "teams_simple_body_content_stack": { "file": "ui/ui_edu_common.json", "type": "stack_panel", "extend": { "name": "body_content_stack", "namespace": "edu_common" } }, "teams_body_content_stack": { "file": "ui/ui_edu_common.json", "type": "stack_panel", "extend": { "name": "body_content_stack", "namespace": "edu_common" } }, "teams_body_resource_content_stack": { "file": "ui/ui_edu_common.json", "type": "stack_panel", "extend": { "name": "body_content_stack", "namespace": "edu_common" } }, "joincode_body_content_stack": { "file": "ui/ui_edu_common.json", "type": "stack_panel", "extend": { "name": "body_content_stack", "namespace": "edu_common" } }, "add_resource_body_content_stack": { "file": "ui/ui_edu_common.json", "type": "stack_panel", "children": [ "label_one_centering_panel", "label_padding_middle", "label_two_centering_panel", "learn_more_padding_middle", "link1", "url_padding_middle", "url_label", "url_textbox", "inline_notification", "inline_notification_spacer", "button_name_label", "button_middle_spacer", "button_name_textbox", "button_name_textbox_next_disabled" ] }, "add_resource_body_content_stack/label_one_centering_panel": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "vertical_stack_item", "namespace": "edu_common" }, "children": [ "teams_share_label" ] }, "add_resource_body_content_stack/label_one_centering_panel/teams_share_label": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "share_dialog_body_text", "namespace": "edu_common" } }, "add_resource_body_content_stack/label_padding_middle": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "add_resource_body_content_stack/label_two_centering_panel": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "vertical_stack_item", "namespace": "edu_common" }, "children": [ "teams_share_label" ] }, "add_resource_body_content_stack/label_two_centering_panel/teams_share_label": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "share_dialog_body_text", "namespace": "edu_common" } }, "add_resource_body_content_stack/learn_more_padding_middle": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "add_resource_body_content_stack/link1": { "file": "ui/ui_edu_common.json", "type": "button", "extend": { "name": "underline_button", "namespace": "edu_common" } }, "add_resource_body_content_stack/url_padding_middle": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "add_resource_body_content_stack/url_label": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "share_dialog_body_text", "namespace": "edu_common" } }, "add_resource_body_content_stack/url_textbox": { "file": "ui/ui_edu_common.json", "type": "edit_box", "extend": { "name": "text_edit_box", "namespace": "common" } }, "add_resource_body_content_stack/inline_notification": { "file": "ui/ui_edu_common.json", "type": "image", "extend": { "name": "inline_notification", "namespace": "edu_common" } }, "add_resource_body_content_stack/inline_notification_spacer": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "add_resource_body_content_stack/button_name_label": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "share_dialog_body_text", "namespace": "edu_common" } }, "add_resource_body_content_stack/button_middle_spacer": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "add_resource_body_content_stack/button_name_textbox": { "file": "ui/ui_edu_common.json", "type": "edit_box", "extend": { "name": "text_edit_box", "namespace": "common" } }, "add_resource_body_content_stack/button_name_textbox_next_disabled": { "file": "ui/ui_edu_common.json", "type": "edit_box", "extend": { "name": "text_edit_box", "namespace": "common" } }, "add_edit_resource_body_content_stack": { "file": "ui/ui_edu_common.json", "type": "panel", "children": [ "scroll_content" ] }, "add_edit_resource_body_content_stack/scroll_content": { "file": "ui/ui_edu_common.json", "type": "panel", "children": [ "scrolling_panel" ] }, "add_edit_resource_body_content_stack/scroll_content/scrolling_panel": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "resource_popup_buttons": { "file": "ui/ui_edu_common.json", "type": "stack_panel", "children": [ "done_button", "button_padding", "back_button_panel" ] }, "resource_popup_buttons/done_button": { "file": "ui/ui_edu_common.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "resource_popup_buttons/button_padding": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "resource_popup_buttons/back_button_panel": { "file": "ui/ui_edu_common.json", "type": "panel", "children": [ "back_button_enabled", "back_button_disabled" ] }, "resource_popup_buttons/back_button_panel/back_button_enabled": { "file": "ui/ui_edu_common.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "resource_popup_buttons/back_button_panel/back_button_disabled": { "file": "ui/ui_edu_common.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "add_resource_popup_lower_button_panel": { "file": "ui/ui_edu_common.json", "type": "panel", "children": [ "edit_resource_popup_buttons", "add_resource_popup_buttons" ] }, "add_resource_popup_lower_button_panel/edit_resource_popup_buttons": { "file": "ui/ui_edu_common.json", "type": "stack_panel", "extend": { "name": "resource_popup_buttons", "namespace": "edu_common" } }, "add_resource_popup_lower_button_panel/add_resource_popup_buttons": { "file": "ui/ui_edu_common.json", "type": "stack_panel", "extend": { "name": "resource_popup_buttons", "namespace": "edu_common" } }, "share_dialog_body_text": { "file": "ui/ui_edu_common.json", "type": "panel", "children": [ "tts_border", "text" ] }, "share_dialog_body_text/tts_border": { "file": "ui/ui_edu_common.json", "type": "button", "extend": { "name": "non_interact_focus_border_button", "namespace": "common" } }, "share_dialog_body_text/text": { "file": "ui/ui_edu_common.json", "type": "label" }, "share_icon": { "file": "ui/ui_edu_common.json", "type": "image" }, "share_label": { "file": "ui/ui_edu_common.json", "type": "stack_panel", "children": [ "share_image_offset_panel" ] }, "share_label/share_image_offset_panel": { "file": "ui/ui_edu_common.json", "type": "panel", "children": [ "link_share" ] }, "share_label/share_image_offset_panel/link_share": { "file": "ui/ui_edu_common.json", "type": "image", "extend": { "name": "share_icon", "namespace": "edu_common" } }, "copy_link_stack_panel": { "file": "ui/ui_edu_common.json", "type": "stack_panel", "children": [ "link_box", "copy_button" ] }, "copy_link_stack_panel/link_box": { "file": "ui/ui_edu_common.json", "type": "edit_box", "extend": { "name": "text_edit_box", "namespace": "common" } }, "copy_link_stack_panel/copy_button": { "file": "ui/ui_edu_common.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "icon_stack_panel": { "file": "ui/ui_edu_common.json", "type": "stack_panel", "children": [ "padding_left", "teams_button", "teams_mail_padding", "mail_button", "mail_classrooms_padding", "classrooms_button", "padding_right" ] }, "icon_stack_panel/padding_left": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "icon_stack_panel/teams_button": { "file": "ui/ui_edu_common.json", "type": "button", "extend": { "name": "default_share_button", "namespace": "edu_common" } }, "icon_stack_panel/teams_mail_padding": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "icon_stack_panel/mail_button": { "file": "ui/ui_edu_common.json", "type": "button", "extend": { "name": "default_share_button", "namespace": "edu_common" } }, "icon_stack_panel/mail_classrooms_padding": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "icon_stack_panel/classrooms_button": { "file": "ui/ui_edu_common.json", "type": "button", "extend": { "name": "default_share_button", "namespace": "edu_common" } }, "icon_stack_panel/padding_right": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "default_share_button_contents": { "file": "ui/ui_edu_common.json", "type": "panel", "children": [ "background", "image" ] }, "default_share_button_contents/background": { "file": "ui/ui_edu_common.json", "type": "image" }, "default_share_button_contents/image": { "file": "ui/ui_edu_common.json", "type": "image" }, "default_share_button": { "file": "ui/ui_edu_common.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed" ] }, "default_share_button/default": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "default_share_button_contents", "namespace": "edu_common" } }, "default_share_button/hover": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "default_share_button_contents", "namespace": "edu_common" } }, "default_share_button/pressed": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "default_share_button_contents", "namespace": "edu_common" } }, "vertical_divider": { "file": "ui/ui_edu_common.json", "type": "panel", "children": [ "divider" ] }, "vertical_divider/divider": { "file": "ui/ui_edu_common.json", "type": "image" }, "horizontal_divider": { "file": "ui/ui_edu_common.json", "type": "panel", "children": [ "divider" ] }, "horizontal_divider/divider": { "file": "ui/ui_edu_common.json", "type": "image" }, "stack_panel_grid_slot": { "file": "ui/ui_edu_common.json", "type": "panel", "children": [ "stack_panel_grid_item_panel" ] }, "stack_panel_grid_slot/stack_panel_grid_item_panel": { "file": "ui/ui_edu_common.json", "type": "panel", "children": [ "stack_panel_grid_item" ] }, "stack_panel_grid_slot/stack_panel_grid_item_panel/stack_panel_grid_item": { "file": "ui/ui_edu_common.json", "type": "unknown" }, "stack_panel_grid_row": { "file": "ui/ui_edu_common.json", "type": "stack_panel", "children": [ "stack_panel_grid_row_item", "divider" ] }, "stack_panel_grid_row/stack_panel_grid_row_item": { "file": "ui/ui_edu_common.json", "type": "panel", "children": [ "row" ] }, "stack_panel_grid_row/stack_panel_grid_row_item/row": { "file": "ui/ui_edu_common.json", "type": "stack_panel" }, "stack_panel_grid_row/divider": { "file": "ui/ui_edu_common.json", "type": "panel", "children": [ "line" ] }, "stack_panel_grid_row/divider/line": { "file": "ui/ui_edu_common.json", "type": "image" }, "stack_panel_grid": { "file": "ui/ui_edu_common.json", "type": "stack_panel" }, "border": { "file": "ui/ui_edu_common.json", "type": "image" }, "description_panel": { "file": "ui/ui_edu_common.json", "type": "image", "children": [ "border", "description" ] }, "description_panel/border": { "file": "ui/ui_edu_common.json", "type": "button", "extend": { "name": "non_interact_focus_border_button", "namespace": "common" } }, "description_panel/description": { "file": "ui/ui_edu_common.json", "type": "label" }, "edu_share_text_popup": { "file": "ui/ui_edu_common.json", "type": "input_panel", "extend": { "name": "form_fit_modal_dialog_popup", "namespace": "popup_dialog" } }, "teams_edu_share_text_popup": { "file": "ui/ui_edu_common.json", "type": "input_panel", "extend": { "name": "form_fit_modal_dialog_popup", "namespace": "popup_dialog" } }, "teams_edu_share_resource_popup": { "file": "ui/ui_edu_common.json", "type": "input_panel", "extend": { "name": "form_fit_modal_dialog_popup", "namespace": "popup_dialog" } }, "teams_edu_simple_share_resource_popup": { "file": "ui/ui_edu_common.json", "type": "input_panel", "extend": { "name": "form_fit_modal_dialog_popup", "namespace": "popup_dialog" } }, "joincode_edu_popup": { "file": "ui/ui_edu_common.json", "type": "input_panel", "extend": { "name": "form_fit_modal_dialog_popup", "namespace": "popup_dialog" } }, "add_resource_dialog": { "file": "ui/ui_edu_common.json", "type": "input_panel", "extend": { "name": "form_fit_modal_dialog_popup", "namespace": "popup_dialog" } }, "share_popup_dialog_factory": { "file": "ui/ui_edu_common.json", "type": "factory" }, "inline_notification": { "file": "ui/ui_edu_common.json", "type": "image", "children": [ "stack" ] }, "inline_notification/stack": { "file": "ui/ui_edu_common.json", "type": "stack_panel", "children": [ "icon", "spacer", "warning_text" ] }, "inline_notification/stack/icon": { "file": "ui/ui_edu_common.json", "type": "image" }, "inline_notification/stack/spacer": { "file": "ui/ui_edu_common.json", "type": "panel" }, "inline_notification/stack/warning_text": { "file": "ui/ui_edu_common.json", "type": "label" }, "search_button_content": { "file": "ui/ui_edu_common.json", "type": "image" }, "search_bar_and_home_button": { "file": "ui/ui_edu_common.json", "type": "stack_panel", "children": [ "search_bar", "search_button", "search_pad", "home_button", "end_pad" ] }, "search_bar_and_home_button/search_bar": { "file": "ui/ui_edu_common.json", "type": "panel", "children": [ "search_bar" ] }, "search_bar_and_home_button/search_bar/search_bar": { "file": "ui/ui_edu_common.json", "type": "edit_box", "extend": { "name": "text_edit_box", "namespace": "common" } }, "search_bar_and_home_button/search_button": { "file": "ui/ui_edu_common.json", "type": "button", "extend": { "name": "light_glyph_button", "namespace": "common_buttons" } }, "search_bar_and_home_button/search_pad": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "search_bar_and_home_button/home_button": { "file": "ui/ui_edu_common.json", "type": "button", "extend": { "name": "home_button", "namespace": "edu_common" } }, "search_bar_and_home_button/end_pad": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "hotbar_hint": { "file": "ui/ui_edu_common.json", "type": "panel", "children": [ "inactive_slot_dimmer", "bound_key_glyph_background" ] }, "hotbar_hint/inactive_slot_dimmer": { "file": "ui/ui_edu_common.json", "type": "image" }, "hotbar_hint/bound_key_glyph_background": { "file": "ui/ui_edu_common.json", "type": "image", "children": [ "bound_key_glyph_text" ] }, "hotbar_hint/bound_key_glyph_background/bound_key_glyph_text": { "file": "ui/ui_edu_common.json", "type": "label" }, "view_toggle_content": { "file": "ui/ui_edu_common.json", "type": "stack_panel", "extend": { "name": "edu_common", "namespace": "edu_common" }, "children": [ "button_image_templates", "button_image_worlds", "button_label_wrapper", "left_edge_text_padding" ] }, "view_toggle_content/button_image_templates": { "file": "ui/ui_edu_common.json", "type": "image", "children": [ "image_color_templates" ] }, "view_toggle_content/button_image_templates/image_color_templates": { "file": "ui/ui_edu_common.json", "type": "image" }, "view_toggle_content/button_image_worlds": { "file": "ui/ui_edu_common.json", "type": "image" }, "view_toggle_content/button_label_wrapper": { "file": "ui/ui_edu_common.json", "type": "panel", "children": [ "button_label" ] }, "view_toggle_content/button_label_wrapper/button_label": { "file": "ui/ui_edu_common.json", "type": "label" }, "view_toggle_content/left_edge_text_padding": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "worlds_and_templates_search_bar": { "file": "ui/ui_edu_common.json", "type": "image", "children": [ "stack_panel" ] }, "worlds_and_templates_search_bar/stack_panel": { "file": "ui/ui_edu_common.json", "type": "stack_panel", "children": [ "search_bar_wrapper", "temp_padding", "view_toggle_background" ] }, "worlds_and_templates_search_bar/stack_panel/search_bar_wrapper": { "file": "ui/ui_edu_common.json", "type": "panel", "children": [ "search_bar" ] }, "worlds_and_templates_search_bar/stack_panel/search_bar_wrapper/search_bar": { "file": "ui/ui_edu_common.json", "type": "edit_box", "extend": { "name": "text_edit_box", "namespace": "common" } }, "worlds_and_templates_search_bar/stack_panel/temp_padding": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "worlds_and_templates_search_bar/stack_panel/view_toggle_background": { "file": "ui/ui_edu_common.json", "type": "image", "children": [ "stack_panel" ] }, "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel": { "file": "ui/ui_edu_common.json", "type": "stack_panel", "children": [ "left_edge_padding", "view_toggle_button", "right_edge_padding" ] }, "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/left_edge_padding": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/view_toggle_button": { "file": "ui/ui_edu_common.json", "type": "button", "extend": { "name": "dark_content_form_fitting_button", "namespace": "common_buttons" } }, "worlds_and_templates_search_bar/stack_panel/view_toggle_background/stack_panel/right_edge_padding": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "edu_cloud_conflict_resolution_popup_dialog_factory": { "file": "ui/ui_edu_common.json", "type": "factory" }, "edu_cloud_conflict_resolution_popup": { "file": "ui/ui_edu_common.json", "type": "input_panel", "extend": { "name": "form_fit_modal_dialog_popup", "namespace": "popup_dialog" } }, "edu_cloud_conflict_resolution_content": { "file": "ui/ui_edu_common.json", "type": "stack_panel", "children": [ "conflict_resolution_description_wrapper", "padding1", "world_info_wrapper", "padding2", "keep_local_button", "keep_cloud_button", "keep_both_button" ] }, "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper": { "file": "ui/ui_edu_common.json", "type": "panel", "children": [ "tts_border", "conflict_resolution_description" ] }, "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper/tts_border": { "file": "ui/ui_edu_common.json", "type": "button", "extend": { "name": "non_interact_focus_border_button", "namespace": "common" } }, "edu_cloud_conflict_resolution_content/conflict_resolution_description_wrapper/conflict_resolution_description": { "file": "ui/ui_edu_common.json", "type": "label" }, "edu_cloud_conflict_resolution_content/padding1": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "edu_cloud_conflict_resolution_content/world_info_wrapper": { "file": "ui/ui_edu_common.json", "type": "panel", "children": [ "tts_border", "world_info_stack" ] }, "edu_cloud_conflict_resolution_content/world_info_wrapper/tts_border": { "file": "ui/ui_edu_common.json", "type": "button", "extend": { "name": "non_interact_focus_border_button", "namespace": "common" } }, "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack": { "file": "ui/ui_edu_common.json", "type": "stack_panel", "children": [ "local_world_name_label", "local_world_last_changed_label", "cloud_world_name_label", "cloud_world_last_changed_label" ] }, "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/local_world_name_label": { "file": "ui/ui_edu_common.json", "type": "label" }, "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/local_world_last_changed_label": { "file": "ui/ui_edu_common.json", "type": "label" }, "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/cloud_world_name_label": { "file": "ui/ui_edu_common.json", "type": "label" }, "edu_cloud_conflict_resolution_content/world_info_wrapper/world_info_stack/cloud_world_last_changed_label": { "file": "ui/ui_edu_common.json", "type": "label" }, "edu_cloud_conflict_resolution_content/padding2": { "file": "ui/ui_edu_common.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "edu_cloud_conflict_resolution_content/keep_local_button": { "file": "ui/ui_edu_common.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "edu_cloud_conflict_resolution_content/keep_cloud_button": { "file": "ui/ui_edu_common.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "edu_cloud_conflict_resolution_content/keep_both_button": { "file": "ui/ui_edu_common.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "nested_buttons_base_definition": { "file": "ui/ui_edu_common.json", "type": "stack_panel" } }, "purchase_common": { "banner_fill": { "file": "ui/ui_purchase_common.json", "type": "image" }, "banner_empty": { "file": "ui/ui_purchase_common.json", "type": "image" }, "screenshots_grid_item": { "file": "ui/ui_purchase_common.json", "type": "panel", "children": [ "frame" ] }, "screenshots_grid_item/frame": { "file": "ui/ui_purchase_common.json", "type": "image", "extend": { "name": "banner_empty", "namespace": "purchase_common" }, "children": [ "screenshot_image", "progress_loading", "screenshot_button" ] }, "screenshots_grid_item/frame/screenshot_image": { "file": "ui/ui_purchase_common.json", "type": "image" }, "screenshots_grid_item/frame/progress_loading": { "file": "ui/ui_purchase_common.json", "type": "panel", "extend": { "name": "progress_loading", "namespace": "common_store" } }, "screenshots_grid_item/frame/screenshot_button": { "file": "ui/ui_purchase_common.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "hover", "pressed" ] }, "screenshots_grid_item/frame/screenshot_button/hover": { "file": "ui/ui_purchase_common.json", "type": "image", "extend": { "name": "focus_border_white", "namespace": "common" } }, "screenshots_grid_item/frame/screenshot_button/pressed": { "file": "ui/ui_purchase_common.json", "type": "image", "extend": { "name": "focus_border_white", "namespace": "common" } }, "screenshots_grid": { "file": "ui/ui_purchase_common.json", "type": "grid" }, "key_image_frame": { "file": "ui/ui_purchase_common.json", "type": "image", "extend": { "name": "banner_empty", "namespace": "purchase_common" }, "children": [ "zoomed" ] }, "key_image_frame/zoomed": { "file": "ui/ui_purchase_common.json", "type": "image" }, "offer_grid_item": { "file": "ui/ui_purchase_common.json", "type": "panel", "children": [ "frame" ] }, "offer_grid_item/frame": { "file": "ui/ui_purchase_common.json", "type": "image", "extend": { "name": "banner_fill", "namespace": "purchase_common" }, "children": [ "offer_key_art", "offer_button" ] }, "offer_grid_item/frame/offer_key_art": { "file": "ui/ui_purchase_common.json", "type": "image" }, "offer_grid_item/frame/offer_button": { "file": "ui/ui_purchase_common.json", "type": "button", "children": [ "hover", "pressed" ] }, "offer_grid_item/frame/offer_button/hover": { "file": "ui/ui_purchase_common.json", "type": "image", "extend": { "name": "square_image_border_white", "namespace": "common" } }, "offer_grid_item/frame/offer_button/pressed": { "file": "ui/ui_purchase_common.json", "type": "image", "extend": { "name": "square_image_border_white", "namespace": "common" } }, "offer_grid": { "file": "ui/ui_purchase_common.json", "type": "grid" }, "key_art_and_text": { "file": "ui/ui_purchase_common.json", "type": "stack_panel", "children": [ "key_image_panel", "padding", "description_scroll" ] }, "key_art_and_text/key_image_panel": { "file": "ui/ui_purchase_common.json", "type": "input_panel", "children": [ "key_image" ] }, "key_art_and_text/key_image_panel/key_image": { "file": "ui/ui_purchase_common.json", "type": "image", "extend": { "name": "key_image_frame", "namespace": "purchase_common" } }, "key_art_and_text/padding": { "file": "ui/ui_purchase_common.json", "type": "panel" }, "key_art_and_text/description_scroll": { "file": "ui/ui_purchase_common.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "pack_description": { "file": "ui/ui_purchase_common.json", "type": "label" } }, "common_buttons": { "button_image": { "file": "ui/ui_template_buttons.json", "type": "image" }, "background_button_image": { "file": "ui/ui_template_buttons.json", "type": "image" }, "locked_button_image": { "file": "ui/ui_template_buttons.json", "type": "image" }, "light_button_assets": { "file": "ui/ui_template_buttons.json", "type": "button", "extend": { "name": "button", "namespace": "common" } }, "dark_button_assets": { "file": "ui/ui_template_buttons.json", "type": "button", "extend": { "name": "button", "namespace": "common" } }, "focus_border": { "file": "ui/ui_template_buttons.json", "type": "image" }, "new_ui_button_panel": { "file": "ui/ui_template_buttons.json", "type": "panel", "children": [ "button_content", "border" ] }, "new_ui_button_panel/button_content": { "file": "ui/ui_template_buttons.json", "type": "panel" }, "new_ui_button_panel/border": { "file": "ui/ui_template_buttons.json", "type": "image", "extend": { "name": "focus_border", "namespace": "common_buttons" } }, "new_ui_form_fitting_button_panel": { "file": "ui/ui_template_buttons.json", "type": "panel", "children": [ "border" ] }, "new_ui_form_fitting_button_panel/border": { "file": "ui/ui_template_buttons.json", "type": "image", "extend": { "name": "focus_border", "namespace": "common_buttons" } }, "new_ui_width_fitting_button_panel": { "file": "ui/ui_template_buttons.json", "type": "panel", "children": [ "border" ] }, "new_ui_width_fitting_button_panel/border": { "file": "ui/ui_template_buttons.json", "type": "image", "extend": { "name": "focus_border", "namespace": "common_buttons" } }, "new_ui_height_fitting_button_panel": { "file": "ui/ui_template_buttons.json", "type": "panel", "children": [ "border" ] }, "new_ui_height_fitting_button_panel/border": { "file": "ui/ui_template_buttons.json", "type": "image", "extend": { "name": "focus_border", "namespace": "common_buttons" } }, "borderless_form_fitting_button_panel": { "file": "ui/ui_template_buttons.json", "type": "panel" }, "light_text_button": { "file": "ui/ui_template_buttons.json", "type": "button", "extend": { "name": "light_button_assets", "namespace": "common_buttons" }, "children": [ "default", "hover", "pressed", "locked" ] }, "light_text_button/default": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "light_text_button/hover": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "light_text_button/pressed": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "light_text_button/locked": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "dark_text_button": { "file": "ui/ui_template_buttons.json", "type": "button", "extend": { "name": "dark_button_assets", "namespace": "common_buttons" }, "children": [ "default", "hover", "pressed", "locked" ] }, "dark_text_button/default": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "dark_text_button/hover": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "dark_text_button/pressed": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "dark_text_button/locked": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "new_ui_binding_button_label": { "file": "ui/ui_template_buttons.json", "type": "label" }, "underline_button": { "file": "ui/ui_template_buttons.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed" ] }, "underline_button/default": { "file": "ui/ui_template_buttons.json", "type": "panel", "children": [ "label_default" ] }, "underline_button/default/label_default": { "file": "ui/ui_template_buttons.json", "type": "panel", "extend": { "name": "single_line_label", "namespace": "common" } }, "underline_button/hover": { "file": "ui/ui_template_buttons.json", "type": "panel", "children": [ "label_hover" ] }, "underline_button/hover/label_hover": { "file": "ui/ui_template_buttons.json", "type": "panel", "extend": { "name": "single_line_label", "namespace": "common" } }, "underline_button/pressed": { "file": "ui/ui_template_buttons.json", "type": "panel", "children": [ "label_hover" ] }, "underline_button/pressed/label_hover": { "file": "ui/ui_template_buttons.json", "type": "panel", "extend": { "name": "single_line_label", "namespace": "common" } }, "read_button": { "file": "ui/ui_template_buttons.json", "type": "panel", "children": [ "read_button_inner" ] }, "read_button/read_button_inner": { "file": "ui/ui_template_buttons.json", "type": "button", "extend": { "name": "underline_button", "namespace": "common_buttons" } }, "light_content_form_fitting_button": { "file": "ui/ui_template_buttons.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "dark_content_form_fitting_button": { "file": "ui/ui_template_buttons.json", "type": "button", "extend": { "name": "dark_content_button", "namespace": "common_buttons" } }, "light_text_form_fitting_button": { "file": "ui/ui_template_buttons.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "dark_text_form_fitting_button": { "file": "ui/ui_template_buttons.json", "type": "button", "extend": { "name": "dark_text_button", "namespace": "common_buttons" } }, "transparent_content_button": { "file": "ui/ui_template_buttons.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "single_image_with_border_button": { "file": "ui/ui_template_buttons.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "light_content_button": { "file": "ui/ui_template_buttons.json", "type": "button", "extend": { "name": "light_button_assets", "namespace": "common_buttons" }, "children": [ "default", "hover", "pressed", "locked" ] }, "light_content_button/default": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "light_content_button/hover": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "light_content_button/pressed": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "light_content_button/locked": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "light_content_button_control_content": { "file": "ui/ui_template_buttons.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" }, "children": [ "default", "hover", "pressed", "locked" ] }, "light_content_button_control_content/default": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "light_content_button_control_content/hover": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "light_content_button_control_content/pressed": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "light_content_button_control_content/locked": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "deactivated_light_content_button": { "file": "ui/ui_template_buttons.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "dark_content_button": { "file": "ui/ui_template_buttons.json", "type": "button", "extend": { "name": "dark_button_assets", "namespace": "common_buttons" }, "children": [ "default", "hover", "pressed", "locked" ] }, "dark_content_button/default": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "dark_content_button/hover": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "dark_content_button/pressed": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "dark_content_button/locked": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "no_background_content_button": { "file": "ui/ui_template_buttons.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed", "locked" ] }, "no_background_content_button/default": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "no_background_content_button/hover": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "no_background_content_button/pressed": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "no_background_content_button/locked": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "button_content_panel": { "file": "ui/ui_template_buttons.json", "type": "panel", "children": [ "content" ] }, "button_content_panel/content": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "form_fitting_button_content_panel": { "file": "ui/ui_template_buttons.json", "type": "panel", "children": [ "content" ] }, "form_fitting_button_content_panel/content": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "horizontal_form_fitting": { "file": "ui/ui_template_buttons.json", "type": "panel", "children": [ "content" ] }, "horizontal_form_fitting/content": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "width_fitting_button_content_panel": { "file": "ui/ui_template_buttons.json", "type": "panel", "children": [ "content" ] }, "width_fitting_button_content_panel/content": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "height_fitting_button_content_panel": { "file": "ui/ui_template_buttons.json", "type": "panel", "children": [ "content" ] }, "height_fitting_button_content_panel/content": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "light_glyph_button": { "file": "ui/ui_template_buttons.json", "type": "button", "extend": { "name": "light_button_assets", "namespace": "common_buttons" }, "children": [ "default", "hover", "pressed", "locked" ] }, "light_glyph_button/default": { "file": "ui/ui_template_buttons.json", "type": "panel", "extend": { "name": "new_ui_button_panel", "namespace": "common_buttons" } }, "light_glyph_button/hover": { "file": "ui/ui_template_buttons.json", "type": "panel", "extend": { "name": "new_ui_button_panel", "namespace": "common_buttons" } }, "light_glyph_button/pressed": { "file": "ui/ui_template_buttons.json", "type": "panel", "extend": { "name": "new_ui_button_panel", "namespace": "common_buttons" } }, "light_glyph_button/locked": { "file": "ui/ui_template_buttons.json", "type": "panel", "extend": { "name": "new_ui_button_panel", "namespace": "common_buttons" } }, "dark_glyph_button_default": { "file": "ui/ui_template_buttons.json", "type": "panel", "extend": { "name": "new_ui_button_panel", "namespace": "common_buttons" } }, "dark_glyph_button_hover": { "file": "ui/ui_template_buttons.json", "type": "panel", "extend": { "name": "new_ui_button_panel", "namespace": "common_buttons" } }, "dark_glyph_button_pressed": { "file": "ui/ui_template_buttons.json", "type": "panel", "extend": { "name": "new_ui_button_panel", "namespace": "common_buttons" } }, "dark_glyph_button_locked": { "file": "ui/ui_template_buttons.json", "type": "panel", "extend": { "name": "new_ui_button_panel", "namespace": "common_buttons" } }, "dark_glyph_button": { "file": "ui/ui_template_buttons.json", "type": "button", "extend": { "name": "dark_button_assets", "namespace": "common_buttons" }, "children": [ "default", "hover", "pressed", "locked" ] }, "dark_glyph_button/default": { "file": "ui/ui_template_buttons.json", "type": "panel", "extend": { "name": "dark_glyph_button_default", "namespace": "common_buttons" } }, "dark_glyph_button/hover": { "file": "ui/ui_template_buttons.json", "type": "panel", "extend": { "name": "dark_glyph_button_hover", "namespace": "common_buttons" } }, "dark_glyph_button/pressed": { "file": "ui/ui_template_buttons.json", "type": "panel", "extend": { "name": "dark_glyph_button_pressed", "namespace": "common_buttons" } }, "dark_glyph_button/locked": { "file": "ui/ui_template_buttons.json", "type": "panel", "extend": { "name": "dark_glyph_button_locked", "namespace": "common_buttons" } }, "dark_glyph_button_with_custom_control": { "file": "ui/ui_template_buttons.json", "type": "button", "extend": { "name": "dark_glyph_button", "namespace": "common_buttons" }, "children": [ "custom_control", "default", "hover", "pressed", "locked" ] }, "dark_glyph_button_with_custom_control/custom_control": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "dark_glyph_button_with_custom_control/default": { "file": "ui/ui_template_buttons.json", "type": "panel", "extend": { "name": "dark_glyph_button_default", "namespace": "common_buttons" } }, "dark_glyph_button_with_custom_control/hover": { "file": "ui/ui_template_buttons.json", "type": "panel", "extend": { "name": "dark_glyph_button_hover", "namespace": "common_buttons" } }, "dark_glyph_button_with_custom_control/pressed": { "file": "ui/ui_template_buttons.json", "type": "panel", "extend": { "name": "dark_glyph_button_pressed", "namespace": "common_buttons" } }, "dark_glyph_button_with_custom_control/locked": { "file": "ui/ui_template_buttons.json", "type": "panel", "extend": { "name": "dark_glyph_button_locked", "namespace": "common_buttons" } }, "glyph_content_panel": { "file": "ui/ui_template_buttons.json", "type": "panel", "children": [ "glyph_button_content" ] }, "glyph_content_panel/glyph_button_content": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "hyperlink_button": { "file": "ui/ui_template_buttons.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "hyperlink_content_button": { "file": "ui/ui_template_buttons.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "nested_button_assets": { "file": "ui/ui_template_buttons.json", "type": "image" }, "nested_overlay_assets": { "file": "ui/ui_template_buttons.json", "type": "image", "extend": { "name": "nested_button_assets", "namespace": "common_buttons" } }, "nested_label_content_background_assets": { "file": "ui/ui_template_buttons.json", "type": "image", "extend": { "name": "nested_button_assets", "namespace": "common_buttons" } }, "nested_label_background_assets": { "file": "ui/ui_template_buttons.json", "type": "image", "extend": { "name": "nested_button_assets", "namespace": "common_buttons" } }, "nested_transparent_label_content_background_assets": { "file": "ui/ui_template_buttons.json", "type": "panel", "children": [ "assets" ] }, "nested_transparent_label_content_background_assets/assets": { "file": "ui/ui_template_buttons.json", "type": "image", "extend": { "name": "nested_button_assets", "namespace": "common_buttons" } }, "nested_base_label": { "file": "ui/ui_template_buttons.json", "type": "label" }, "nested_centered_label_control": { "file": "ui/ui_template_buttons.json", "type": "panel", "children": [ "label" ] }, "nested_centered_label_control/label": { "file": "ui/ui_template_buttons.json", "type": "label", "extend": { "name": "nested_base_label", "namespace": "common_buttons" } }, "nested_label_with_image_control": { "file": "ui/ui_template_buttons.json", "type": "stack_panel", "children": [ "image", "image_to_label_padding", "label_panel" ] }, "nested_label_with_image_control/image": { "file": "ui/ui_template_buttons.json", "type": "image" }, "nested_label_with_image_control/image_to_label_padding": { "file": "ui/ui_template_buttons.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "nested_label_with_image_control/label_panel": { "file": "ui/ui_template_buttons.json", "type": "panel", "children": [ "label" ] }, "nested_label_with_image_control/label_panel/label": { "file": "ui/ui_template_buttons.json", "type": "label", "extend": { "name": "nested_base_label", "namespace": "common_buttons" } }, "nested_six_part_empty_definition": { "file": "ui/ui_template_buttons.json", "type": "label" }, "nested_six_part_label_control": { "file": "ui/ui_template_buttons.json", "type": "panel", "children": [ "left_top_label", "left_middle_label", "left_bottom_label", "right_top_label", "right_middle_label", "right_bottom_label" ] }, "nested_six_part_label_control/left_top_label": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "nested_six_part_label_control/left_middle_label": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "nested_six_part_label_control/left_bottom_label": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "nested_six_part_label_control/right_top_label": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "nested_six_part_label_control/right_middle_label": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "nested_six_part_label_control/right_bottom_label": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "nested_dark_button_assets": { "file": "ui/ui_template_buttons.json", "type": "image", "extend": { "name": "nested_button_assets", "namespace": "common_buttons" } }, "nested_content_background_assets": { "file": "ui/ui_template_buttons.json", "type": "image", "extend": { "name": "nested_button_assets", "namespace": "common_buttons" } }, "nested_content_overlay_assets": { "file": "ui/ui_template_buttons.json", "type": "image", "extend": { "name": "nested_button_assets", "namespace": "common_buttons" } }, "nested_dark_control_with_image": { "file": "ui/ui_template_buttons.json", "type": "panel", "children": [ "background", "image_panel" ] }, "nested_dark_control_with_image/background": { "file": "ui/ui_template_buttons.json", "type": "image", "extend": { "name": "nested_dark_button_assets", "namespace": "common_buttons" } }, "nested_dark_control_with_image/image_panel": { "file": "ui/ui_template_buttons.json", "type": "panel", "children": [ "image" ] }, "nested_dark_control_with_image/image_panel/image": { "file": "ui/ui_template_buttons.json", "type": "image" }, "nestable_button": { "file": "ui/ui_template_buttons.json", "type": "panel", "children": [ "nested_controls_panel", "base_button" ] }, "nestable_button/nested_controls_panel": { "file": "ui/ui_template_buttons.json", "type": "input_panel", "children": [ "locked_overlay", "nested_controls" ] }, "nestable_button/nested_controls_panel/locked_overlay": { "file": "ui/ui_template_buttons.json", "type": "image" }, "nestable_button/nested_controls_panel/nested_controls": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "nestable_button/base_button": { "file": "ui/ui_template_buttons.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed", "locked" ] }, "nestable_button/base_button/default": { "file": "ui/ui_template_buttons.json", "type": "panel", "extend": { "name": "nested_button_base", "namespace": "common_buttons" } }, "nestable_button/base_button/hover": { "file": "ui/ui_template_buttons.json", "type": "panel", "extend": { "name": "nested_button_base", "namespace": "common_buttons" } }, "nestable_button/base_button/pressed": { "file": "ui/ui_template_buttons.json", "type": "panel", "extend": { "name": "nested_button_base", "namespace": "common_buttons" } }, "nestable_button/base_button/locked": { "file": "ui/ui_template_buttons.json", "type": "panel", "extend": { "name": "nested_button_base", "namespace": "common_buttons" } }, "nested_button_base": { "file": "ui/ui_template_buttons.json", "type": "panel", "children": [ "button_overlay", "button_control" ] }, "nested_button_base/button_overlay": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "nested_button_base/button_control": { "file": "ui/ui_template_buttons.json", "type": "stack_panel", "children": [ "control_area", "button_stack_padding", "label_area" ] }, "nested_button_base/button_control/control_area": { "file": "ui/ui_template_buttons.json", "type": "panel", "children": [ "background", "control", "overlay" ] }, "nested_button_base/button_control/control_area/background": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "nested_button_base/button_control/control_area/control": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "nested_button_base/button_control/control_area/overlay": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "nested_button_base/button_control/button_stack_padding": { "file": "ui/ui_template_buttons.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "nested_button_base/button_control/label_area": { "file": "ui/ui_template_buttons.json", "type": "panel", "children": [ "background", "control_background", "control" ] }, "nested_button_base/button_control/label_area/background": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "nested_button_base/button_control/label_area/control_background": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "nested_button_base/button_control/label_area/control": { "file": "ui/ui_template_buttons.json", "type": "unknown" }, "dark_nestable_button": { "file": "ui/ui_template_buttons.json", "type": "panel", "extend": { "name": "nestable_button", "namespace": "common_buttons" } }, "transparent_label_nestable_button": { "file": "ui/ui_template_buttons.json", "type": "panel", "extend": { "name": "nestable_button", "namespace": "common_buttons" } }, "static_tooltip_notification_panel": { "file": "ui/ui_template_buttons.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "pressed", "hover", "locked", "static_tooltip_popup_panel" ] }, "static_tooltip_notification_panel/default": { "file": "ui/ui_template_buttons.json", "type": "image", "extend": { "name": "tooltip_button_content", "namespace": "common" } }, "static_tooltip_notification_panel/pressed": { "file": "ui/ui_template_buttons.json", "type": "image", "extend": { "name": "tooltip_button_content", "namespace": "common" } }, "static_tooltip_notification_panel/hover": { "file": "ui/ui_template_buttons.json", "type": "image", "extend": { "name": "tooltip_button_content", "namespace": "common" } }, "static_tooltip_notification_panel/locked": { "file": "ui/ui_template_buttons.json", "type": "image", "extend": { "name": "tooltip_button_content", "namespace": "common" } }, "static_tooltip_notification_panel/static_tooltip_popup_panel": { "file": "ui/ui_template_buttons.json", "type": "image", "extend": { "name": "static_tooltip_popup_with_image_and_text", "namespace": "common" } }, "dynamic_tooltip_notification_panel": { "file": "ui/ui_template_buttons.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "pressed", "hover", "locked", "dyanmic_tooltip_popup_panel" ] }, "dynamic_tooltip_notification_panel/default": { "file": "ui/ui_template_buttons.json", "type": "image", "extend": { "name": "tooltip_button_content", "namespace": "common" } }, "dynamic_tooltip_notification_panel/pressed": { "file": "ui/ui_template_buttons.json", "type": "image", "extend": { "name": "tooltip_button_content", "namespace": "common" } }, "dynamic_tooltip_notification_panel/hover": { "file": "ui/ui_template_buttons.json", "type": "image", "extend": { "name": "tooltip_button_content", "namespace": "common" } }, "dynamic_tooltip_notification_panel/locked": { "file": "ui/ui_template_buttons.json", "type": "image", "extend": { "name": "tooltip_button_content", "namespace": "common" } }, "dynamic_tooltip_notification_panel/dyanmic_tooltip_popup_panel": { "file": "ui/ui_template_buttons.json", "type": "image", "extend": { "name": "dynamic_tooltip_popup_with_image_and_text", "namespace": "common" } }, "text_body_focus_border_for_controller_button": { "file": "ui/ui_template_buttons.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "text_control" ] }, "text_body_focus_border_for_controller_button/default": { "file": "ui/ui_template_buttons.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "text_body_focus_border_for_controller_button/hover": { "file": "ui/ui_template_buttons.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" }, "children": [ "focus_border" ] }, "text_body_focus_border_for_controller_button/hover/focus_border": { "file": "ui/ui_template_buttons.json", "type": "image", "extend": { "name": "focus_border", "namespace": "common_buttons" } }, "text_body_focus_border_for_controller_button/text_control": { "file": "ui/ui_template_buttons.json", "type": "unknown" } }, "common_dialogs": { "standard_title_label": { "file": "ui/ui_template_dialogs.json", "type": "label" }, "title_label": { "file": "ui/ui_template_dialogs.json", "type": "panel", "children": [ "common_dialogs_0", "common_dialogs_1" ] }, "title_label/common_dialogs_0": { "file": "ui/ui_template_dialogs.json", "type": "label", "extend": { "name": "standard_title_label", "namespace": "common_dialogs" } }, "title_label/common_dialogs_1": { "file": "ui/ui_template_dialogs.json", "type": "unknown" }, "main_panel_three_buttons": { "file": "ui/ui_template_dialogs.json", "type": "panel", "children": [ "common_panel", "title_label", "panel_indent", "top_button_panel", "middle_button_panel", "bottom_button_panel" ] }, "main_panel_three_buttons/common_panel": { "file": "ui/ui_template_dialogs.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "main_panel_three_buttons/title_label": { "file": "ui/ui_template_dialogs.json", "type": "panel", "extend": { "name": "title_label", "namespace": "common_dialogs" } }, "main_panel_three_buttons/panel_indent": { "file": "ui/ui_template_dialogs.json", "type": "panel", "children": [ "inside_header_panel" ] }, "main_panel_three_buttons/panel_indent/inside_header_panel": { "file": "ui/ui_template_dialogs.json", "type": "unknown" }, "main_panel_three_buttons/top_button_panel": { "file": "ui/ui_template_dialogs.json", "type": "unknown" }, "main_panel_three_buttons/middle_button_panel": { "file": "ui/ui_template_dialogs.json", "type": "unknown" }, "main_panel_three_buttons/bottom_button_panel": { "file": "ui/ui_template_dialogs.json", "type": "unknown" }, "main_panel_two_buttons": { "file": "ui/ui_template_dialogs.json", "type": "panel", "children": [ "common_panel", "title_label", "panel_indent", "top_button_panel", "bottom_button_panel" ] }, "main_panel_two_buttons/common_panel": { "file": "ui/ui_template_dialogs.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "main_panel_two_buttons/title_label": { "file": "ui/ui_template_dialogs.json", "type": "panel", "extend": { "name": "title_label", "namespace": "common_dialogs" } }, "main_panel_two_buttons/panel_indent": { "file": "ui/ui_template_dialogs.json", "type": "panel", "children": [ "inside_header_panel" ] }, "main_panel_two_buttons/panel_indent/inside_header_panel": { "file": "ui/ui_template_dialogs.json", "type": "unknown" }, "main_panel_two_buttons/top_button_panel": { "file": "ui/ui_template_dialogs.json", "type": "unknown" }, "main_panel_two_buttons/bottom_button_panel": { "file": "ui/ui_template_dialogs.json", "type": "unknown" }, "main_panel_one_button": { "file": "ui/ui_template_dialogs.json", "type": "panel", "children": [ "common_panel", "title_label", "panel_indent", "bottom_button_panel" ] }, "main_panel_one_button/common_panel": { "file": "ui/ui_template_dialogs.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "main_panel_one_button/title_label": { "file": "ui/ui_template_dialogs.json", "type": "panel", "extend": { "name": "title_label", "namespace": "common_dialogs" } }, "main_panel_one_button/panel_indent": { "file": "ui/ui_template_dialogs.json", "type": "panel", "children": [ "inside_header_panel" ] }, "main_panel_one_button/panel_indent/inside_header_panel": { "file": "ui/ui_template_dialogs.json", "type": "unknown" }, "main_panel_one_button/bottom_button_panel": { "file": "ui/ui_template_dialogs.json", "type": "unknown" }, "main_panel_no_buttons": { "file": "ui/ui_template_dialogs.json", "type": "panel", "children": [ "common_panel", "title_label", "panel_indent" ] }, "main_panel_no_buttons/common_panel": { "file": "ui/ui_template_dialogs.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "main_panel_no_buttons/title_label": { "file": "ui/ui_template_dialogs.json", "type": "panel", "extend": { "name": "title_label", "namespace": "common_dialogs" } }, "main_panel_no_buttons/panel_indent": { "file": "ui/ui_template_dialogs.json", "type": "panel", "children": [ "inside_header_panel" ] }, "main_panel_no_buttons/panel_indent/inside_header_panel": { "file": "ui/ui_template_dialogs.json", "type": "unknown" }, "main_panel_no_title_no_buttons": { "file": "ui/ui_template_dialogs.json", "type": "panel", "children": [ "common_panel", "panel_indent" ] }, "main_panel_no_title_no_buttons/common_panel": { "file": "ui/ui_template_dialogs.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "main_panel_no_title_no_buttons/panel_indent": { "file": "ui/ui_template_dialogs.json", "type": "panel", "children": [ "inside_header_panel" ] }, "main_panel_no_title_no_buttons/panel_indent/inside_header_panel": { "file": "ui/ui_template_dialogs.json", "type": "unknown" }, "main_panel_small_title_one_button": { "file": "ui/ui_template_dialogs.json", "type": "panel", "children": [ "common_panel", "title_label", "panel_indent", "bottom_button_panel" ] }, "main_panel_small_title_one_button/common_panel": { "file": "ui/ui_template_dialogs.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "main_panel_small_title_one_button/title_label": { "file": "ui/ui_template_dialogs.json", "type": "panel", "extend": { "name": "title_label", "namespace": "common_dialogs" } }, "main_panel_small_title_one_button/panel_indent": { "file": "ui/ui_template_dialogs.json", "type": "panel", "children": [ "inside_header_panel" ] }, "main_panel_small_title_one_button/panel_indent/inside_header_panel": { "file": "ui/ui_template_dialogs.json", "type": "unknown" }, "main_panel_small_title_one_button/bottom_button_panel": { "file": "ui/ui_template_dialogs.json", "type": "unknown" }, "main_panel": { "file": "ui/ui_template_dialogs.json", "type": "panel", "children": [ "modal_background_image", "panel_indent" ] }, "main_panel/modal_background_image": { "file": "ui/ui_template_dialogs.json", "type": "unknown", "extend": { "name": "modal_background_image", "namespace": "modal" } }, "main_panel/panel_indent": { "file": "ui/ui_template_dialogs.json", "type": "panel", "children": [ "inside_header_panel" ] }, "main_panel/panel_indent/inside_header_panel": { "file": "ui/ui_template_dialogs.json", "type": "unknown" }, "form_fitting_main_panel_no_buttons": { "file": "ui/ui_template_dialogs.json", "type": "panel", "children": [ "common_panel" ] }, "form_fitting_main_panel_no_buttons/common_panel": { "file": "ui/ui_template_dialogs.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common_dialogs" } }, "common_panel": { "file": "ui/ui_template_dialogs.json", "type": "panel", "children": [ "bg_image" ] }, "common_panel/bg_image": { "file": "ui/ui_template_dialogs.json", "type": "unknown" }, "dialog_background_common": { "file": "ui/ui_template_dialogs.json", "type": "image" }, "dialog_background_thin": { "file": "ui/ui_template_dialogs.json", "type": "image" }, "flat_solid_background": { "file": "ui/ui_template_dialogs.json", "type": "image" }, "dialog_background_hollow_common": { "file": "ui/ui_template_dialogs.json", "type": "image", "extend": { "name": "dialog_background_common", "namespace": "common_dialogs" }, "children": [ "control" ] }, "dialog_background_hollow_common/control": { "file": "ui/ui_template_dialogs.json", "type": "image", "children": [ "inside_header_panel", "close_button_holder", "title_label" ] }, "dialog_background_hollow_common/control/inside_header_panel": { "file": "ui/ui_template_dialogs.json", "type": "unknown" }, "dialog_background_hollow_common/control/close_button_holder": { "file": "ui/ui_template_dialogs.json", "type": "stack_panel", "extend": { "name": "common_close_button_holder", "namespace": "common_dialogs" } }, "dialog_background_hollow_common/control/title_label": { "file": "ui/ui_template_dialogs.json", "type": "panel", "extend": { "name": "title_label", "namespace": "common_dialogs" } }, "common_close_button_holder": { "file": "ui/ui_template_dialogs.json", "type": "stack_panel", "children": [ "close", "compact_close" ] }, "common_close_button_holder/close": { "file": "ui/ui_template_dialogs.json", "type": "button", "extend": { "name": "close_button", "namespace": "common" } }, "common_close_button_holder/compact_close": { "file": "ui/ui_template_dialogs.json", "type": "button", "extend": { "name": "compact_close_button", "namespace": "common" } }, "dialog_background_opaque": { "file": "ui/ui_template_dialogs.json", "type": "image", "extend": { "name": "dialog_background_common", "namespace": "common_dialogs" } }, "dialog_background_opaque_with_child": { "file": "ui/ui_template_dialogs.json", "type": "image", "extend": { "name": "dialog_background_hollow_common", "namespace": "common_dialogs" } }, "dialog_background_hollow_1": { "file": "ui/ui_template_dialogs.json", "type": "image", "extend": { "name": "dialog_background_hollow_common", "namespace": "common_dialogs" } }, "dialog_background_hollow_2": { "file": "ui/ui_template_dialogs.json", "type": "image", "extend": { "name": "dialog_background_hollow_common", "namespace": "common_dialogs" } }, "dialog_background_hollow_3": { "file": "ui/ui_template_dialogs.json", "type": "image", "extend": { "name": "dialog_background_hollow_common", "namespace": "common_dialogs" } }, "dialog_background_hollow_4": { "file": "ui/ui_template_dialogs.json", "type": "image", "extend": { "name": "dialog_background_hollow_common", "namespace": "common_dialogs" } }, "dialog_background_hollow_6": { "file": "ui/ui_template_dialogs.json", "type": "unknown", "extend": { "name": "dialog_background_hollow_common:", "namespace": "common_dialogs" } }, "full_screen_background": { "file": "ui/ui_template_dialogs.json", "type": "panel", "children": [ "background" ] }, "full_screen_background/background": { "file": "ui/ui_template_dialogs.json", "type": "unknown" }, "background_image": { "file": "ui/ui_template_dialogs.json", "type": "image" } }, "common_tabs": { "empty_tab_panel": { "file": "ui/ui_template_tabs.json", "type": "panel", "children": [ "img" ] }, "empty_tab_panel/img": { "file": "ui/ui_template_tabs.json", "type": "unknown" }, "empty_tab_content": { "file": "ui/ui_template_tabs.json", "type": "panel" }, "tab_image": { "file": "ui/ui_template_tabs.json", "type": "image" }, "tab_panel": { "file": "ui/ui_template_tabs.json", "type": "panel", "children": [ "tab_image", "tab_content_sizer" ] }, "tab_panel/tab_image": { "file": "ui/ui_template_tabs.json", "type": "unknown" }, "tab_panel/tab_content_sizer": { "file": "ui/ui_template_tabs.json", "type": "panel", "children": [ "tab_content" ] }, "tab_panel/tab_content_sizer/tab_content": { "file": "ui/ui_template_tabs.json", "type": "unknown" }, "base_tab": { "file": "ui/ui_template_tabs.json", "type": "panel" }, "tab_top": { "file": "ui/ui_template_tabs.json", "type": "panel", "extend": { "name": "base_tab", "namespace": "common_tabs" } }, "tab_left": { "file": "ui/ui_template_tabs.json", "type": "panel", "extend": { "name": "base_tab", "namespace": "common_tabs" } }, "tab_right": { "file": "ui/ui_template_tabs.json", "type": "panel", "extend": { "name": "base_tab", "namespace": "common_tabs" } }, "pocket_empty_tab_panel": { "file": "ui/ui_template_tabs.json", "type": "panel" }, "pocket_tab_left": { "file": "ui/ui_template_tabs.json", "type": "panel", "extend": { "name": "tab_left", "namespace": "common_tabs" } }, "pocket_left_tab_v2": { "file": "ui/ui_template_tabs.json", "type": "panel", "extend": { "name": "tab_left", "namespace": "common_tabs" } }, "pocket_tab_right": { "file": "ui/ui_template_tabs.json", "type": "panel", "extend": { "name": "tab_right", "namespace": "common_tabs" } }, "pocket_right_tab_v2": { "file": "ui/ui_template_tabs.json", "type": "panel", "extend": { "name": "tab_right", "namespace": "common_tabs" } }, "pocket_tab_close_button": { "file": "ui/ui_template_tabs.json", "type": "image", "children": [ "close_button" ] }, "pocket_tab_close_button/close_button": { "file": "ui/ui_template_tabs.json", "type": "button", "extend": { "name": "light_close_button", "namespace": "common" } }, "pocket_tab_help_button": { "file": "ui/ui_template_tabs.json", "type": "image", "children": [ "help_button" ] }, "pocket_tab_help_button/help_button": { "file": "ui/ui_template_tabs.json", "type": "button", "extend": { "name": "help_button", "namespace": "common" } }, "pocket_tab_close_and_help_button": { "file": "ui/ui_template_tabs.json", "type": "image", "children": [ "close_button", "help_button" ] }, "pocket_tab_close_and_help_button/close_button": { "file": "ui/ui_template_tabs.json", "type": "button", "extend": { "name": "light_close_button", "namespace": "common" } }, "pocket_tab_close_and_help_button/help_button": { "file": "ui/ui_template_tabs.json", "type": "button", "extend": { "name": "help_button", "namespace": "common" } }, "tab_close_and_help_button": { "file": "ui/ui_template_tabs.json", "type": "image", "children": [ "close_button", "help_button" ] }, "tab_close_and_help_button/close_button": { "file": "ui/ui_template_tabs.json", "type": "button", "extend": { "name": "light_close_button", "namespace": "common" } }, "tab_close_and_help_button/help_button": { "file": "ui/ui_template_tabs.json", "type": "button", "extend": { "name": "help_button", "namespace": "common" } } }, "common_toggles": { "content_toggle_image_panel": { "file": "ui/ui_template_toggles.json", "type": "panel", "children": [ "icon" ] }, "content_toggle_image_panel/icon": { "file": "ui/ui_template_toggles.json", "type": "image" }, "content_toggle_label_panel": { "file": "ui/ui_template_toggles.json", "type": "panel", "children": [ "toggle_label" ] }, "content_toggle_label_panel/toggle_label": { "file": "ui/ui_template_toggles.json", "type": "label" }, "content_toggle_icon_panel": { "file": "ui/ui_template_toggles.json", "type": "panel", "children": [ "content_toggle_image" ] }, "content_toggle_icon_panel/content_toggle_image": { "file": "ui/ui_template_toggles.json", "type": "image" }, "toggle_content_panel": { "file": "ui/ui_template_toggles.json", "type": "stack_panel", "children": [ "toggle_image_panel", "toggle_image_padding_label", "toggle_label_panel", "toggle_label_padding_toggle_icon", "toggle_icon" ] }, "toggle_content_panel/toggle_image_panel": { "file": "ui/ui_template_toggles.json", "type": "unknown" }, "toggle_content_panel/toggle_image_padding_label": { "file": "ui/ui_template_toggles.json", "type": "panel" }, "toggle_content_panel/toggle_label_panel": { "file": "ui/ui_template_toggles.json", "type": "unknown" }, "toggle_content_panel/toggle_label_padding_toggle_icon": { "file": "ui/ui_template_toggles.json", "type": "panel" }, "toggle_content_panel/toggle_icon": { "file": "ui/ui_template_toggles.json", "type": "panel", "extend": { "name": "content_toggle_icon_panel", "namespace": "common_toggles" } }, "vertical_form_fitting_toggle_content": { "file": "ui/ui_template_toggles.json", "type": "stack_panel", "children": [ "toggle_image_panel", "toggle_image_padding_label", "toggle_label_panel", "toggle_label_padding_toggle_icon", "toggle_icon" ] }, "vertical_form_fitting_toggle_content/toggle_image_panel": { "file": "ui/ui_template_toggles.json", "type": "unknown" }, "vertical_form_fitting_toggle_content/toggle_image_padding_label": { "file": "ui/ui_template_toggles.json", "type": "panel" }, "vertical_form_fitting_toggle_content/toggle_label_panel": { "file": "ui/ui_template_toggles.json", "type": "unknown" }, "vertical_form_fitting_toggle_content/toggle_label_padding_toggle_icon": { "file": "ui/ui_template_toggles.json", "type": "panel" }, "vertical_form_fitting_toggle_content/toggle_icon": { "file": "ui/ui_template_toggles.json", "type": "panel", "extend": { "name": "content_toggle_icon_panel", "namespace": "common_toggles" } }, "light_text_toggle": { "file": "ui/ui_template_toggles.json", "type": "panel", "extend": { "name": "light_ui_toggle", "namespace": "common_toggles" } }, "light_image_toggle": { "file": "ui/ui_template_toggles.json", "type": "panel", "extend": { "name": "light_ui_toggle", "namespace": "common_toggles" } }, "light_content_toggle": { "file": "ui/ui_template_toggles.json", "type": "panel", "extend": { "name": "light_ui_toggle", "namespace": "common_toggles" } }, "dark_ui_toggle": { "file": "ui/ui_template_toggles.json", "type": "panel", "extend": { "name": "light_ui_toggle", "namespace": "common_toggles" } }, "dark_text_toggle": { "file": "ui/ui_template_toggles.json", "type": "panel", "extend": { "name": "dark_ui_toggle", "namespace": "common_toggles" } }, "dark_image_toggle": { "file": "ui/ui_template_toggles.json", "type": "panel", "extend": { "name": "dark_ui_toggle", "namespace": "common_toggles" } }, "dark_content_toggle": { "file": "ui/ui_template_toggles.json", "type": "panel", "extend": { "name": "dark_ui_toggle", "namespace": "common_toggles" } }, "dark_vertical_template_toggle": { "file": "ui/ui_template_toggles.json", "type": "panel", "extend": { "name": "dark_template_toggle", "namespace": "common_toggles" } }, "dark_vertical_form_fitting_content_toggle": { "file": "ui/ui_template_toggles.json", "type": "panel", "children": [ "dark_content_toggle" ] }, "dark_vertical_form_fitting_content_toggle/dark_content_toggle": { "file": "ui/ui_template_toggles.json", "type": "panel", "extend": { "name": "light_ui_toggle", "namespace": "common_toggles" } }, "dark_template_toggle": { "file": "ui/ui_template_toggles.json", "type": "panel", "extend": { "name": "light_template_toggle", "namespace": "common_toggles" } }, "light_template_toggle": { "file": "ui/ui_template_toggles.json", "type": "panel", "extend": { "name": "toggle", "namespace": "common" } }, "light_ui_toggle": { "file": "ui/ui_template_toggles.json", "type": "panel" }, "switch_toggle": { "file": "ui/ui_template_toggles.json", "type": "panel", "extend": { "name": "light_image_toggle", "namespace": "common_toggles" } }, "light_text_toggle_collection": { "file": "ui/ui_template_toggles.json", "type": "panel", "extend": { "name": "light_ui_toggle_collection", "namespace": "common_toggles" } }, "light_image_toggle_collection": { "file": "ui/ui_template_toggles.json", "type": "panel", "extend": { "name": "light_ui_toggle_collection", "namespace": "common_toggles" } }, "dark_text_toggle_collection": { "file": "ui/ui_template_toggles.json", "type": "panel", "extend": { "name": "dark_ui_toggle_collection", "namespace": "common_toggles" } }, "dark_image_toggle_collection": { "file": "ui/ui_template_toggles.json", "type": "panel", "extend": { "name": "dark_ui_toggle_collection", "namespace": "common_toggles" } }, "dark_ui_toggle_collection": { "file": "ui/ui_template_toggles.json", "type": "panel", "extend": { "name": "light_ui_toggle_collection", "namespace": "common_toggles" } }, "light_ui_toggle_collection": { "file": "ui/ui_template_toggles.json", "type": "panel" }, "switch_toggle_collection": { "file": "ui/ui_template_toggles.json", "type": "panel", "extend": { "name": "light_image_toggle_collection", "namespace": "common_toggles" } }, "toggle_state_panel": { "file": "ui/ui_template_toggles.json", "type": "panel", "children": [ "button_panel" ] }, "toggle_state_panel/button_panel": { "file": "ui/ui_template_toggles.json", "type": "unknown" }, "toggle_unchecked": { "file": "ui/ui_template_toggles.json", "type": "panel", "extend": { "name": "toggle_state_panel", "namespace": "common_toggles" } }, "toggle_checked": { "file": "ui/ui_template_toggles.json", "type": "panel", "extend": { "name": "toggle_state_panel", "namespace": "common_toggles" } }, "toggle_unchecked_hover": { "file": "ui/ui_template_toggles.json", "type": "panel", "extend": { "name": "toggle_state_panel", "namespace": "common_toggles" } }, "toggle_checked_hover": { "file": "ui/ui_template_toggles.json", "type": "panel", "extend": { "name": "toggle_state_panel", "namespace": "common_toggles" } }, "toggle_locked": { "file": "ui/ui_template_toggles.json", "type": "panel", "extend": { "name": "toggle_state_panel", "namespace": "common_toggles" } }, "toggle_unchecked_locked": { "file": "ui/ui_template_toggles.json", "type": "panel", "extend": { "name": "toggle_state_panel", "namespace": "common_toggles" } }, "toggle_checked_locked": { "file": "ui/ui_template_toggles.json", "type": "panel", "extend": { "name": "toggle_state_panel", "namespace": "common_toggles" } }, "toggle_unchecked_hover_with_chevron": { "file": "ui/ui_template_toggles.json", "type": "panel", "extend": { "name": "toggle_unchecked_hover", "namespace": "common_toggles" } }, "toggle_checked_hover_with_chevron": { "file": "ui/ui_template_toggles.json", "type": "panel", "extend": { "name": "toggle_checked_hover", "namespace": "common_toggles" } }, "toggle_image": { "file": "ui/ui_template_toggles.json", "type": "panel", "children": [ "image" ] }, "toggle_image/image": { "file": "ui/ui_template_toggles.json", "type": "unknown" }, "radio_off_icon": { "file": "ui/ui_template_toggles.json", "type": "image" }, "radio_off_hover_icon": { "file": "ui/ui_template_toggles.json", "type": "image" }, "radio_on_icon": { "file": "ui/ui_template_toggles.json", "type": "image" }, "radio_on_hover_icon": { "file": "ui/ui_template_toggles.json", "type": "image" }, "check_box_button_toggle_image": { "file": "ui/ui_template_toggles.json", "type": "image" }, "checkbox_button_checked_state": { "file": "ui/ui_template_toggles.json", "type": "image", "extend": { "name": "check_box_button_toggle_image", "namespace": "common_toggles" } }, "checkbox_button_unchecked_state": { "file": "ui/ui_template_toggles.json", "type": "image", "extend": { "name": "check_box_button_toggle_image", "namespace": "common_toggles" } }, "checkbox_button_checked_hover_state": { "file": "ui/ui_template_toggles.json", "type": "image", "extend": { "name": "check_box_button_toggle_image", "namespace": "common_toggles" } }, "checkbox_button_unchecked_hover_state": { "file": "ui/ui_template_toggles.json", "type": "image", "extend": { "name": "check_box_button_toggle_image", "namespace": "common_toggles" } }, "checkbox_button_checked_locked_state": { "file": "ui/ui_template_toggles.json", "type": "image", "extend": { "name": "check_box_button_toggle_image", "namespace": "common_toggles" } }, "checkbox_button_unchecked_locked_state": { "file": "ui/ui_template_toggles.json", "type": "image", "extend": { "name": "check_box_button_toggle_image", "namespace": "common_toggles" } }, "toggle_checkbox_unchecked": { "file": "ui/ui_template_toggles.json", "type": "panel", "extend": { "name": "check_box_button_ui_panel", "namespace": "common_toggles" } }, "toggle_checkbox_checked": { "file": "ui/ui_template_toggles.json", "type": "panel", "extend": { "name": "check_box_button_ui_panel", "namespace": "common_toggles" } }, "toggle_checkbox_unchecked_hover": { "file": "ui/ui_template_toggles.json", "type": "panel", "extend": { "name": "check_box_button_ui_panel", "namespace": "common_toggles" } }, "toggle_checkbox_checked_hover": { "file": "ui/ui_template_toggles.json", "type": "panel", "extend": { "name": "check_box_button_ui_panel", "namespace": "common_toggles" } }, "toggle_checkbox_unchecked_locked": { "file": "ui/ui_template_toggles.json", "type": "panel", "extend": { "name": "check_box_button_ui_panel", "namespace": "common_toggles" } }, "toggle_checkbox_checked_locked": { "file": "ui/ui_template_toggles.json", "type": "panel", "extend": { "name": "check_box_button_ui_panel", "namespace": "common_toggles" } }, "check_box_button_ui_panel": { "file": "ui/ui_template_toggles.json", "type": "panel", "extend": { "name": "new_ui_button_panel", "namespace": "common_buttons" }, "children": [ "toggle_image" ] }, "check_box_button_ui_panel/toggle_image": { "file": "ui/ui_template_toggles.json", "type": "panel", "children": [ "button_content", "border", "checkbox_image" ] }, "check_box_button_ui_panel/toggle_image/button_content": { "file": "ui/ui_template_toggles.json", "type": "panel" }, "check_box_button_ui_panel/toggle_image/border": { "file": "ui/ui_template_toggles.json", "type": "image", "extend": { "name": "focus_border", "namespace": "common_buttons" } }, "check_box_button_ui_panel/toggle_image/checkbox_image": { "file": "ui/ui_template_toggles.json", "type": "panel", "children": [ "image" ] }, "check_box_button_ui_panel/toggle_image/checkbox_image/image": { "file": "ui/ui_template_toggles.json", "type": "unknown" }, "button_and_checkbox_template": { "file": "ui/ui_template_toggles.json", "type": "panel", "extend": { "name": "light_template_toggle", "namespace": "common_toggles" } }, "button_with_checkbox_toggle": { "file": "ui/ui_template_toggles.json", "type": "panel", "extend": { "name": "light_text_toggle", "namespace": "common_toggles" } } }, "friendsbutton": { "friendsdrawer_animated_icon": { "file": "ui/ui_friendsbutton.json", "type": "image" }, "profilepicture": { "file": "ui/ui_friendsbutton.json", "type": "custom" }, "persona_icon_with_border": { "file": "ui/ui_friendsbutton.json", "type": "panel", "children": [ "profile_icon", "border_black" ] }, "persona_icon_with_border/profile_icon": { "file": "ui/ui_friendsbutton.json", "type": "custom", "extend": { "name": "profilepicture", "namespace": "friendsbutton" } }, "persona_icon_with_border/border_black": { "file": "ui/ui_friendsbutton.json", "type": "image", "extend": { "name": "focus_border_black", "namespace": "common" } }, "friendsdrawer_persona_icons": { "file": "ui/ui_friendsbutton.json", "type": "stack_panel" }, "social_button_stackpanel": { "file": "ui/ui_friendsbutton.json", "type": "stack_panel", "extend": { "name": "friendsdrawer_persona_icons", "namespace": "friendsbutton" }, "children": [ "image_panel" ] }, "social_button_stackpanel/image_panel": { "file": "ui/ui_friendsbutton.json", "type": "panel", "children": [ "social_icon" ] }, "social_button_stackpanel/image_panel/social_icon": { "file": "ui/ui_friendsbutton.json", "type": "image", "extend": { "name": "friendsdrawer_animated_icon", "namespace": "friendsbutton" } }, "social_button_hover_stackpanel": { "file": "ui/ui_friendsbutton.json", "type": "stack_panel", "extend": { "name": "social_button_stackpanel", "namespace": "friendsbutton" } }, "self_persona_stackpanel": { "file": "ui/ui_friendsbutton.json", "type": "stack_panel", "extend": { "name": "friendsdrawer_persona_icons", "namespace": "friendsbutton" }, "children": [ "self_icon" ] }, "self_persona_stackpanel/self_icon": { "file": "ui/ui_friendsbutton.json", "type": "panel", "extend": { "name": "persona_icon_with_border", "namespace": "friendsbutton" } }, "single_friend_persona_stackpanel": { "file": "ui/ui_friendsbutton.json", "type": "stack_panel", "extend": { "name": "friendsdrawer_persona_icons", "namespace": "friendsbutton" }, "children": [ "self_icon", "friend_one_icon" ] }, "single_friend_persona_stackpanel/self_icon": { "file": "ui/ui_friendsbutton.json", "type": "stack_panel", "extend": { "name": "self_persona_stackpanel", "namespace": "friendsbutton" } }, "single_friend_persona_stackpanel/friend_one_icon": { "file": "ui/ui_friendsbutton.json", "type": "panel", "extend": { "name": "persona_icon_with_border", "namespace": "friendsbutton" } }, "many_friend_persona_stackpanel": { "file": "ui/ui_friendsbutton.json", "type": "stack_panel", "extend": { "name": "friendsdrawer_persona_icons", "namespace": "friendsbutton" }, "children": [ "self_icon", "extra_friends_text_panel" ] }, "many_friend_persona_stackpanel/self_icon": { "file": "ui/ui_friendsbutton.json", "type": "stack_panel", "extend": { "name": "self_persona_stackpanel", "namespace": "friendsbutton" } }, "many_friend_persona_stackpanel/extra_friends_text_panel": { "file": "ui/ui_friendsbutton.json", "type": "panel", "children": [ "background", "extra_members_label", "border_black" ] }, "many_friend_persona_stackpanel/extra_friends_text_panel/background": { "file": "ui/ui_friendsbutton.json", "type": "image" }, "many_friend_persona_stackpanel/extra_friends_text_panel/extra_members_label": { "file": "ui/ui_friendsbutton.json", "type": "label" }, "many_friend_persona_stackpanel/extra_friends_text_panel/border_black": { "file": "ui/ui_friendsbutton.json", "type": "image", "extend": { "name": "focus_border_black", "namespace": "common" } }, "button": { "file": "ui/ui_friendsbutton.json", "type": "button", "extend": { "name": "light_content_form_fitting_button", "namespace": "common_buttons" }, "children": [ "default", "hover", "pressed", "locked" ] }, "button/default": { "file": "ui/ui_friendsbutton.json", "type": "unknown" }, "button/hover": { "file": "ui/ui_friendsbutton.json", "type": "unknown" }, "button/pressed": { "file": "ui/ui_friendsbutton.json", "type": "unknown" }, "button/locked": { "file": "ui/ui_friendsbutton.json", "type": "unknown" }, "social_factory_stackpanel_default": { "file": "ui/ui_friendsbutton.json", "type": "stack_panel" }, "social_factory_stackpanel_hovered": { "file": "ui/ui_friendsbutton.json", "type": "stack_panel" }, "friendsdrawer_button_content": { "file": "ui/ui_friendsbutton.json", "type": "stack_panel", "children": [ "social_factory_stackpanel", "padding_middle", "vertically_centered_text", "padding_right" ] }, "friendsdrawer_button_content/social_factory_stackpanel": { "file": "ui/ui_friendsbutton.json", "type": "unknown" }, "friendsdrawer_button_content/padding_middle": { "file": "ui/ui_friendsbutton.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "friendsdrawer_button_content/vertically_centered_text": { "file": "ui/ui_friendsbutton.json", "type": "stack_panel", "children": [ "top_padding", "profile_button_label" ] }, "friendsdrawer_button_content/vertically_centered_text/top_padding": { "file": "ui/ui_friendsbutton.json", "type": "panel" }, "friendsdrawer_button_content/vertically_centered_text/profile_button_label": { "file": "ui/ui_friendsbutton.json", "type": "label", "extend": { "name": "new_ui_binding_button_label", "namespace": "common_buttons" } }, "friendsdrawer_button_content/padding_right": { "file": "ui/ui_friendsbutton.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "friendsdrawer_hover_button_content": { "file": "ui/ui_friendsbutton.json", "type": "stack_panel", "extend": { "name": "friendsdrawer_button_content", "namespace": "friendsbutton" } }, "friends_drawer_popup": { "file": "ui/ui_friendsbutton.json", "type": "button", "extend": { "name": "static_tooltip_notification_panel", "namespace": "common_buttons" } } }, "iconbutton": { "iconbutton_animated_icon": { "file": "ui/ui_iconbutton.json", "type": "image" }, "button": { "file": "ui/ui_iconbutton.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "iconbutton_button_content": { "file": "ui/ui_iconbutton.json", "type": "stack_panel", "children": [ "icon_wrapper", "padding_middle", "vertically_centered_text" ] }, "iconbutton_button_content/icon_wrapper": { "file": "ui/ui_iconbutton.json", "type": "panel", "children": [ "icon_with_border" ] }, "iconbutton_button_content/icon_wrapper/icon_with_border": { "file": "ui/ui_iconbutton.json", "type": "panel", "children": [ "iconbutton_animated_icon", "border_black" ] }, "iconbutton_button_content/icon_wrapper/icon_with_border/iconbutton_animated_icon": { "file": "ui/ui_iconbutton.json", "type": "image", "extend": { "name": "iconbutton_animated_icon", "namespace": "iconbutton" } }, "iconbutton_button_content/icon_wrapper/icon_with_border/border_black": { "file": "ui/ui_iconbutton.json", "type": "image", "extend": { "name": "focus_border_black", "namespace": "common" } }, "iconbutton_button_content/padding_middle": { "file": "ui/ui_iconbutton.json", "type": "panel", "extend": { "name": "empty_panel", "namespace": "common" } }, "iconbutton_button_content/vertically_centered_text": { "file": "ui/ui_iconbutton.json", "type": "stack_panel", "children": [ "top_padding", "profile_button_label" ] }, "iconbutton_button_content/vertically_centered_text/top_padding": { "file": "ui/ui_iconbutton.json", "type": "panel" }, "iconbutton_button_content/vertically_centered_text/profile_button_label": { "file": "ui/ui_iconbutton.json", "type": "label", "extend": { "name": "new_ui_binding_button_label", "namespace": "common_buttons" } } }, "update_dimensions": { "update_dimensions_update_and_play_button": { "file": "ui/update_dimensions.json", "type": "button", "extend": { "name": "popup_dialog_button", "namespace": "popup_dialog" } }, "update_dimensions_description": { "file": "ui/update_dimensions.json", "type": "label" }, "update_dimensions_label_panel": { "file": "ui/update_dimensions.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "make_backup_checkbox": { "file": "ui/update_dimensions.json", "type": "panel", "extend": { "name": "checkbox", "namespace": "common" }, "children": [ "header_description_stack_panel" ] }, "make_backup_checkbox/header_description_stack_panel": { "file": "ui/update_dimensions.json", "type": "stack_panel", "children": [ "checkbox_visuals", "buffer_panel", "another_panel" ] }, "make_backup_checkbox/header_description_stack_panel/checkbox_visuals": { "file": "ui/update_dimensions.json", "type": "panel", "extend": { "name": "toggle_visuals", "namespace": "common" } }, "make_backup_checkbox/header_description_stack_panel/buffer_panel": { "file": "ui/update_dimensions.json", "type": "panel", "children": [ "label" ] }, "make_backup_checkbox/header_description_stack_panel/buffer_panel/label": { "file": "ui/update_dimensions.json", "type": "label" }, "make_backup_checkbox/header_description_stack_panel/another_panel": { "file": "ui/update_dimensions.json", "type": "panel" }, "world_upgrade": { "file": "ui/update_dimensions.json", "type": "image" }, "update_dimensions_dialog": { "file": "ui/update_dimensions.json", "type": "panel", "extend": { "name": "main_panel_three_buttons", "namespace": "common_dialogs" }, "children": [ "common_panel", "title_label", "panel_indent", "top_button_panel", "bottom_button_panel", "world_upgrade_image" ] }, "update_dimensions_dialog/common_panel": { "file": "ui/update_dimensions.json", "type": "panel", "extend": { "name": "common_panel", "namespace": "common" } }, "update_dimensions_dialog/title_label": { "file": "ui/update_dimensions.json", "type": "panel", "extend": { "name": "title_label", "namespace": "common_dialogs" } }, "update_dimensions_dialog/panel_indent": { "file": "ui/update_dimensions.json", "type": "panel", "children": [ "inside_header_panel" ] }, "update_dimensions_dialog/panel_indent/inside_header_panel": { "file": "ui/update_dimensions.json", "type": "unknown" }, "update_dimensions_dialog/top_button_panel": { "file": "ui/update_dimensions.json", "type": "unknown" }, "update_dimensions_dialog/bottom_button_panel": { "file": "ui/update_dimensions.json", "type": "unknown" }, "update_dimensions_dialog/world_upgrade_image": { "file": "ui/update_dimensions.json", "type": "image", "extend": { "name": "world_upgrade", "namespace": "update_dimensions" } }, "gamepad_helpers": { "file": "ui/update_dimensions.json", "type": "panel", "children": [ "gamepad_helper_a" ] }, "gamepad_helpers/gamepad_helper_a": { "file": "ui/update_dimensions.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_a", "namespace": "common" } }, "update_dimensions_screen": { "file": "ui/update_dimensions.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "update_dimensions_screen_content": { "file": "ui/update_dimensions.json", "type": "panel", "children": [ "update_dimensions_dialog", "gamepad_helpers" ] }, "update_dimensions_screen_content/update_dimensions_dialog": { "file": "ui/update_dimensions.json", "type": "panel", "extend": { "name": "update_dimensions_dialog", "namespace": "update_dimensions" } }, "update_dimensions_screen_content/gamepad_helpers": { "file": "ui/update_dimensions.json", "type": "panel", "extend": { "name": "gamepad_helpers", "namespace": "update_dimensions" } } }, "update_version": { "update_version_screen": { "file": "ui/update_version.json", "type": "screen", "extend": { "name": "modal_screen", "namespace": "common" } }, "update_version_popup": { "file": "ui/update_version.json", "type": "panel", "extend": { "name": "main_panel_one_button", "namespace": "common_dialogs" } }, "background": { "file": "ui/update_version.json", "type": "image", "extend": { "name": "screen_background", "namespace": "common" } }, "update_version_content": { "file": "ui/update_version.json", "type": "stack_panel", "children": [ "top_of_version_panel", "spacer_1px", "update_body_text", "spacer_1px_2" ] }, "update_version_content/top_of_version_panel": { "file": "ui/update_version.json", "type": "stack_panel", "extend": { "name": "picture_and_patch_notes", "namespace": "update_version" } }, "update_version_content/spacer_1px": { "file": "ui/update_version.json", "type": "panel" }, "update_version_content/update_body_text": { "file": "ui/update_version.json", "type": "label", "extend": { "name": "update_body_text", "namespace": "update_version" } }, "update_version_content/spacer_1px_2": { "file": "ui/update_version.json", "type": "panel" }, "patch_notes_panel": { "file": "ui/update_version.json", "type": "image", "children": [ "patch_notes_text" ] }, "patch_notes_panel/patch_notes_text": { "file": "ui/update_version.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "picture_and_patch_notes": { "file": "ui/update_version.json", "type": "stack_panel", "children": [ "patch_notes_image_outline", "patch_notes_panel" ] }, "picture_and_patch_notes/patch_notes_image_outline": { "file": "ui/update_version.json", "type": "image", "children": [ "patch_notes_image" ] }, "picture_and_patch_notes/patch_notes_image_outline/patch_notes_image": { "file": "ui/update_version.json", "type": "image" }, "picture_and_patch_notes/patch_notes_panel": { "file": "ui/update_version.json", "type": "image", "extend": { "name": "patch_notes_panel", "namespace": "update_version" } }, "patch_notes": { "file": "ui/update_version.json", "type": "panel", "children": [ "patch_notes_text" ] }, "patch_notes/patch_notes_text": { "file": "ui/update_version.json", "type": "label" }, "update_body_text": { "file": "ui/update_version.json", "type": "label" }, "update_button": { "file": "ui/update_version.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } } }, "world_recovery": { "world_recovery_screen": { "file": "ui/world_recovery_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "world_recovery_screen_content": { "file": "ui/world_recovery_screen.json", "type": "panel", "children": [ "dialog" ] }, "world_recovery_screen_content/dialog": { "file": "ui/world_recovery_screen.json", "type": "panel", "extend": { "name": "main_panel_one_button", "namespace": "common_dialogs" } }, "description_panel": { "file": "ui/world_recovery_screen.json", "type": "panel", "extend": { "name": "tts_label_focus_wrapper", "namespace": "common" } }, "scrolling_panel": { "file": "ui/world_recovery_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "description_label": { "file": "ui/world_recovery_screen.json", "type": "label" }, "button_panel": { "file": "ui/world_recovery_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "background": { "file": "ui/world_recovery_screen.json", "type": "image", "extend": { "name": "screen_background", "namespace": "common" } } }, "world_templates": { "horizontal_padding": { "file": "ui/world_templates_screen.json", "type": "panel" }, "world_icon": { "file": "ui/world_templates_screen.json", "type": "image" }, "realms_icon": { "file": "ui/world_templates_screen.json", "type": "image" }, "label_background": { "file": "ui/world_templates_screen.json", "type": "image" }, "lock_icon": { "file": "ui/world_templates_screen.json", "type": "image" }, "realms_plus_icon": { "file": "ui/world_templates_screen.json", "type": "image", "extend": { "name": "store_offer_type_icon", "namespace": "common_store" } }, "new_world_toggle": { "file": "ui/world_templates_screen.json", "type": "panel", "extend": { "name": "dark_image_toggle", "namespace": "common_toggles" } }, "new_realm_toggle": { "file": "ui/world_templates_screen.json", "type": "panel", "extend": { "name": "dark_image_toggle", "namespace": "common_toggles" } }, "world_button_content": { "file": "ui/world_templates_screen.json", "type": "stack_panel", "children": [ "horizontal_padding_0", "icon_panel", "horizontal_padding_1", "world_button_label_panel", "horizontal_padding_2" ] }, "world_button_content/horizontal_padding_0": { "file": "ui/world_templates_screen.json", "type": "panel", "extend": { "name": "horizontal_padding", "namespace": "world_templates" } }, "world_button_content/icon_panel": { "file": "ui/world_templates_screen.json", "type": "panel" }, "world_button_content/horizontal_padding_1": { "file": "ui/world_templates_screen.json", "type": "panel", "extend": { "name": "horizontal_padding", "namespace": "world_templates" } }, "world_button_content/world_button_label_panel": { "file": "ui/world_templates_screen.json", "type": "panel", "children": [ "world_button_label" ] }, "world_button_content/world_button_label_panel/world_button_label": { "file": "ui/world_templates_screen.json", "type": "label", "extend": { "name": "world_button_label", "namespace": "world_templates" } }, "world_button_content/horizontal_padding_2": { "file": "ui/world_templates_screen.json", "type": "panel", "extend": { "name": "horizontal_padding", "namespace": "world_templates" } }, "world_button_label": { "file": "ui/world_templates_screen.json", "type": "label" }, "common_button_template": { "file": "ui/world_templates_screen.json", "type": "button", "extend": { "name": "light_glyph_button", "namespace": "common_buttons" } }, "generate_random": { "file": "ui/world_templates_screen.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "help_button": { "file": "ui/world_templates_screen.json", "type": "button", "extend": { "name": "dark_text_button", "namespace": "common_buttons" } }, "grid_button_content_template": { "file": "ui/world_templates_screen.json", "type": "stack_panel", "children": [ "content" ] }, "grid_button_content_template/content": { "file": "ui/world_templates_screen.json", "type": "unknown" }, "label_content_template": { "file": "ui/world_templates_screen.json", "type": "stack_panel", "children": [ "label_panel" ] }, "label_content_template/label_panel": { "file": "ui/world_templates_screen.json", "type": "panel", "children": [ "label_panel_layout" ] }, "label_content_template/label_panel/label_panel_layout": { "file": "ui/world_templates_screen.json", "type": "panel", "children": [ "label" ] }, "label_content_template/label_panel/label_panel_layout/label": { "file": "ui/world_templates_screen.json", "type": "label" }, "my_templates_label": { "file": "ui/world_templates_screen.json", "type": "stack_panel", "extend": { "name": "label_content_template", "namespace": "world_templates" } }, "realms_plus_templates_label": { "file": "ui/world_templates_screen.json", "type": "stack_panel", "extend": { "name": "label_content_template", "namespace": "world_templates" } }, "custom_templates_label": { "file": "ui/world_templates_screen.json", "type": "stack_panel", "extend": { "name": "label_content_template", "namespace": "world_templates" } }, "generate_random_button": { "file": "ui/world_templates_screen.json", "type": "stack_panel", "extend": { "name": "grid_button_content_template", "namespace": "world_templates" } }, "realms_templates_info": { "file": "ui/world_templates_screen.json", "type": "image", "extend": { "name": "label_background", "namespace": "world_templates" }, "children": [ "info_label" ] }, "realms_templates_info/info_label": { "file": "ui/world_templates_screen.json", "type": "label" }, "world_list_text": { "file": "ui/world_templates_screen.json", "type": "label" }, "world_template_screenshot": { "file": "ui/world_templates_screen.json", "type": "image", "children": [ "picture" ] }, "world_template_screenshot/picture": { "file": "ui/world_templates_screen.json", "type": "image" }, "world_template_name": { "file": "ui/world_templates_screen.json", "type": "label", "extend": { "name": "world_list_text", "namespace": "world_templates" } }, "world_template_description": { "file": "ui/world_templates_screen.json", "type": "label", "extend": { "name": "world_list_text", "namespace": "world_templates" } }, "world_template_version": { "file": "ui/world_templates_screen.json", "type": "label", "extend": { "name": "world_list_text", "namespace": "world_templates" } }, "template_download_text": { "file": "ui/world_templates_screen.json", "type": "label", "extend": { "name": "world_list_text", "namespace": "world_templates" } }, "world_template_text_panel": { "file": "ui/world_templates_screen.json", "type": "panel", "children": [ "text_indent" ] }, "world_template_text_panel/text_indent": { "file": "ui/world_templates_screen.json", "type": "panel", "children": [ "top_side", "bottom_side" ] }, "world_template_text_panel/text_indent/top_side": { "file": "ui/world_templates_screen.json", "type": "stack_panel", "children": [ "world_template_name", "download_text_label" ] }, "world_template_text_panel/text_indent/top_side/world_template_name": { "file": "ui/world_templates_screen.json", "type": "label", "extend": { "name": "world_template_name", "namespace": "world_templates" } }, "world_template_text_panel/text_indent/top_side/download_text_label": { "file": "ui/world_templates_screen.json", "type": "label", "extend": { "name": "template_download_text", "namespace": "world_templates" } }, "world_template_text_panel/text_indent/bottom_side": { "file": "ui/world_templates_screen.json", "type": "stack_panel", "children": [ "csb_icon", "pad", "world_template_description", "world_template_version" ] }, "world_template_text_panel/text_indent/bottom_side/csb_icon": { "file": "ui/world_templates_screen.json", "type": "panel", "extend": { "name": "csb_banner", "namespace": "world_templates" } }, "world_template_text_panel/text_indent/bottom_side/pad": { "file": "ui/world_templates_screen.json", "type": "panel" }, "world_template_text_panel/text_indent/bottom_side/world_template_description": { "file": "ui/world_templates_screen.json", "type": "label", "extend": { "name": "world_template_description", "namespace": "world_templates" } }, "world_template_text_panel/text_indent/bottom_side/world_template_version": { "file": "ui/world_templates_screen.json", "type": "label", "extend": { "name": "world_template_version", "namespace": "world_templates" } }, "csb_banner": { "file": "ui/world_templates_screen.json", "type": "panel", "children": [ "banner" ] }, "csb_banner/banner": { "file": "ui/world_templates_screen.json", "type": "image" }, "world_template_content_panel": { "file": "ui/world_templates_screen.json", "type": "stack_panel", "children": [ "world_template_screenshot", "world_template_text_panel", "lock_panel" ] }, "world_template_content_panel/world_template_screenshot": { "file": "ui/world_templates_screen.json", "type": "image", "extend": { "name": "world_template_screenshot", "namespace": "world_templates" } }, "world_template_content_panel/world_template_text_panel": { "file": "ui/world_templates_screen.json", "type": "panel", "extend": { "name": "world_template_text_panel", "namespace": "world_templates" } }, "world_template_content_panel/lock_panel": { "file": "ui/world_templates_screen.json", "type": "panel", "children": [ "lock_icon" ] }, "world_template_content_panel/lock_panel/lock_icon": { "file": "ui/world_templates_screen.json", "type": "image", "extend": { "name": "lock_icon", "namespace": "world_templates" } }, "world_template_item_button": { "file": "ui/world_templates_screen.json", "type": "button", "extend": { "name": "dark_content_button", "namespace": "common_buttons" } }, "realms_plus_template_item_button": { "file": "ui/world_templates_screen.json", "type": "button", "extend": { "name": "dark_content_button", "namespace": "common_buttons" } }, "world_template_item": { "file": "ui/world_templates_screen.json", "type": "stack_panel", "children": [ "world_template_item_button" ] }, "world_template_item/world_template_item_button": { "file": "ui/world_templates_screen.json", "type": "button", "extend": { "name": "world_template_item_button", "namespace": "world_templates" } }, "realms_plus_template_item": { "file": "ui/world_templates_screen.json", "type": "stack_panel", "children": [ "realms_plus_template_item_button" ] }, "realms_plus_template_item/realms_plus_template_item_button": { "file": "ui/world_templates_screen.json", "type": "button", "extend": { "name": "realms_plus_template_item_button", "namespace": "world_templates" } }, "world_template_item_grid": { "file": "ui/world_templates_screen.json", "type": "grid" }, "see_more_templates_button": { "file": "ui/world_templates_screen.json", "type": "button", "extend": { "name": "dark_text_button", "namespace": "common_buttons" } }, "suggested_see_more_button": { "file": "ui/world_templates_screen.json", "type": "button", "extend": { "name": "see_more_templates_button", "namespace": "world_templates" } }, "realms_plus_see_more_button": { "file": "ui/world_templates_screen.json", "type": "button", "extend": { "name": "see_more_templates_button", "namespace": "world_templates" } }, "world_template_inventory_see_more_button": { "file": "ui/world_templates_screen.json", "type": "button", "extend": { "name": "see_more_templates_button", "namespace": "world_templates" } }, "custom_world_template_see_more_button": { "file": "ui/world_templates_screen.json", "type": "button", "extend": { "name": "see_more_templates_button", "namespace": "world_templates" } }, "world_template_section_factory": { "file": "ui/world_templates_screen.json", "type": "stack_panel" }, "suggested_template_section_factory": { "file": "ui/world_templates_screen.json", "type": "stack_panel", "extend": { "name": "world_template_section_factory", "namespace": "world_templates" } }, "realms_plus_template_section_factory": { "file": "ui/world_templates_screen.json", "type": "stack_panel", "extend": { "name": "world_template_section_factory", "namespace": "world_templates" } }, "world_template_inventory_section_factory": { "file": "ui/world_templates_screen.json", "type": "stack_panel", "extend": { "name": "world_template_section_factory", "namespace": "world_templates" } }, "custom_world_template_section_factory": { "file": "ui/world_templates_screen.json", "type": "stack_panel", "extend": { "name": "world_template_section_factory", "namespace": "world_templates" } }, "custom_world_template_item_grid": { "file": "ui/world_templates_screen.json", "type": "grid" }, "no_owned_templates_text_label": { "file": "ui/world_templates_screen.json", "type": "label" }, "no_owned_templates_text": { "file": "ui/world_templates_screen.json", "type": "label", "extend": { "name": "no_owned_templates_text_label", "namespace": "world_templates" } }, "no_template_content_owned": { "file": "ui/world_templates_screen.json", "type": "image", "children": [ "no_template_content_owned_text_panel" ] }, "no_template_content_owned/no_template_content_owned_text_panel": { "file": "ui/world_templates_screen.json", "type": "label", "extend": { "name": "no_owned_templates_text", "namespace": "world_templates" } }, "common_scrolling_panel": { "file": "ui/world_templates_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "common_content": { "file": "ui/world_templates_screen.json", "type": "panel" }, "scrolling_offsets": { "file": "ui/world_templates_screen.json", "type": "panel", "extend": { "name": "common_scrolling_panel", "namespace": "world_templates" } }, "template_scroll_content": { "file": "ui/world_templates_screen.json", "type": "panel", "extend": { "name": "common_content", "namespace": "world_templates" }, "children": [ "scrolling_panel" ] }, "template_scroll_content/scrolling_panel": { "file": "ui/world_templates_screen.json", "type": "panel", "extend": { "name": "scrolling_offsets", "namespace": "world_templates" } }, "common_scroll_pane": { "file": "ui/world_templates_screen.json", "type": "panel" }, "template_scroll_panel": { "file": "ui/world_templates_screen.json", "type": "panel", "extend": { "name": "common_scroll_pane", "namespace": "world_templates" }, "children": [ "world_template_screen_content_stack_panel" ] }, "template_scroll_panel/world_template_screen_content_stack_panel": { "file": "ui/world_templates_screen.json", "type": "stack_panel", "extend": { "name": "world_template_screen_content_stack_panel", "namespace": "world_templates" } }, "world_list_grids_stack": { "file": "ui/world_templates_screen.json", "type": "stack_panel", "children": [ "template_list_panel", "store_panel", "custom_template_panel", "realms_info_panel" ] }, "world_list_grids_stack/template_list_panel": { "file": "ui/world_templates_screen.json", "type": "stack_panel", "children": [ "my_templates_label_panel", "world_template_inventory_section_factory", "template_bottom_padding" ] }, "world_list_grids_stack/template_list_panel/my_templates_label_panel": { "file": "ui/world_templates_screen.json", "type": "stack_panel", "extend": { "name": "my_templates_label", "namespace": "world_templates" } }, "world_list_grids_stack/template_list_panel/world_template_inventory_section_factory": { "file": "ui/world_templates_screen.json", "type": "stack_panel", "extend": { "name": "world_template_inventory_section_factory", "namespace": "world_templates" } }, "world_list_grids_stack/template_list_panel/template_bottom_padding": { "file": "ui/world_templates_screen.json", "type": "panel" }, "world_list_grids_stack/store_panel": { "file": "ui/world_templates_screen.json", "type": "panel", "children": [ "loading_panel", "store_grids" ] }, "world_list_grids_stack/store_panel/loading_panel": { "file": "ui/world_templates_screen.json", "type": "panel", "extend": { "name": "progress_loading", "namespace": "common_store" } }, "world_list_grids_stack/store_panel/store_grids": { "file": "ui/world_templates_screen.json", "type": "stack_panel", "children": [ "realms_plus_list_panel", "suggested_content_panel" ] }, "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel": { "file": "ui/world_templates_screen.json", "type": "stack_panel", "children": [ "realms_plus_label_panel", "realms_plus_template_section_factory", "realms_plus_template_bottom_padding" ] }, "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_label_panel": { "file": "ui/world_templates_screen.json", "type": "stack_panel", "extend": { "name": "realms_plus_templates_label", "namespace": "world_templates" } }, "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_template_section_factory": { "file": "ui/world_templates_screen.json", "type": "stack_panel", "extend": { "name": "realms_plus_template_section_factory", "namespace": "world_templates" } }, "world_list_grids_stack/store_panel/store_grids/realms_plus_list_panel/realms_plus_template_bottom_padding": { "file": "ui/world_templates_screen.json", "type": "panel" }, "world_list_grids_stack/store_panel/store_grids/suggested_content_panel": { "file": "ui/world_templates_screen.json", "type": "stack_panel", "children": [ "suggested_content_offers_title_label", "suggested_template_section_factory", "suggested_template_bottom_padding" ] }, "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_content_offers_title_label": { "file": "ui/world_templates_screen.json", "type": "label", "extend": { "name": "suggested_content_offers_title_label", "namespace": "resource_packs" } }, "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_template_section_factory": { "file": "ui/world_templates_screen.json", "type": "stack_panel", "extend": { "name": "suggested_template_section_factory", "namespace": "world_templates" } }, "world_list_grids_stack/store_panel/store_grids/suggested_content_panel/suggested_template_bottom_padding": { "file": "ui/world_templates_screen.json", "type": "panel" }, "world_list_grids_stack/custom_template_panel": { "file": "ui/world_templates_screen.json", "type": "stack_panel", "children": [ "custom_templates_label_panel", "custom_world_template_section_factory", "custom_template_list_bottom_padding" ] }, "world_list_grids_stack/custom_template_panel/custom_templates_label_panel": { "file": "ui/world_templates_screen.json", "type": "stack_panel", "extend": { "name": "custom_templates_label", "namespace": "world_templates" } }, "world_list_grids_stack/custom_template_panel/custom_world_template_section_factory": { "file": "ui/world_templates_screen.json", "type": "stack_panel", "extend": { "name": "custom_world_template_section_factory", "namespace": "world_templates" } }, "world_list_grids_stack/custom_template_panel/custom_template_list_bottom_padding": { "file": "ui/world_templates_screen.json", "type": "panel" }, "world_list_grids_stack/realms_info_panel": { "file": "ui/world_templates_screen.json", "type": "stack_panel", "children": [ "padding", "realms_templates_info", "open_uri_button" ] }, "world_list_grids_stack/realms_info_panel/padding": { "file": "ui/world_templates_screen.json", "type": "panel" }, "world_list_grids_stack/realms_info_panel/realms_templates_info": { "file": "ui/world_templates_screen.json", "type": "image", "extend": { "name": "realms_templates_info", "namespace": "world_templates" } }, "world_list_grids_stack/realms_info_panel/open_uri_button": { "file": "ui/world_templates_screen.json", "type": "button", "extend": { "name": "open_account_setting_button", "namespace": "disconnect" } }, "world_list_grid_content": { "file": "ui/world_templates_screen.json", "type": "panel", "children": [ "world_list_grids_stack" ] }, "world_list_grid_content/world_list_grids_stack": { "file": "ui/world_templates_screen.json", "type": "stack_panel", "extend": { "name": "world_list_grids_stack", "namespace": "world_templates" } }, "world_template_screen_content_stack_panel": { "file": "ui/world_templates_screen.json", "type": "stack_panel", "children": [ "padding_0", "crossplatform_disabled_panel", "crossplatform_disable_spacer", "generate_random_panel", "generate_random_button_bottom_padding", "world_list_grid_content" ] }, "world_template_screen_content_stack_panel/padding_0": { "file": "ui/world_templates_screen.json", "type": "panel" }, "world_template_screen_content_stack_panel/crossplatform_disabled_panel": { "file": "ui/world_templates_screen.json", "type": "image", "extend": { "name": "label_background", "namespace": "world_templates" }, "children": [ "disable_text" ] }, "world_template_screen_content_stack_panel/crossplatform_disabled_panel/disable_text": { "file": "ui/world_templates_screen.json", "type": "label" }, "world_template_screen_content_stack_panel/crossplatform_disable_spacer": { "file": "ui/world_templates_screen.json", "type": "panel" }, "world_template_screen_content_stack_panel/generate_random_panel": { "file": "ui/world_templates_screen.json", "type": "stack_panel", "extend": { "name": "generate_random_button", "namespace": "world_templates" } }, "world_template_screen_content_stack_panel/generate_random_button_bottom_padding": { "file": "ui/world_templates_screen.json", "type": "panel" }, "world_template_screen_content_stack_panel/world_list_grid_content": { "file": "ui/world_templates_screen.json", "type": "panel", "extend": { "name": "world_list_grid_content", "namespace": "world_templates" } }, "open_account_setting_button": { "file": "ui/world_templates_screen.json", "type": "button", "extend": { "name": "hyperlink_button", "namespace": "common_buttons" } }, "world_templates_screen": { "file": "ui/world_templates_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "world_templates_picker_content": { "file": "ui/world_templates_screen.json", "type": "panel", "children": [ "background" ] }, "world_templates_picker_content/background": { "file": "ui/world_templates_screen.json", "type": "stack_panel", "extend": { "name": "fullscreen_header", "namespace": "common" } } }, "xbl_console_qr_signin": { "banner_fill": { "file": "ui/xbl_console_qr_signin.json", "type": "image" }, "main_panel_qr": { "file": "ui/xbl_console_qr_signin.json", "type": "stack_panel", "children": [ "left_panel", "divider", "right_panel" ] }, "main_panel_qr/left_panel": { "file": "ui/xbl_console_qr_signin.json", "type": "stack_panel", "extend": { "name": "left_panel", "namespace": "xbl_console_qr_signin" } }, "main_panel_qr/divider": { "file": "ui/xbl_console_qr_signin.json", "type": "panel", "extend": { "name": "vertical_divider", "namespace": "common" } }, "main_panel_qr/right_panel": { "file": "ui/xbl_console_qr_signin.json", "type": "stack_panel", "children": [ "scrolling_panel_sizer" ] }, "main_panel_qr/right_panel/scrolling_panel_sizer": { "file": "ui/xbl_console_qr_signin.json", "type": "panel", "children": [ "right_scroll_panel" ] }, "main_panel_qr/right_panel/scrolling_panel_sizer/right_scroll_panel": { "file": "ui/xbl_console_qr_signin.json", "type": "button", "extend": { "name": "scroll_content_focus_border", "namespace": "xbl_console_qr_signin" } }, "common_scrolling_panel": { "file": "ui/xbl_console_qr_signin.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "gamepad_helpers": { "file": "ui/xbl_console_qr_signin.json", "type": "panel", "children": [ "gamepad_helper_b" ] }, "gamepad_helpers/gamepad_helper_b": { "file": "ui/xbl_console_qr_signin.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_b", "namespace": "common" } }, "xbl_console_qr_signin": { "file": "ui/xbl_console_qr_signin.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "xbl_console_qr_signin_screen_content": { "file": "ui/xbl_console_qr_signin.json", "type": "panel", "children": [ "gamepad_helpers", "dialog" ] }, "xbl_console_qr_signin_screen_content/gamepad_helpers": { "file": "ui/xbl_console_qr_signin.json", "type": "panel", "extend": { "name": "gamepad_helpers", "namespace": "xbl_console_qr_signin" } }, "xbl_console_qr_signin_screen_content/dialog": { "file": "ui/xbl_console_qr_signin.json", "type": "panel", "extend": { "name": "dialog", "namespace": "xbl_console_qr_signin" } }, "dialog": { "file": "ui/xbl_console_qr_signin.json", "type": "panel", "extend": { "name": "form_fitting_main_panel_no_buttons", "namespace": "common_dialogs" } }, "scroll_content_focus_border": { "file": "ui/xbl_console_qr_signin.json", "type": "button", "extend": { "name": "non_interact_focus_border_button", "namespace": "common" } }, "left_panel": { "file": "ui/xbl_console_qr_signin.json", "type": "stack_panel", "children": [ "left_header", "padding_1", "left_body", "padding_2", "qr_panel" ] }, "left_panel/left_header": { "file": "ui/xbl_console_qr_signin.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "left_panel/padding_1": { "file": "ui/xbl_console_qr_signin.json", "type": "panel" }, "left_panel/left_body": { "file": "ui/xbl_console_qr_signin.json", "type": "label" }, "left_panel/padding_2": { "file": "ui/xbl_console_qr_signin.json", "type": "panel" }, "left_panel/qr_panel": { "file": "ui/xbl_console_qr_signin.json", "type": "panel", "children": [ "qr_border", "qr_code", "bee_overlay" ] }, "left_panel/qr_panel/qr_border": { "file": "ui/xbl_console_qr_signin.json", "type": "image" }, "left_panel/qr_panel/qr_code": { "file": "ui/xbl_console_qr_signin.json", "type": "custom" }, "left_panel/qr_panel/bee_overlay": { "file": "ui/xbl_console_qr_signin.json", "type": "image" }, "input_panel_wrapper": { "file": "ui/xbl_console_qr_signin.json", "type": "input_panel", "children": [ "r_scroll_panel" ] }, "input_panel_wrapper/r_scroll_panel": { "file": "ui/xbl_console_qr_signin.json", "type": "stack_panel", "extend": { "name": "right_scroll_panel", "namespace": "xbl_console_qr_signin" } }, "right_scroll_panel": { "file": "ui/xbl_console_qr_signin.json", "type": "stack_panel", "children": [ "right_header", "padding_1", "website_message_label", "padding_2", "wrapper_panel_1", "padding_3", "code_message_label", "padding_4", "wrapper_panel_2", "padding_5", "code_message_body1", "padding_6", "code_message_body2", "padding_7", "warning_messages" ] }, "right_scroll_panel/right_header": { "file": "ui/xbl_console_qr_signin.json", "type": "label", "extend": { "name": "minecraftTenLabel", "namespace": "common" } }, "right_scroll_panel/padding_1": { "file": "ui/xbl_console_qr_signin.json", "type": "panel" }, "right_scroll_panel/website_message_label": { "file": "ui/xbl_console_qr_signin.json", "type": "label" }, "right_scroll_panel/padding_2": { "file": "ui/xbl_console_qr_signin.json", "type": "panel" }, "right_scroll_panel/wrapper_panel_1": { "file": "ui/xbl_console_qr_signin.json", "type": "panel", "children": [ "banner_1" ] }, "right_scroll_panel/wrapper_panel_1/banner_1": { "file": "ui/xbl_console_qr_signin.json", "type": "image", "extend": { "name": "banner_fill", "namespace": "xbl_console_qr_signin" }, "children": [ "url_label" ] }, "right_scroll_panel/wrapper_panel_1/banner_1/url_label": { "file": "ui/xbl_console_qr_signin.json", "type": "label" }, "right_scroll_panel/padding_3": { "file": "ui/xbl_console_qr_signin.json", "type": "panel" }, "right_scroll_panel/code_message_label": { "file": "ui/xbl_console_qr_signin.json", "type": "label" }, "right_scroll_panel/padding_4": { "file": "ui/xbl_console_qr_signin.json", "type": "panel" }, "right_scroll_panel/wrapper_panel_2": { "file": "ui/xbl_console_qr_signin.json", "type": "panel", "children": [ "banner_2" ] }, "right_scroll_panel/wrapper_panel_2/banner_2": { "file": "ui/xbl_console_qr_signin.json", "type": "image", "extend": { "name": "banner_fill", "namespace": "xbl_console_qr_signin" }, "children": [ "code_label" ] }, "right_scroll_panel/wrapper_panel_2/banner_2/code_label": { "file": "ui/xbl_console_qr_signin.json", "type": "label" }, "right_scroll_panel/padding_5": { "file": "ui/xbl_console_qr_signin.json", "type": "panel" }, "right_scroll_panel/code_message_body1": { "file": "ui/xbl_console_qr_signin.json", "type": "label" }, "right_scroll_panel/padding_6": { "file": "ui/xbl_console_qr_signin.json", "type": "panel" }, "right_scroll_panel/code_message_body2": { "file": "ui/xbl_console_qr_signin.json", "type": "label" }, "right_scroll_panel/padding_7": { "file": "ui/xbl_console_qr_signin.json", "type": "panel" }, "right_scroll_panel/warning_messages": { "file": "ui/xbl_console_qr_signin.json", "type": "stack_panel", "extend": { "name": "ps4_warning_message_panel", "namespace": "xbl_console_qr_signin" } }, "ps4_warning_message_panel": { "file": "ui/xbl_console_qr_signin.json", "type": "stack_panel", "children": [ "sign_in_account_message", "padding_1", "permanent_linking_message" ] }, "ps4_warning_message_panel/sign_in_account_message": { "file": "ui/xbl_console_qr_signin.json", "type": "label" }, "ps4_warning_message_panel/padding_1": { "file": "ui/xbl_console_qr_signin.json", "type": "panel" }, "ps4_warning_message_panel/permanent_linking_message": { "file": "ui/xbl_console_qr_signin.json", "type": "label" } }, "xbl_console_signin": { "banner_fill": { "file": "ui/xbl_console_signin.json", "type": "image" }, "main_panel": { "file": "ui/xbl_console_signin.json", "type": "stack_panel", "children": [ "padding_0", "message_label_panel", "padding_1", "website_message_label", "banner_1", "padding_2", "code_message_label", "banner_2" ] }, "main_panel/padding_0": { "file": "ui/xbl_console_signin.json", "type": "panel" }, "main_panel/message_label_panel": { "file": "ui/xbl_console_signin.json", "type": "stack_panel", "children": [ "message_label" ] }, "main_panel/message_label_panel/message_label": { "file": "ui/xbl_console_signin.json", "type": "label" }, "main_panel/padding_1": { "file": "ui/xbl_console_signin.json", "type": "panel" }, "main_panel/website_message_label": { "file": "ui/xbl_console_signin.json", "type": "label" }, "main_panel/banner_1": { "file": "ui/xbl_console_signin.json", "type": "image", "extend": { "name": "banner_fill", "namespace": "xbl_console_signin" }, "children": [ "url_label" ] }, "main_panel/banner_1/url_label": { "file": "ui/xbl_console_signin.json", "type": "label" }, "main_panel/padding_2": { "file": "ui/xbl_console_signin.json", "type": "panel" }, "main_panel/code_message_label": { "file": "ui/xbl_console_signin.json", "type": "label" }, "main_panel/banner_2": { "file": "ui/xbl_console_signin.json", "type": "image", "extend": { "name": "banner_fill", "namespace": "xbl_console_signin" }, "children": [ "code_label" ] }, "main_panel/banner_2/code_label": { "file": "ui/xbl_console_signin.json", "type": "label" }, "gamepad_helpers": { "file": "ui/xbl_console_signin.json", "type": "panel", "children": [ "gamepad_helper_b" ] }, "gamepad_helpers/gamepad_helper_b": { "file": "ui/xbl_console_signin.json", "type": "stack_panel", "extend": { "name": "gamepad_helper_b", "namespace": "common" } }, "xbl_console_signin": { "file": "ui/xbl_console_signin.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "xbl_console_signin_screen_content": { "file": "ui/xbl_console_signin.json", "type": "panel", "children": [ "gamepad_helpers", "dialog" ] }, "xbl_console_signin_screen_content/gamepad_helpers": { "file": "ui/xbl_console_signin.json", "type": "panel", "extend": { "name": "gamepad_helpers", "namespace": "xbl_console_signin" } }, "xbl_console_signin_screen_content/dialog": { "file": "ui/xbl_console_signin.json", "type": "panel", "extend": { "name": "dialog", "namespace": "xbl_console_signin" } }, "dialog": { "file": "ui/xbl_console_signin.json", "type": "panel", "extend": { "name": "form_fitting_main_panel_no_buttons", "namespace": "common_dialogs" } } }, "xbl_console_signin_succeeded": { "banner_fill": { "file": "ui/xbl_console_signin_succeeded.json", "type": "image" }, "gamer_score_icon": { "file": "ui/xbl_console_signin_succeeded.json", "type": "image" }, "profile_pic": { "file": "ui/xbl_console_signin_succeeded.json", "type": "custom" }, "gamertag_label": { "file": "ui/xbl_console_signin_succeeded.json", "type": "label" }, "gamer_score_label": { "file": "ui/xbl_console_signin_succeeded.json", "type": "label" }, "gamer_score_panel": { "file": "ui/xbl_console_signin_succeeded.json", "type": "stack_panel", "children": [ "gamer_score_icon", "padding_0", "gamer_score_panel" ] }, "gamer_score_panel/gamer_score_icon": { "file": "ui/xbl_console_signin_succeeded.json", "type": "image", "extend": { "name": "gamer_score_icon", "namespace": "xbl_console_signin_succeeded" } }, "gamer_score_panel/padding_0": { "file": "ui/xbl_console_signin_succeeded.json", "type": "panel" }, "gamer_score_panel/gamer_score_panel": { "file": "ui/xbl_console_signin_succeeded.json", "type": "panel", "children": [ "gamer_score" ] }, "gamer_score_panel/gamer_score_panel/gamer_score": { "file": "ui/xbl_console_signin_succeeded.json", "type": "label", "extend": { "name": "gamer_score_label", "namespace": "xbl_console_signin_succeeded" } }, "button_panel": { "file": "ui/xbl_console_signin_succeeded.json", "type": "panel", "children": [ "play" ] }, "button_panel/play": { "file": "ui/xbl_console_signin_succeeded.json", "type": "button", "extend": { "name": "light_text_button", "namespace": "common_buttons" } }, "text_panel": { "file": "ui/xbl_console_signin_succeeded.json", "type": "panel", "children": [ "new_account_text" ] }, "text_panel/new_account_text": { "file": "ui/xbl_console_signin_succeeded.json", "type": "label" }, "third_party_platform_legal_text": { "file": "ui/xbl_console_signin_succeeded.json", "type": "panel", "extend": { "name": "text_panel", "namespace": "xbl_console_signin_succeeded" } }, "new_account_text_panel": { "file": "ui/xbl_console_signin_succeeded.json", "type": "panel", "extend": { "name": "text_panel", "namespace": "xbl_console_signin_succeeded" } }, "gamer_profile_panel": { "file": "ui/xbl_console_signin_succeeded.json", "type": "stack_panel", "children": [ "picture_panel", "padding_1", "info_panel" ] }, "gamer_profile_panel/picture_panel": { "file": "ui/xbl_console_signin_succeeded.json", "type": "panel", "children": [ "banner" ] }, "gamer_profile_panel/picture_panel/banner": { "file": "ui/xbl_console_signin_succeeded.json", "type": "image", "extend": { "name": "banner_fill", "namespace": "xbl_console_signin_succeeded" }, "children": [ "profile_pic" ] }, "gamer_profile_panel/picture_panel/banner/profile_pic": { "file": "ui/xbl_console_signin_succeeded.json", "type": "custom", "extend": { "name": "profile_pic", "namespace": "xbl_console_signin_succeeded" } }, "gamer_profile_panel/padding_1": { "file": "ui/xbl_console_signin_succeeded.json", "type": "panel" }, "gamer_profile_panel/info_panel": { "file": "ui/xbl_console_signin_succeeded.json", "type": "panel", "children": [ "profile_info_panel" ] }, "gamer_profile_panel/info_panel/profile_info_panel": { "file": "ui/xbl_console_signin_succeeded.json", "type": "stack_panel", "children": [ "gamertag_label", "padding_0", "gamer_score_panel" ] }, "gamer_profile_panel/info_panel/profile_info_panel/gamertag_label": { "file": "ui/xbl_console_signin_succeeded.json", "type": "label", "extend": { "name": "gamertag_label", "namespace": "xbl_console_signin_succeeded" } }, "gamer_profile_panel/info_panel/profile_info_panel/padding_0": { "file": "ui/xbl_console_signin_succeeded.json", "type": "panel" }, "gamer_profile_panel/info_panel/profile_info_panel/gamer_score_panel": { "file": "ui/xbl_console_signin_succeeded.json", "type": "stack_panel", "extend": { "name": "gamer_score_panel", "namespace": "xbl_console_signin_succeeded" } }, "main_panel": { "file": "ui/xbl_console_signin_succeeded.json", "type": "stack_panel", "children": [ "profile", "padding_0", "third_party_legal_text_panel", "padding_1", "new_account_text_panel", "padding_2", "button_panel" ] }, "main_panel/profile": { "file": "ui/xbl_console_signin_succeeded.json", "type": "stack_panel", "extend": { "name": "gamer_profile_panel", "namespace": "xbl_console_signin_succeeded" } }, "main_panel/padding_0": { "file": "ui/xbl_console_signin_succeeded.json", "type": "panel" }, "main_panel/third_party_legal_text_panel": { "file": "ui/xbl_console_signin_succeeded.json", "type": "panel", "extend": { "name": "third_party_platform_legal_text", "namespace": "xbl_console_signin_succeeded" } }, "main_panel/padding_1": { "file": "ui/xbl_console_signin_succeeded.json", "type": "panel" }, "main_panel/new_account_text_panel": { "file": "ui/xbl_console_signin_succeeded.json", "type": "panel", "extend": { "name": "new_account_text_panel", "namespace": "xbl_console_signin_succeeded" } }, "main_panel/padding_2": { "file": "ui/xbl_console_signin_succeeded.json", "type": "panel" }, "main_panel/button_panel": { "file": "ui/xbl_console_signin_succeeded.json", "type": "panel", "extend": { "name": "button_panel", "namespace": "xbl_console_signin_succeeded" } }, "xbl_console_signin_succeeded": { "file": "ui/xbl_console_signin_succeeded.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "xbl_console_signin_succeeded_screen_content": { "file": "ui/xbl_console_signin_succeeded.json", "type": "panel", "children": [ "dialog" ] }, "xbl_console_signin_succeeded_screen_content/dialog": { "file": "ui/xbl_console_signin_succeeded.json", "type": "panel", "extend": { "name": "dialog", "namespace": "xbl_console_signin_succeeded" } }, "dialog": { "file": "ui/xbl_console_signin_succeeded.json", "type": "panel", "extend": { "name": "form_fitting_main_panel_no_buttons", "namespace": "common_dialogs" } } }, "xbl_immediate_signin": { "xbl_immediate_signin_screen": { "file": "ui/xbl_immediate_signin.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "xbl_immediate_signin_screen_content": { "file": "ui/xbl_immediate_signin.json", "type": "panel", "children": [ "root_panel" ] }, "xbl_immediate_signin_screen_content/root_panel": { "file": "ui/xbl_immediate_signin.json", "type": "panel" } }, "win10_trial_conversion": { "padding_horizontal": { "file": "ui/win10_trial_conversion_screen.json", "type": "panel" }, "padding_vertical": { "file": "ui/win10_trial_conversion_screen.json", "type": "panel" }, "padding_vertical_3": { "file": "ui/win10_trial_conversion_screen.json", "type": "panel" }, "background_image": { "file": "ui/win10_trial_conversion_screen.json", "type": "image" }, "title_image": { "file": "ui/win10_trial_conversion_screen.json", "type": "image" }, "focus_border": { "file": "ui/win10_trial_conversion_screen.json", "type": "image" }, "pack_image": { "file": "ui/win10_trial_conversion_screen.json", "type": "image" }, "pack_image_panel": { "file": "ui/win10_trial_conversion_screen.json", "type": "panel", "children": [ "pack_image" ] }, "pack_image_panel/pack_image": { "file": "ui/win10_trial_conversion_screen.json", "type": "image", "extend": { "name": "pack_image_with_border", "namespace": "win10_trial_conversion" } }, "title_image_border": { "file": "ui/win10_trial_conversion_screen.json", "type": "image", "children": [ "image" ] }, "title_image_border/image": { "file": "ui/win10_trial_conversion_screen.json", "type": "image", "extend": { "name": "title_image", "namespace": "win10_trial_conversion" } }, "pack_image_with_border": { "file": "ui/win10_trial_conversion_screen.json", "type": "image", "children": [ "image" ] }, "pack_image_with_border/image": { "file": "ui/win10_trial_conversion_screen.json", "type": "image", "extend": { "name": "pack_image", "namespace": "win10_trial_conversion" } }, "label_panel": { "file": "ui/win10_trial_conversion_screen.json", "type": "label" }, "button_panel": { "file": "ui/win10_trial_conversion_screen.json", "type": "stack_panel", "children": [ "padding_5", "buy_now_button", "padding_6" ] }, "button_panel/padding_5": { "file": "ui/win10_trial_conversion_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "win10_trial_conversion" } }, "button_panel/buy_now_button": { "file": "ui/win10_trial_conversion_screen.json", "type": "button", "extend": { "name": "buy_now_button", "namespace": "win10_trial_conversion" } }, "button_panel/padding_6": { "file": "ui/win10_trial_conversion_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "win10_trial_conversion" } }, "buy_now_button": { "file": "ui/win10_trial_conversion_screen.json", "type": "button", "extend": { "name": "light_content_button", "namespace": "common_buttons" } }, "buy_now_label": { "file": "ui/win10_trial_conversion_screen.json", "type": "panel", "children": [ "button_label" ] }, "buy_now_label/button_label": { "file": "ui/win10_trial_conversion_screen.json", "type": "label", "extend": { "name": "label_panel", "namespace": "win10_trial_conversion" } }, "is_focused": { "file": "ui/win10_trial_conversion_screen.json", "type": "image", "extend": { "name": "focus_border", "namespace": "win10_trial_conversion" } }, "filler_panel": { "file": "ui/win10_trial_conversion_screen.json", "type": "panel" }, "focus_border_button": { "file": "ui/win10_trial_conversion_screen.json", "type": "button", "extend": { "name": "button", "namespace": "common" }, "children": [ "default", "hover", "pressed" ] }, "focus_border_button/default": { "file": "ui/win10_trial_conversion_screen.json", "type": "panel", "extend": { "name": "filler_panel", "namespace": "win10_trial_conversion" } }, "focus_border_button/hover": { "file": "ui/win10_trial_conversion_screen.json", "type": "image", "extend": { "name": "is_focused", "namespace": "win10_trial_conversion" } }, "focus_border_button/pressed": { "file": "ui/win10_trial_conversion_screen.json", "type": "image", "extend": { "name": "is_focused", "namespace": "win10_trial_conversion" } }, "grid_item": { "file": "ui/win10_trial_conversion_screen.json", "type": "stack_panel", "children": [ "padding_1", "pack_image_pane", "padding_2", "pack_panel", "padding_3" ] }, "grid_item/padding_1": { "file": "ui/win10_trial_conversion_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "win10_trial_conversion" } }, "grid_item/pack_image_pane": { "file": "ui/win10_trial_conversion_screen.json", "type": "panel", "extend": { "name": "pack_image_panel", "namespace": "win10_trial_conversion" } }, "grid_item/padding_2": { "file": "ui/win10_trial_conversion_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "win10_trial_conversion" } }, "grid_item/pack_panel": { "file": "ui/win10_trial_conversion_screen.json", "type": "stack_panel", "extend": { "name": "pack_panel", "namespace": "win10_trial_conversion" } }, "grid_item/padding_3": { "file": "ui/win10_trial_conversion_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "win10_trial_conversion" } }, "grid_item_vertical": { "file": "ui/win10_trial_conversion_screen.json", "type": "panel", "children": [ "grid_item_horizontal", "pack_grid" ] }, "grid_item_vertical/grid_item_horizontal": { "file": "ui/win10_trial_conversion_screen.json", "type": "stack_panel", "extend": { "name": "grid_item", "namespace": "win10_trial_conversion" } }, "grid_item_vertical/pack_grid": { "file": "ui/win10_trial_conversion_screen.json", "type": "button", "extend": { "name": "focus_border_button", "namespace": "win10_trial_conversion" } }, "pack_panel": { "file": "ui/win10_trial_conversion_screen.json", "type": "stack_panel", "children": [ "packtitle", "padding_2", "packdesc" ] }, "pack_panel/packtitle": { "file": "ui/win10_trial_conversion_screen.json", "type": "label", "extend": { "name": "label_panel", "namespace": "win10_trial_conversion" } }, "pack_panel/padding_2": { "file": "ui/win10_trial_conversion_screen.json", "type": "panel", "extend": { "name": "padding_vertical", "namespace": "win10_trial_conversion" } }, "pack_panel/packdesc": { "file": "ui/win10_trial_conversion_screen.json", "type": "label", "extend": { "name": "label_panel", "namespace": "win10_trial_conversion" } }, "collection_main_panel": { "file": "ui/win10_trial_conversion_screen.json", "type": "stack_panel", "children": [ "padding_1", "title_panel", "padding_2", "title_image_panel", "padding_3", "offer_panel", "padding_4", "button_panel", "padding_5", "include_panel", "padding_6", "pack_list_grid" ] }, "collection_main_panel/padding_1": { "file": "ui/win10_trial_conversion_screen.json", "type": "panel", "extend": { "name": "padding_vertical", "namespace": "win10_trial_conversion" } }, "collection_main_panel/title_panel": { "file": "ui/win10_trial_conversion_screen.json", "type": "label", "extend": { "name": "label_panel", "namespace": "win10_trial_conversion" } }, "collection_main_panel/padding_2": { "file": "ui/win10_trial_conversion_screen.json", "type": "panel", "extend": { "name": "padding_vertical", "namespace": "win10_trial_conversion" } }, "collection_main_panel/title_image_panel": { "file": "ui/win10_trial_conversion_screen.json", "type": "panel", "children": [ "border_image" ] }, "collection_main_panel/title_image_panel/border_image": { "file": "ui/win10_trial_conversion_screen.json", "type": "image", "extend": { "name": "title_image_border", "namespace": "win10_trial_conversion" } }, "collection_main_panel/padding_3": { "file": "ui/win10_trial_conversion_screen.json", "type": "panel", "extend": { "name": "padding_vertical", "namespace": "win10_trial_conversion" } }, "collection_main_panel/offer_panel": { "file": "ui/win10_trial_conversion_screen.json", "type": "stack_panel", "children": [ "padding_1", "label_panel", "padding_2" ] }, "collection_main_panel/offer_panel/padding_1": { "file": "ui/win10_trial_conversion_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "win10_trial_conversion" } }, "collection_main_panel/offer_panel/label_panel": { "file": "ui/win10_trial_conversion_screen.json", "type": "panel", "children": [ "offer_label" ] }, "collection_main_panel/offer_panel/label_panel/offer_label": { "file": "ui/win10_trial_conversion_screen.json", "type": "label", "extend": { "name": "label_panel", "namespace": "win10_trial_conversion" } }, "collection_main_panel/offer_panel/padding_2": { "file": "ui/win10_trial_conversion_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "win10_trial_conversion" } }, "collection_main_panel/padding_4": { "file": "ui/win10_trial_conversion_screen.json", "type": "panel", "extend": { "name": "padding_vertical", "namespace": "win10_trial_conversion" } }, "collection_main_panel/button_panel": { "file": "ui/win10_trial_conversion_screen.json", "type": "stack_panel", "extend": { "name": "button_panel", "namespace": "win10_trial_conversion" } }, "collection_main_panel/padding_5": { "file": "ui/win10_trial_conversion_screen.json", "type": "panel", "extend": { "name": "padding_vertical_3", "namespace": "win10_trial_conversion" } }, "collection_main_panel/include_panel": { "file": "ui/win10_trial_conversion_screen.json", "type": "stack_panel", "children": [ "padding_1", "include_label" ] }, "collection_main_panel/include_panel/padding_1": { "file": "ui/win10_trial_conversion_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "win10_trial_conversion" } }, "collection_main_panel/include_panel/include_label": { "file": "ui/win10_trial_conversion_screen.json", "type": "label", "extend": { "name": "label_panel", "namespace": "win10_trial_conversion" } }, "collection_main_panel/padding_6": { "file": "ui/win10_trial_conversion_screen.json", "type": "panel", "extend": { "name": "padding_vertical", "namespace": "win10_trial_conversion" } }, "collection_main_panel/pack_list_grid": { "file": "ui/win10_trial_conversion_screen.json", "type": "grid" }, "background_image_with_border": { "file": "ui/win10_trial_conversion_screen.json", "type": "image", "children": [ "main_panel_no_buttons" ] }, "background_image_with_border/main_panel_no_buttons": { "file": "ui/win10_trial_conversion_screen.json", "type": "stack_panel", "extend": { "name": "collection_main_panel", "namespace": "win10_trial_conversion" } }, "win10_trial_conversion_main_panel": { "file": "ui/win10_trial_conversion_screen.json", "type": "panel", "children": [ "scrolling_panel" ] }, "win10_trial_conversion_main_panel/scrolling_panel": { "file": "ui/win10_trial_conversion_screen.json", "type": "panel", "extend": { "name": "scrolling_panel", "namespace": "common" } }, "vertical_main_panel": { "file": "ui/win10_trial_conversion_screen.json", "type": "stack_panel", "children": [ "padding_1", "panel", "padding_2" ] }, "vertical_main_panel/padding_1": { "file": "ui/win10_trial_conversion_screen.json", "type": "panel", "extend": { "name": "padding_vertical", "namespace": "win10_trial_conversion" } }, "vertical_main_panel/panel": { "file": "ui/win10_trial_conversion_screen.json", "type": "stack_panel", "extend": { "name": "horizontal_main_panel", "namespace": "win10_trial_conversion" } }, "vertical_main_panel/padding_2": { "file": "ui/win10_trial_conversion_screen.json", "type": "panel", "extend": { "name": "padding_vertical", "namespace": "win10_trial_conversion" } }, "horizontal_main_panel": { "file": "ui/win10_trial_conversion_screen.json", "type": "stack_panel", "children": [ "padding_1", "starter_collection", "padding_2", "master_collection" ] }, "horizontal_main_panel/padding_1": { "file": "ui/win10_trial_conversion_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "win10_trial_conversion" } }, "horizontal_main_panel/starter_collection": { "file": "ui/win10_trial_conversion_screen.json", "type": "image", "extend": { "name": "background_image_with_border", "namespace": "win10_trial_conversion" } }, "horizontal_main_panel/padding_2": { "file": "ui/win10_trial_conversion_screen.json", "type": "panel", "extend": { "name": "padding_horizontal", "namespace": "win10_trial_conversion" } }, "horizontal_main_panel/master_collection": { "file": "ui/win10_trial_conversion_screen.json", "type": "image", "extend": { "name": "background_image_with_border", "namespace": "win10_trial_conversion" } }, "win10_trial_conversion_screen": { "file": "ui/win10_trial_conversion_screen.json", "type": "screen", "extend": { "name": "base_screen", "namespace": "common" } }, "win10_trial_conversion_panel": { "file": "ui/win10_trial_conversion_screen.json", "type": "stack_panel", "extend": { "name": "fullscreen_header", "namespace": "common" } } } }