asajs v4.0.4
This commit is contained in:
parent
2c0a0f40cf
commit
bd91adc83c
4 changed files with 505 additions and 312 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "asajs",
|
"name": "asajs",
|
||||||
"version": "4.0.3",
|
"version": "4.0.4-preview",
|
||||||
"description": "Create your Minecraft JSON-UI resource packs using JavaScript",
|
"description": "Create your Minecraft JSON-UI resource packs using JavaScript",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Minecraft",
|
"Minecraft",
|
||||||
|
|
|
||||||
|
|
@ -557,6 +557,7 @@ export enum ItemAuxID {
|
||||||
GOLDEN_BOOTS = 25296896,
|
GOLDEN_BOOTS = 25296896,
|
||||||
GOLDEN_CARROT = 20447232,
|
GOLDEN_CARROT = 20447232,
|
||||||
GOLDEN_CHESTPLATE = 25165824,
|
GOLDEN_CHESTPLATE = 25165824,
|
||||||
|
GOLDEN_DANDELION = -71499776,
|
||||||
GOLDEN_HELMET = 25100288,
|
GOLDEN_HELMET = 25100288,
|
||||||
GOLDEN_HOE = 23920640,
|
GOLDEN_HOE = 23920640,
|
||||||
GOLDEN_HORSE_ARMOR = 37421056,
|
GOLDEN_HORSE_ARMOR = 37421056,
|
||||||
|
|
|
||||||
|
|
@ -1330,10 +1330,20 @@ export type ChatType = {
|
||||||
"keyboard_image_panel": { type: T.PANEL, children: 'keyboard_image' | 'down_arrow_image' },
|
"keyboard_image_panel": { type: T.PANEL, children: 'keyboard_image' | 'down_arrow_image' },
|
||||||
"keyboard_image_panel/keyboard_image": { type: T.IMAGE, children: string },
|
"keyboard_image_panel/keyboard_image": { type: T.IMAGE, children: string },
|
||||||
"keyboard_image_panel/down_arrow_image": { type: T.IMAGE, children: string },
|
"keyboard_image_panel/down_arrow_image": { type: T.IMAGE, children: string },
|
||||||
|
"new_messages": { type: T.IMAGE, children: 'focus_border' },
|
||||||
|
"new_messages/focus_border": { type: T.IMAGE, children: 'stack' },
|
||||||
|
"new_messages/focus_border/stack": { type: T.STACK_PANEL, children: 'arrow_icon' | 'separator' | 'tooltip_text' },
|
||||||
|
"new_messages/focus_border/stack/arrow_icon": { type: T.IMAGE, children: string },
|
||||||
|
"new_messages/focus_border/stack/separator": { type: T.PANEL, children: string },
|
||||||
|
"new_messages/focus_border/stack/tooltip_text": { type: T.LABEL, children: string },
|
||||||
"small_button": { type: T.BUTTON, children: string },
|
"small_button": { type: T.BUTTON, children: string },
|
||||||
"keyboard_button": { type: T.BUTTON, children: string },
|
"keyboard_button": { type: T.BUTTON, children: string },
|
||||||
"chat_settings_button": { type: T.BUTTON, children: string },
|
"chat_settings_button": { type: T.BUTTON, children: string },
|
||||||
"send_button": { type: T.BUTTON, children: string },
|
"send_button": { type: T.BUTTON, children: string },
|
||||||
|
"new_messages_button": { type: T.BUTTON, children: 'default' | 'pressed' | 'hover' },
|
||||||
|
"new_messages_button/default": { type: T.IMAGE, children: string },
|
||||||
|
"new_messages_button/pressed": { type: T.IMAGE, children: string },
|
||||||
|
"new_messages_button/hover": { type: T.IMAGE, children: string },
|
||||||
"messages_text": { type: T.PANEL, children: 'text' },
|
"messages_text": { type: T.PANEL, children: 'text' },
|
||||||
"messages_text/text": { type: T.LABEL, children: string },
|
"messages_text/text": { type: T.LABEL, children: string },
|
||||||
"message_tts_wrapper": { type: T.PANEL, children: string },
|
"message_tts_wrapper": { type: T.PANEL, children: string },
|
||||||
|
|
@ -1389,10 +1399,11 @@ export type ChatType = {
|
||||||
"chat_header/title_panel/chat_header_content_area/icon": { type: T.STACK_PANEL, children: string },
|
"chat_header/title_panel/chat_header_content_area/icon": { type: T.STACK_PANEL, children: string },
|
||||||
"chat_header/title_panel/chat_header_content_area/paste_button": { type: T.BUTTON, children: string },
|
"chat_header/title_panel/chat_header_content_area/paste_button": { type: T.BUTTON, children: string },
|
||||||
"chat_screen": { type: T.SCREEN, children: string },
|
"chat_screen": { type: T.SCREEN, children: string },
|
||||||
"chat_screen_content": { type: T.PANEL, children: 'messages_panel' | 'chat_bottom_panel' | 'chat_top_panel' | 'autocomplete_commands_panel' | 'host_main_panel' | 'popup_factory' },
|
"chat_screen_content": { type: T.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": { type: T.PANEL, children: string },
|
"chat_screen_content/messages_panel": { type: T.PANEL, children: string },
|
||||||
"chat_screen_content/chat_bottom_panel": { type: T.STACK_PANEL, children: string },
|
"chat_screen_content/chat_bottom_panel": { type: T.STACK_PANEL, children: string },
|
||||||
"chat_screen_content/chat_top_panel": { type: T.IMAGE, children: string },
|
"chat_screen_content/chat_top_panel": { type: T.IMAGE, children: string },
|
||||||
|
"chat_screen_content/new_messages_button": { type: T.BUTTON, children: string },
|
||||||
"chat_screen_content/autocomplete_commands_panel": { type: T.PANEL, children: string },
|
"chat_screen_content/autocomplete_commands_panel": { type: T.PANEL, children: string },
|
||||||
"chat_screen_content/host_main_panel": { type: T.PANEL, children: string },
|
"chat_screen_content/host_main_panel": { type: T.PANEL, children: string },
|
||||||
"chat_screen_content/popup_factory": { type: T.FACTORY, children: string },
|
"chat_screen_content/popup_factory": { type: T.FACTORY, children: string },
|
||||||
|
|
@ -5576,6 +5587,8 @@ export type HudType = {
|
||||||
"chat_grid_item/chat_background/chat_text": { type: T.LABEL, children: string },
|
"chat_grid_item/chat_background/chat_text": { type: T.LABEL, children: string },
|
||||||
"chat_panel": { type: T.PANEL, children: 'stack_panel' },
|
"chat_panel": { type: T.PANEL, children: 'stack_panel' },
|
||||||
"chat_panel/stack_panel": { type: T.STACK_PANEL, children: string },
|
"chat_panel/stack_panel": { type: T.STACK_PANEL, children: string },
|
||||||
|
"subtitle_panel": { type: T.PANEL, children: 'stack_panel' },
|
||||||
|
"subtitle_panel/stack_panel": { type: T.STACK_PANEL, children: string },
|
||||||
"item_durability": { type: T.CUSTOM, children: string },
|
"item_durability": { type: T.CUSTOM, children: string },
|
||||||
"item_storage": { type: T.CUSTOM, children: string },
|
"item_storage": { type: T.CUSTOM, children: string },
|
||||||
"container_item_lock_overlay": { type: T.PANEL, children: string },
|
"container_item_lock_overlay": { type: T.PANEL, children: string },
|
||||||
|
|
@ -5747,7 +5760,7 @@ export type HudType = {
|
||||||
"wysiwyg_reset_modal_cancel": { type: T.BUTTON, children: string },
|
"wysiwyg_reset_modal_cancel": { type: T.BUTTON, children: string },
|
||||||
"wysiwyg_close_without_saving_modal_ok": { type: T.BUTTON, children: string },
|
"wysiwyg_close_without_saving_modal_ok": { type: T.BUTTON, children: string },
|
||||||
"wysiwyg_close_without_saving_modal_cancel": { type: T.BUTTON, children: string },
|
"wysiwyg_close_without_saving_modal_cancel": { type: T.BUTTON, children: string },
|
||||||
"root_panel": { type: T.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' | '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": { type: T.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": { type: T.IMAGE, children: 'layout_customization_reset_modal' },
|
"root_panel/layout_customization_reset": { type: T.IMAGE, children: 'layout_customization_reset_modal' },
|
||||||
"root_panel/layout_customization_reset/layout_customization_reset_modal": { type: T.PANEL, children: string },
|
"root_panel/layout_customization_reset/layout_customization_reset_modal": { type: T.PANEL, children: string },
|
||||||
"root_panel/layout_customization_close_without_saving": { type: T.IMAGE, children: 'layout_customization_close_without_saving_modal' },
|
"root_panel/layout_customization_close_without_saving": { type: T.IMAGE, children: 'layout_customization_close_without_saving_modal' },
|
||||||
|
|
@ -5762,6 +5775,9 @@ export type HudType = {
|
||||||
"root_panel/layout_customization_hint_saved/layout_customization_hint_saved": { type: T.LABEL, children: string },
|
"root_panel/layout_customization_hint_saved/layout_customization_hint_saved": { type: T.LABEL, children: string },
|
||||||
"root_panel/left_helpers": { type: T.UNKNOWN, children: string },
|
"root_panel/left_helpers": { type: T.UNKNOWN, children: string },
|
||||||
"root_panel/right_helpers": { type: T.PANEL, children: string },
|
"root_panel/right_helpers": { type: T.PANEL, children: string },
|
||||||
|
"root_panel/subtitle_stack": { type: T.STACK_PANEL, children: 'subtitle_padding' | 'subtitle_panel' },
|
||||||
|
"root_panel/subtitle_stack/subtitle_padding": { type: T.PANEL, children: string },
|
||||||
|
"root_panel/subtitle_stack/subtitle_panel": { type: T.PANEL, children: string },
|
||||||
"root_panel/emote_expediate_helpers": { type: T.PANEL, children: string },
|
"root_panel/emote_expediate_helpers": { type: T.PANEL, children: string },
|
||||||
"root_panel/centered_gui_elements": { type: T.PANEL, children: string },
|
"root_panel/centered_gui_elements": { type: T.PANEL, children: string },
|
||||||
"root_panel/centered_gui_elements_at_bottom_middle": { type: T.PANEL, children: string },
|
"root_panel/centered_gui_elements_at_bottom_middle": { type: T.PANEL, children: string },
|
||||||
|
|
@ -5941,9 +5957,6 @@ export type CraftingType = {
|
||||||
"inventory_y_gamepad_helper": { type: T.STACK_PANEL, children: string },
|
"inventory_y_gamepad_helper": { type: T.STACK_PANEL, children: string },
|
||||||
"inventory_a_gamepad_helper": { type: T.STACK_PANEL, children: string },
|
"inventory_a_gamepad_helper": { type: T.STACK_PANEL, children: string },
|
||||||
"inventory_b_gamepad_helper": { type: T.STACK_PANEL, children: string },
|
"inventory_b_gamepad_helper": { type: T.STACK_PANEL, children: string },
|
||||||
"gamepad_helper_bumpers": { type: T.PANEL, children: 'gamepad_helper_left_bumper' | 'gamepad_helper_right_bumper' },
|
|
||||||
"gamepad_helper_bumpers/gamepad_helper_left_bumper": { type: T.STACK_PANEL, children: string },
|
|
||||||
"gamepad_helper_bumpers/gamepad_helper_right_bumper": { type: T.STACK_PANEL, children: string },
|
|
||||||
"gamepad_helper_left_trigger": { type: T.STACK_PANEL, children: string },
|
"gamepad_helper_left_trigger": { type: T.STACK_PANEL, children: string },
|
||||||
"gamepad_helper_right_trigger": { type: T.STACK_PANEL, children: string },
|
"gamepad_helper_right_trigger": { type: T.STACK_PANEL, children: string },
|
||||||
"container_gamepad_helpers_second_row": { type: T.STACK_PANEL, children: 'buffer_panel_left' | 'left_thumbstick_visibility' | 'fill_panel' | 'right_thumbstick_visibility' | 'buffer_panel_right' },
|
"container_gamepad_helpers_second_row": { type: T.STACK_PANEL, children: 'buffer_panel_left' | 'left_thumbstick_visibility' | 'fill_panel' | 'right_thumbstick_visibility' | 'buffer_panel_right' },
|
||||||
|
|
@ -5954,26 +5967,16 @@ export type CraftingType = {
|
||||||
"container_gamepad_helpers_second_row/right_thumbstick_visibility": { type: T.PANEL, children: 'gamepad_helper_thumbstick_right' },
|
"container_gamepad_helpers_second_row/right_thumbstick_visibility": { type: T.PANEL, children: 'gamepad_helper_thumbstick_right' },
|
||||||
"container_gamepad_helpers_second_row/right_thumbstick_visibility/gamepad_helper_thumbstick_right": { type: T.STACK_PANEL, children: string },
|
"container_gamepad_helpers_second_row/right_thumbstick_visibility/gamepad_helper_thumbstick_right": { type: T.STACK_PANEL, children: string },
|
||||||
"container_gamepad_helpers_second_row/buffer_panel_right": { type: T.PANEL, children: string },
|
"container_gamepad_helpers_second_row/buffer_panel_right": { type: T.PANEL, children: string },
|
||||||
"crafting_root_panel": { type: T.INPUT_PANEL, children: string },
|
|
||||||
"drop_item_panel": { type: T.INPUT_PANEL, children: string },
|
|
||||||
"inventory_container_slot_button": { type: T.BUTTON, children: string },
|
"inventory_container_slot_button": { type: T.BUTTON, children: string },
|
||||||
"creative_hotbar_container_slot_button": { type: T.BUTTON, children: string },
|
"creative_hotbar_container_slot_button": { type: T.BUTTON, children: string },
|
||||||
"no_coalesce_container_slot_button": { type: T.BUTTON, children: string },
|
"no_coalesce_container_slot_button": { type: T.BUTTON, children: string },
|
||||||
"creative_no_coalesce_container_slot_button": { type: T.BUTTON, children: string },
|
"creative_no_coalesce_container_slot_button": { type: T.BUTTON, children: string },
|
||||||
"output_no_coalesce_container_slot_button": { type: T.BUTTON, children: string },
|
"output_no_coalesce_container_slot_button": { type: T.BUTTON, children: string },
|
||||||
"tab_image": { type: T.IMAGE, children: string },
|
|
||||||
"item_renderer": { type: T.CUSTOM, children: string },
|
"item_renderer": { type: T.CUSTOM, children: string },
|
||||||
"inventory_icon": { type: T.IMAGE, children: string },
|
|
||||||
"recipe_book_icon": { type: T.IMAGE, children: string },
|
|
||||||
"creative_icon": { type: T.IMAGE, children: string },
|
|
||||||
"icon_image": { type: T.IMAGE, children: string },
|
|
||||||
"tab_front": { type: T.IMAGE, children: string },
|
|
||||||
"tab_back": { type: T.IMAGE, children: string },
|
|
||||||
"equipment_icon": { type: T.IMAGE, children: string },
|
"equipment_icon": { type: T.IMAGE, children: string },
|
||||||
"construction_icon": { type: T.IMAGE, children: string },
|
"construction_icon": { type: T.IMAGE, children: string },
|
||||||
"nature_icon": { type: T.IMAGE, children: string },
|
"nature_icon": { type: T.IMAGE, children: string },
|
||||||
"search_icon": { type: T.IMAGE, children: string },
|
"items_icon": { type: T.IMAGE, children: string },
|
||||||
"miscellaneous_icon": { type: T.IMAGE, children: string },
|
|
||||||
"empty_tab_panel": { type: T.PANEL, children: 'img' },
|
"empty_tab_panel": { type: T.PANEL, children: 'img' },
|
||||||
"empty_tab_panel/img": { type: T.UNKNOWN, children: string },
|
"empty_tab_panel/img": { type: T.UNKNOWN, children: string },
|
||||||
"top_tab": { type: T.PANEL, children: string },
|
"top_tab": { type: T.PANEL, children: string },
|
||||||
|
|
@ -5999,6 +6002,7 @@ export type CraftingType = {
|
||||||
"tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_creative": { type: T.PANEL, children: string },
|
"tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_creative": { type: T.PANEL, children: string },
|
||||||
"tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_survival": { type: T.PANEL, children: string },
|
"tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_survival": { type: T.PANEL, children: string },
|
||||||
"tab_content_padding": { type: T.PANEL, children: string },
|
"tab_content_padding": { type: T.PANEL, children: string },
|
||||||
|
"creative_label": { type: T.LABEL, children: string },
|
||||||
"tab_content": { type: T.PANEL, children: 'tab_content_search_bar_panel' | 'nodrop_zone' },
|
"tab_content": { type: T.PANEL, children: 'tab_content_search_bar_panel' | 'nodrop_zone' },
|
||||||
"tab_content/tab_content_search_bar_panel": { type: T.STACK_PANEL, children: 'vertical_padding_1' | 'creative_label_and_filter_toggle_holder' | 'vertical_padding_2' | 'search_and_filter_panel' | 'vertical_padding_3' | 'scroll_pane' },
|
"tab_content/tab_content_search_bar_panel": { type: T.STACK_PANEL, children: 'vertical_padding_1' | 'creative_label_and_filter_toggle_holder' | 'vertical_padding_2' | 'search_and_filter_panel' | 'vertical_padding_3' | 'scroll_pane' },
|
||||||
"tab_content/tab_content_search_bar_panel/vertical_padding_1": { type: T.PANEL, children: string },
|
"tab_content/tab_content_search_bar_panel/vertical_padding_1": { type: T.PANEL, children: string },
|
||||||
|
|
@ -6122,26 +6126,12 @@ export type CraftingType = {
|
||||||
"inventory_container_item/item_lock_cell_image": { type: T.IMAGE, children: string },
|
"inventory_container_item/item_lock_cell_image": { type: T.IMAGE, children: string },
|
||||||
"inventory_container_item/bundle_slot_panel": { type: T.PANEL, children: string },
|
"inventory_container_item/bundle_slot_panel": { type: T.PANEL, children: string },
|
||||||
"grid_item_for_recipe_book": { type: T.INPUT_PANEL, children: string },
|
"grid_item_for_recipe_book": { type: T.INPUT_PANEL, children: string },
|
||||||
|
"scroll_grid": { type: T.GRID, children: string },
|
||||||
"scroll_grid_panel": { type: T.INPUT_PANEL, children: 'grid' },
|
"scroll_grid_panel": { type: T.INPUT_PANEL, children: 'grid' },
|
||||||
"scroll_grid_panel/grid": { type: T.GRID, children: string },
|
"scroll_grid_panel/grid": { type: T.GRID, children: string },
|
||||||
"scroll_grid": { type: T.GRID, children: string },
|
|
||||||
"scroll_panel": { type: T.PANEL, children: string },
|
|
||||||
"recipe_book_scroll_panel": { type: T.PANEL, children: string },
|
"recipe_book_scroll_panel": { type: T.PANEL, children: string },
|
||||||
"creative_label": { type: T.LABEL, children: string },
|
"scroll_panel": { type: T.PANEL, children: string },
|
||||||
"filter_toggle": { type: T.PANEL, children: string },
|
"filter_toggle": { type: T.PANEL, children: string },
|
||||||
"toolbar_background": { type: T.IMAGE, children: string },
|
|
||||||
"layout_toggle_content": { type: T.PANEL, children: 'image' | 'icon' },
|
|
||||||
"layout_toggle_content/image": { type: T.UNKNOWN, children: string },
|
|
||||||
"layout_toggle_content/icon": { type: T.UNKNOWN, children: string },
|
|
||||||
"layout_template_toggle": { type: T.TOGGLE, children: string },
|
|
||||||
"layout_toggle": { type: T.PANEL, children: string },
|
|
||||||
"creative_layout_toggle": { type: T.PANEL, children: string },
|
|
||||||
"recipe_book_layout_toggle": { type: T.PANEL, children: string },
|
|
||||||
"survival_layout_toggle": { type: T.PANEL, children: string },
|
|
||||||
"help_button": { type: T.BUTTON, children: 'default' | 'hover' | 'pressed' },
|
|
||||||
"help_button/default": { type: T.IMAGE, children: string },
|
|
||||||
"help_button/hover": { type: T.IMAGE, children: string },
|
|
||||||
"help_button/pressed": { type: T.IMAGE, children: string },
|
|
||||||
"player_inventory": { type: T.INPUT_PANEL, children: 'common_panel' | 'inventory_panel_top_half' | 'inventory_panel_bottom_half' | 'hotbar_grid' },
|
"player_inventory": { type: T.INPUT_PANEL, children: 'common_panel' | 'inventory_panel_top_half' | 'inventory_panel_bottom_half' | 'hotbar_grid' },
|
||||||
"player_inventory/common_panel": { type: T.PANEL, children: string },
|
"player_inventory/common_panel": { type: T.PANEL, children: string },
|
||||||
"player_inventory/inventory_panel_top_half": { type: T.UNKNOWN, children: string },
|
"player_inventory/inventory_panel_top_half": { type: T.UNKNOWN, children: string },
|
||||||
|
|
@ -6156,21 +6146,17 @@ export type CraftingType = {
|
||||||
"creative_hotbar_panel": { type: T.INPUT_PANEL, children: 'creative_hotbar_background' },
|
"creative_hotbar_panel": { type: T.INPUT_PANEL, children: 'creative_hotbar_background' },
|
||||||
"creative_hotbar_panel/creative_hotbar_background": { type: T.IMAGE, children: 'hotbar_grid' },
|
"creative_hotbar_panel/creative_hotbar_background": { type: T.IMAGE, children: 'hotbar_grid' },
|
||||||
"creative_hotbar_panel/creative_hotbar_background/hotbar_grid": { type: T.GRID, children: string },
|
"creative_hotbar_panel/creative_hotbar_background/hotbar_grid": { type: T.GRID, children: string },
|
||||||
"center_fold": { type: T.INPUT_PANEL, children: 'center_bg' },
|
|
||||||
"center_fold/center_bg": { type: T.IMAGE, children: string },
|
|
||||||
"toolbar_panel": { type: T.INPUT_PANEL, children: 'toolbar_background' },
|
"toolbar_panel": { type: T.INPUT_PANEL, children: 'toolbar_background' },
|
||||||
"toolbar_panel/toolbar_background": { type: T.IMAGE, children: 'toolbar_stack_panel' },
|
"toolbar_panel/toolbar_background": { type: T.IMAGE, children: 'toolbar_stack_panel' },
|
||||||
"toolbar_panel/toolbar_background/toolbar_stack_panel": { type: T.STACK_PANEL, children: 'left_trigger_anchor' | 'padding_0' | 'creative_layout_toggle_panel' | 'padding_1' | 'recipe_book_layout_toggle_panel_survival' | 'recipe_book_layout_toggle_panel_creative' | '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": { type: T.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": { type: T.PANEL, children: 'gamepad_helper_left_trigger' },
|
"toolbar_panel/toolbar_background/toolbar_stack_panel/left_trigger_anchor": { type: T.PANEL, children: 'gamepad_helper_left_trigger' },
|
||||||
"toolbar_panel/toolbar_background/toolbar_stack_panel/left_trigger_anchor/gamepad_helper_left_trigger": { type: T.STACK_PANEL, children: string },
|
"toolbar_panel/toolbar_background/toolbar_stack_panel/left_trigger_anchor/gamepad_helper_left_trigger": { type: T.STACK_PANEL, children: string },
|
||||||
"toolbar_panel/toolbar_background/toolbar_stack_panel/padding_0": { type: T.PANEL, children: string },
|
"toolbar_panel/toolbar_background/toolbar_stack_panel/padding_0": { type: T.PANEL, children: string },
|
||||||
"toolbar_panel/toolbar_background/toolbar_stack_panel/creative_layout_toggle_panel": { type: T.PANEL, children: 'creative_layout_toggle' },
|
"toolbar_panel/toolbar_background/toolbar_stack_panel/creative_layout_toggle_panel": { type: T.PANEL, children: 'creative_layout_toggle' },
|
||||||
"toolbar_panel/toolbar_background/toolbar_stack_panel/creative_layout_toggle_panel/creative_layout_toggle": { type: T.PANEL, children: string },
|
"toolbar_panel/toolbar_background/toolbar_stack_panel/creative_layout_toggle_panel/creative_layout_toggle": { type: T.PANEL, children: string },
|
||||||
"toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": { type: T.PANEL, children: string },
|
"toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": { type: T.PANEL, children: string },
|
||||||
"toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_survival": { type: T.PANEL, children: 'recipe_book_layout_toggle' },
|
"toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel": { type: T.PANEL, children: 'recipe_book_layout_toggle' },
|
||||||
"toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_survival/recipe_book_layout_toggle": { type: T.PANEL, children: string },
|
"toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel/recipe_book_layout_toggle": { type: T.PANEL, children: string },
|
||||||
"toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_creative": { type: T.PANEL, children: 'recipe_book_layout_toggle' },
|
|
||||||
"toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_creative/recipe_book_layout_toggle": { type: T.PANEL, children: string },
|
|
||||||
"toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": { type: T.PANEL, children: string },
|
"toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": { type: T.PANEL, children: string },
|
||||||
"toolbar_panel/toolbar_background/toolbar_stack_panel/survival_layout_toggle_panel": { type: T.PANEL, children: 'survival_layout_toggle' },
|
"toolbar_panel/toolbar_background/toolbar_stack_panel/survival_layout_toggle_panel": { type: T.PANEL, children: 'survival_layout_toggle' },
|
||||||
"toolbar_panel/toolbar_background/toolbar_stack_panel/survival_layout_toggle_panel/survival_layout_toggle": { type: T.PANEL, children: string },
|
"toolbar_panel/toolbar_background/toolbar_stack_panel/survival_layout_toggle_panel/survival_layout_toggle": { type: T.PANEL, children: string },
|
||||||
|
|
@ -6185,7 +6171,6 @@ export type CraftingType = {
|
||||||
"inventory_screen_base": { type: T.SCREEN, children: string },
|
"inventory_screen_base": { type: T.SCREEN, children: string },
|
||||||
"crafting_screen": { type: T.SCREEN, children: string },
|
"crafting_screen": { type: T.SCREEN, children: string },
|
||||||
"inventory_screen": { type: T.SCREEN, children: string },
|
"inventory_screen": { type: T.SCREEN, children: string },
|
||||||
"recipe_book_toggle_image": { type: T.IMAGE, children: string },
|
|
||||||
"recipe_inventory_screen_content": { type: T.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": { type: T.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": { type: T.STACK_PANEL, children: 'recipe_book' | 'center_fold' | 'survival_padding' | 'player_inventory' | 'toolbar_anchor' },
|
"recipe_inventory_screen_content/content_stack_panel": { type: T.STACK_PANEL, children: 'recipe_book' | 'center_fold' | 'survival_padding' | 'player_inventory' | 'toolbar_anchor' },
|
||||||
"recipe_inventory_screen_content/content_stack_panel/recipe_book": { type: T.INPUT_PANEL, children: string },
|
"recipe_inventory_screen_content/content_stack_panel/recipe_book": { type: T.INPUT_PANEL, children: string },
|
||||||
|
|
@ -6531,7 +6516,8 @@ export type InviteType = {
|
||||||
"friends_category/padding": { type: T.PANEL, children: string },
|
"friends_category/padding": { type: T.PANEL, children: string },
|
||||||
"frame_label": { type: T.LABEL, children: string },
|
"frame_label": { type: T.LABEL, children: string },
|
||||||
"friend_panel": { type: T.PANEL, children: string },
|
"friend_panel": { type: T.PANEL, children: string },
|
||||||
"scrolling_content_stack": { type: T.STACK_PANEL, children: '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": { type: T.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": { type: T.PANEL, children: string },
|
||||||
"scrolling_content_stack/message": { type: T.PANEL, children: 'frame_label' },
|
"scrolling_content_stack/message": { type: T.PANEL, children: 'frame_label' },
|
||||||
"scrolling_content_stack/message/frame_label": { type: T.LABEL, children: string },
|
"scrolling_content_stack/message/frame_label": { type: T.LABEL, children: string },
|
||||||
"scrolling_content_stack/online_platform": { type: T.PANEL, children: 'frame_label' },
|
"scrolling_content_stack/online_platform": { type: T.PANEL, children: 'frame_label' },
|
||||||
|
|
@ -6559,6 +6545,12 @@ export type InviteType = {
|
||||||
"scrolling_content_stack/offline_xbox_live_friend_list_category": { type: T.STACK_PANEL, children: string },
|
"scrolling_content_stack/offline_xbox_live_friend_list_category": { type: T.STACK_PANEL, children: string },
|
||||||
"scrolling_content_stack/no_xbox_live_friends": { type: T.PANEL, children: 'no_friends_tts_wrapper' },
|
"scrolling_content_stack/no_xbox_live_friends": { type: T.PANEL, children: 'no_friends_tts_wrapper' },
|
||||||
"scrolling_content_stack/no_xbox_live_friends/no_friends_tts_wrapper": { type: T.PANEL, children: string },
|
"scrolling_content_stack/no_xbox_live_friends/no_friends_tts_wrapper": { type: T.PANEL, children: string },
|
||||||
|
"invite_party_panel": { type: T.PANEL, children: 'frame_label' | 'frame_description' | 'our_toggle' | 'border_outline' },
|
||||||
|
"invite_party_panel/frame_label": { type: T.LABEL, children: string },
|
||||||
|
"invite_party_panel/frame_description": { type: T.LABEL, children: string },
|
||||||
|
"invite_party_panel/our_toggle": { type: T.TOGGLE, children: string },
|
||||||
|
"invite_party_panel/border_outline": { type: T.IMAGE, children: string },
|
||||||
|
"friend_button_test": { type: T.TOGGLE, children: string },
|
||||||
"progress_bar_and_scrolling_content_panel": { type: T.PANEL, children: 'progress_loading_bars' | 'invite_scrolling_area' },
|
"progress_bar_and_scrolling_content_panel": { type: T.PANEL, children: 'progress_loading_bars' | 'invite_scrolling_area' },
|
||||||
"progress_bar_and_scrolling_content_panel/progress_loading_bars": { type: T.IMAGE, children: string },
|
"progress_bar_and_scrolling_content_panel/progress_loading_bars": { type: T.IMAGE, children: string },
|
||||||
"progress_bar_and_scrolling_content_panel/invite_scrolling_area": { type: T.STACK_PANEL, children: string },
|
"progress_bar_and_scrolling_content_panel/invite_scrolling_area": { type: T.STACK_PANEL, children: string },
|
||||||
|
|
@ -7112,7 +7104,9 @@ export type SdlTextRowType = {
|
||||||
}
|
}
|
||||||
|
|
||||||
export type MobEffectType = {
|
export type MobEffectType = {
|
||||||
"effect_background": { type: T.IMAGE, children: string },
|
"effect_background": { type: T.PANEL, children: 'default_background' | 'ambient_background' },
|
||||||
|
"effect_background/default_background": { type: T.IMAGE, children: string },
|
||||||
|
"effect_background/ambient_background": { type: T.IMAGE, children: string },
|
||||||
"main_background": { type: T.IMAGE, children: string },
|
"main_background": { type: T.IMAGE, children: string },
|
||||||
"button_background": { type: T.IMAGE, children: string },
|
"button_background": { type: T.IMAGE, children: string },
|
||||||
"effect_name": { type: T.LABEL, children: string },
|
"effect_name": { type: T.LABEL, children: string },
|
||||||
|
|
@ -7122,7 +7116,7 @@ export type MobEffectType = {
|
||||||
"mob_effect_grid_panel/mob_effect_grid": { type: T.GRID, children: string },
|
"mob_effect_grid_panel/mob_effect_grid": { type: T.GRID, children: string },
|
||||||
"mob_effect_grid": { type: T.GRID, children: string },
|
"mob_effect_grid": { type: T.GRID, children: string },
|
||||||
"mob_effect_grid_item": { type: T.PANEL, children: 'bg' | 'name' | 'timer' | 'icon' },
|
"mob_effect_grid_item": { type: T.PANEL, children: 'bg' | 'name' | 'timer' | 'icon' },
|
||||||
"mob_effect_grid_item/bg": { type: T.IMAGE, children: string },
|
"mob_effect_grid_item/bg": { type: T.PANEL, children: string },
|
||||||
"mob_effect_grid_item/name": { type: T.LABEL, children: string },
|
"mob_effect_grid_item/name": { type: T.LABEL, children: string },
|
||||||
"mob_effect_grid_item/timer": { type: T.LABEL, children: string },
|
"mob_effect_grid_item/timer": { type: T.LABEL, children: string },
|
||||||
"mob_effect_grid_item/icon": { type: T.IMAGE, children: string },
|
"mob_effect_grid_item/icon": { type: T.IMAGE, children: string },
|
||||||
|
|
@ -7547,27 +7541,50 @@ export type PauseType = {
|
||||||
"invite_players_button": { type: T.BUTTON, children: string },
|
"invite_players_button": { type: T.BUTTON, children: string },
|
||||||
"buy_button": { type: T.BUTTON, children: string },
|
"buy_button": { type: T.BUTTON, children: string },
|
||||||
"quit_button": { type: T.BUTTON, children: string },
|
"quit_button": { type: T.BUTTON, children: string },
|
||||||
|
"icon_button_hover_text": { type: T.IMAGE, children: 'tooltip_text' },
|
||||||
|
"icon_button_hover_text/tooltip_text": { type: T.LABEL, children: string },
|
||||||
|
"icon_button_tooltip_trigger": { type: T.BUTTON, children: 'default' | 'pressed' | 'hover' },
|
||||||
|
"icon_button_tooltip_trigger/default": { type: T.PANEL, children: string },
|
||||||
|
"icon_button_tooltip_trigger/pressed": { type: T.PANEL, children: string },
|
||||||
|
"icon_button_tooltip_trigger/hover": { type: T.IMAGE, children: string },
|
||||||
"feedback_button": { type: T.BUTTON, children: string },
|
"feedback_button": { type: T.BUTTON, children: string },
|
||||||
"feedback_icon_button": { type: T.PANEL, children: 'feedback_button' },
|
"feedback_icon_button": { type: T.PANEL, children: 'feedback_button' | 'tooltip_trigger' },
|
||||||
"feedback_icon_button/feedback_button": { type: T.BUTTON, children: string },
|
"feedback_icon_button/feedback_button": { type: T.BUTTON, children: string },
|
||||||
|
"feedback_icon_button/tooltip_trigger": { type: T.BUTTON, children: string },
|
||||||
"take_screenshot_gamepad_button_content": { type: T.PANEL, children: 'button_y' | 'take_screenshot_icon' },
|
"take_screenshot_gamepad_button_content": { type: T.PANEL, children: 'button_y' | 'take_screenshot_icon' },
|
||||||
"take_screenshot_gamepad_button_content/button_y": { type: T.STACK_PANEL, children: string },
|
"take_screenshot_gamepad_button_content/button_y": { type: T.STACK_PANEL, children: string },
|
||||||
"take_screenshot_gamepad_button_content/take_screenshot_icon": { type: T.IMAGE, children: string },
|
"take_screenshot_gamepad_button_content/take_screenshot_icon": { type: T.IMAGE, children: string },
|
||||||
"take_screenshot_gamepad_button": { type: T.BUTTON, children: string },
|
"take_screenshot_gamepad_button": { type: T.BUTTON, children: string },
|
||||||
"achievements_button_small": { type: T.BUTTON, children: string },
|
"achievements_button_small": { type: T.BUTTON, children: string },
|
||||||
|
"achievements_button_small_with_tooltip": { type: T.PANEL, children: 'button' | 'tooltip_trigger' },
|
||||||
|
"achievements_button_small_with_tooltip/button": { type: T.BUTTON, children: string },
|
||||||
|
"achievements_button_small_with_tooltip/tooltip_trigger": { type: T.BUTTON, children: string },
|
||||||
"settings_button_small": { type: T.BUTTON, children: string },
|
"settings_button_small": { type: T.BUTTON, children: string },
|
||||||
|
"settings_button_small_with_tooltip": { type: T.PANEL, children: 'button' | 'tooltip_trigger' },
|
||||||
|
"settings_button_small_with_tooltip/button": { type: T.BUTTON, children: string },
|
||||||
|
"settings_button_small_with_tooltip/tooltip_trigger": { type: T.BUTTON, children: string },
|
||||||
"take_screenshot_button": { type: T.BUTTON, children: string },
|
"take_screenshot_button": { type: T.BUTTON, children: string },
|
||||||
|
"take_screenshot_button_with_tooltip": { type: T.PANEL, children: 'button' | 'tooltip_trigger' },
|
||||||
|
"take_screenshot_button_with_tooltip/button": { type: T.BUTTON, children: string },
|
||||||
|
"take_screenshot_button_with_tooltip/tooltip_trigger": { type: T.BUTTON, children: string },
|
||||||
|
"take_screenshot_gamepad_button_with_tooltip": { type: T.PANEL, children: 'button' | 'tooltip_trigger' },
|
||||||
|
"take_screenshot_gamepad_button_with_tooltip/button": { type: T.BUTTON, children: string },
|
||||||
|
"take_screenshot_gamepad_button_with_tooltip/tooltip_trigger": { type: T.BUTTON, children: string },
|
||||||
"pause_screen": { type: T.SCREEN, children: string },
|
"pause_screen": { type: T.SCREEN, children: string },
|
||||||
"pause_screen_content": { type: T.PANEL, children: 'pause_screen_main_panels' | 'skin_panel' | 'friendsdrawer_button_panel' | 'gamepad_helpers' | 'keyboard_helpers' },
|
"pause_screen_content": { type: T.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": { type: T.STACK_PANEL, children: string },
|
"pause_screen_content/pause_screen_main_panels": { type: T.STACK_PANEL, children: string },
|
||||||
"pause_screen_content/skin_panel": { type: T.PANEL, children: string },
|
"pause_screen_content/skin_panel": { type: T.PANEL, children: string },
|
||||||
"pause_screen_content/friendsdrawer_button_panel": { type: T.PANEL, children: string },
|
"pause_screen_content/top_right_panel": { type: T.STACK_PANEL, children: string },
|
||||||
"pause_screen_content/gamepad_helpers": { type: T.PANEL, children: string },
|
"pause_screen_content/gamepad_helpers": { type: T.PANEL, children: string },
|
||||||
"pause_screen_content/keyboard_helpers": { type: T.PANEL, children: string },
|
"pause_screen_content/keyboard_helpers": { type: T.PANEL, children: string },
|
||||||
"friendsdrawer_button_panel": { type: T.PANEL, children: 'friendsdrawer_container_stack_panel' },
|
"pause_screen_content/debug_drawer_button_panel": { type: T.PANEL, children: string },
|
||||||
"friendsdrawer_button_panel/friendsdrawer_container_stack_panel": { type: T.PANEL, children: 'friendsdrawer_button' | 'friends_drawer_ftue_popup' },
|
"top_right_panel": { type: T.STACK_PANEL, children: 'pause_panel' | 'friendsdrawer_button_panel' },
|
||||||
"friendsdrawer_button_panel/friendsdrawer_container_stack_panel/friendsdrawer_button": { type: T.BUTTON, children: string },
|
"top_right_panel/pause_panel": { type: T.STACK_PANEL, children: string },
|
||||||
"friendsdrawer_button_panel/friendsdrawer_container_stack_panel/friends_drawer_ftue_popup": { type: T.BUTTON, children: string },
|
"top_right_panel/friendsdrawer_button_panel": { type: T.PANEL, children: string },
|
||||||
|
"friendsdrawer_button_panel": { type: T.PANEL, children: 'friendsdrawer_button' | 'friends_drawer_ftue_popup_wrapper' },
|
||||||
|
"friendsdrawer_button_panel/friendsdrawer_button": { type: T.BUTTON, children: string },
|
||||||
|
"friendsdrawer_button_panel/friends_drawer_ftue_popup_wrapper": { type: T.PANEL, children: 'friends_drawer_ftue_popup' },
|
||||||
|
"friendsdrawer_button_panel/friends_drawer_ftue_popup_wrapper/friends_drawer_ftue_popup": { type: T.BUTTON, children: string },
|
||||||
"pause_screen_main_panels": { type: T.STACK_PANEL, children: 'menu' },
|
"pause_screen_main_panels": { type: T.STACK_PANEL, children: 'menu' },
|
||||||
"pause_screen_main_panels/menu": { type: T.IMAGE, children: string },
|
"pause_screen_main_panels/menu": { type: T.IMAGE, children: string },
|
||||||
"left_buttons_panel": { type: T.IMAGE, children: 'filler' | 'trialTime' | 'the_rest_panel' },
|
"left_buttons_panel": { type: T.IMAGE, children: 'filler' | 'trialTime' | 'the_rest_panel' },
|
||||||
|
|
@ -7579,14 +7596,14 @@ export type PauseType = {
|
||||||
"smaller_buttons_panel/stacked_column/fill_1": { type: T.PANEL, children: string },
|
"smaller_buttons_panel/stacked_column/fill_1": { type: T.PANEL, children: string },
|
||||||
"smaller_buttons_panel/stacked_column/side_padding": { type: T.PANEL, children: string },
|
"smaller_buttons_panel/stacked_column/side_padding": { type: T.PANEL, children: string },
|
||||||
"smaller_buttons_panel/stacked_column/small_settings_button": { type: T.INPUT_PANEL, children: 'small_settings_btn' },
|
"smaller_buttons_panel/stacked_column/small_settings_button": { type: T.INPUT_PANEL, children: 'small_settings_btn' },
|
||||||
"smaller_buttons_panel/stacked_column/small_settings_button/small_settings_btn": { type: T.BUTTON, children: string },
|
"smaller_buttons_panel/stacked_column/small_settings_button/small_settings_btn": { type: T.PANEL, children: string },
|
||||||
"smaller_buttons_panel/stacked_column/small_settings_padding": { type: T.PANEL, children: string },
|
"smaller_buttons_panel/stacked_column/small_settings_padding": { type: T.PANEL, children: string },
|
||||||
"smaller_buttons_panel/stacked_column/small_achievements_button": { type: T.INPUT_PANEL, children: 'small_achievements_btn' },
|
"smaller_buttons_panel/stacked_column/small_achievements_button": { type: T.INPUT_PANEL, children: 'small_achievements_btn' },
|
||||||
"smaller_buttons_panel/stacked_column/small_achievements_button/small_achievements_btn": { type: T.BUTTON, children: string },
|
"smaller_buttons_panel/stacked_column/small_achievements_button/small_achievements_btn": { type: T.PANEL, children: string },
|
||||||
"smaller_buttons_panel/stacked_column/small_achievements_padding": { type: T.PANEL, children: string },
|
"smaller_buttons_panel/stacked_column/small_achievements_padding": { type: T.PANEL, children: string },
|
||||||
"smaller_buttons_panel/stacked_column/take_screenshot_btn": { type: T.INPUT_PANEL, children: 'take_screenshot_button' | 'take_screenshot_gamepad_button' },
|
"smaller_buttons_panel/stacked_column/take_screenshot_btn": { type: T.INPUT_PANEL, children: 'take_screenshot_button' | 'take_screenshot_gamepad_button' },
|
||||||
"smaller_buttons_panel/stacked_column/take_screenshot_btn/take_screenshot_button": { type: T.BUTTON, children: string },
|
"smaller_buttons_panel/stacked_column/take_screenshot_btn/take_screenshot_button": { type: T.PANEL, children: string },
|
||||||
"smaller_buttons_panel/stacked_column/take_screenshot_btn/take_screenshot_gamepad_button": { type: T.BUTTON, children: string },
|
"smaller_buttons_panel/stacked_column/take_screenshot_btn/take_screenshot_gamepad_button": { type: T.PANEL, children: string },
|
||||||
"smaller_buttons_panel/stacked_column/screenshot_padding": { type: T.PANEL, children: string },
|
"smaller_buttons_panel/stacked_column/screenshot_padding": { type: T.PANEL, children: string },
|
||||||
"smaller_buttons_panel/stacked_column/fill_3": { type: T.PANEL, children: string },
|
"smaller_buttons_panel/stacked_column/fill_3": { type: T.PANEL, children: string },
|
||||||
"smaller_buttons_panel/padding_bottom": { type: T.PANEL, children: string },
|
"smaller_buttons_panel/padding_bottom": { type: T.PANEL, children: string },
|
||||||
|
|
@ -7603,30 +7620,38 @@ export type PauseType = {
|
||||||
"the_rest_panel/fill_3": { type: T.PANEL, children: string },
|
"the_rest_panel/fill_3": { type: T.PANEL, children: string },
|
||||||
"paused_text": { type: T.LABEL, children: string },
|
"paused_text": { type: T.LABEL, children: string },
|
||||||
"green_tag": { type: T.IMAGE, children: string },
|
"green_tag": { type: T.IMAGE, children: string },
|
||||||
"paused_text_panel": { type: T.IMAGE, children: 'horizontal_stack' },
|
"paused_text_panel_grey": { type: T.IMAGE, children: 'pause' },
|
||||||
"paused_text_panel/pause": { type: T.LABEL, children: string },
|
"paused_text_panel_grey/pause": { type: T.LABEL, children: string },
|
||||||
"paused_text_panel/horizontal_stack": { type: T.STACK_PANEL, children: 'pause_icon' | 'fill_1' | 'pause' },
|
"paused_text_panel_green": { type: T.IMAGE, children: 'horizontal_stack' },
|
||||||
"paused_text_panel/horizontal_stack/pause_icon": { type: T.IMAGE, children: string },
|
"paused_text_panel_green/horizontal_stack": { type: T.STACK_PANEL, children: 'pause_icon' | 'fill_1' | 'pause' },
|
||||||
"paused_text_panel/horizontal_stack/fill_1": { type: T.PANEL, children: string },
|
"paused_text_panel_green/horizontal_stack/pause_icon": { type: T.IMAGE, children: string },
|
||||||
"paused_text_panel/horizontal_stack/pause": { type: T.LABEL, children: string },
|
"paused_text_panel_green/horizontal_stack/fill_1": { type: T.PANEL, children: string },
|
||||||
|
"paused_text_panel_green/horizontal_stack/pause": { type: T.LABEL, children: string },
|
||||||
"transparent_background": { type: T.IMAGE, children: string },
|
"transparent_background": { type: T.IMAGE, children: string },
|
||||||
"non_transparent_background": { type: T.IMAGE, children: string },
|
"non_transparent_background": { type: T.IMAGE, children: string },
|
||||||
"menu_the_rest_panel": { type: T.PANEL, children: 'menu_button_control' },
|
"menu_the_rest_panel": { type: T.PANEL, children: 'menu_button_control' },
|
||||||
"menu_the_rest_panel/menu_button_control": { type: T.IMAGE, children: string },
|
"menu_the_rest_panel/menu_button_control": { type: T.IMAGE, children: string },
|
||||||
"menu_button_control": { type: T.IMAGE, children: 'menu_background' },
|
"menu_button_control": { type: T.IMAGE, children: 'menu_background' },
|
||||||
"menu_button_control/menu_background": { type: T.IMAGE, children: string },
|
"menu_button_control/menu_background": { type: T.IMAGE, children: string },
|
||||||
"pause_announcement_panel_type": { type: T.STACK_PANEL, children: 'horizontal_stack' },
|
"pause_announcement_panel_grey": { type: T.STACK_PANEL, children: 'horizontal_stack' },
|
||||||
"pause_announcement_panel_type/horizontal_stack": { type: T.STACK_PANEL, children: 'fill_1' | 'pause_text' | 'fill_2' },
|
"pause_announcement_panel_grey/horizontal_stack": { type: T.STACK_PANEL, children: 'fill_1' | 'pause_text' | 'fill_2' },
|
||||||
"pause_announcement_panel_type/horizontal_stack/fill_1": { type: T.PANEL, children: string },
|
"pause_announcement_panel_grey/horizontal_stack/fill_1": { type: T.PANEL, children: string },
|
||||||
"pause_announcement_panel_type/horizontal_stack/pause_text": { type: T.IMAGE, children: string },
|
"pause_announcement_panel_grey/horizontal_stack/pause_text": { type: T.IMAGE, children: string },
|
||||||
"pause_announcement_panel_type/horizontal_stack/fill_2": { type: T.PANEL, children: string },
|
"pause_announcement_panel_grey/horizontal_stack/fill_2": { type: T.PANEL, children: string },
|
||||||
|
"pause_announcement_panel_green": { type: T.STACK_PANEL, children: 'horizontal_stack' },
|
||||||
|
"pause_announcement_panel_green/horizontal_stack": { type: T.STACK_PANEL, children: 'fill_1' | 'pause_text' | 'fill_2' },
|
||||||
|
"pause_announcement_panel_green/horizontal_stack/fill_1": { type: T.PANEL, children: string },
|
||||||
|
"pause_announcement_panel_green/horizontal_stack/pause_text": { type: T.IMAGE, children: string },
|
||||||
|
"pause_announcement_panel_green/horizontal_stack/fill_2": { type: T.PANEL, children: string },
|
||||||
"menu_background": { type: T.IMAGE, children: 'button_panel' },
|
"menu_background": { type: T.IMAGE, children: 'button_panel' },
|
||||||
"menu_background/button_panel": { type: T.STACK_PANEL, children: 'title_image' | 'fill_1' | 'return_to_game_button' | 'return' | '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": { type: T.STACK_PANEL, children: 'title_image' | 'fill_1' | 'return_to_game_button' | 'return' | 'settings_button' | 'settings' | '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": { type: T.PANEL, children: 'image' },
|
"menu_background/button_panel/title_image": { type: T.PANEL, children: 'image' },
|
||||||
"menu_background/button_panel/title_image/image": { type: T.IMAGE, children: string },
|
"menu_background/button_panel/title_image/image": { type: T.IMAGE, children: string },
|
||||||
"menu_background/button_panel/fill_1": { type: T.PANEL, children: string },
|
"menu_background/button_panel/fill_1": { type: T.PANEL, children: string },
|
||||||
"menu_background/button_panel/return_to_game_button": { type: T.BUTTON, children: string },
|
"menu_background/button_panel/return_to_game_button": { type: T.BUTTON, children: string },
|
||||||
"menu_background/button_panel/return": { type: T.PANEL, children: string },
|
"menu_background/button_panel/return": { type: T.PANEL, children: string },
|
||||||
|
"menu_background/button_panel/settings_button": { type: T.BUTTON, children: string },
|
||||||
|
"menu_background/button_panel/settings": { type: T.PANEL, children: string },
|
||||||
"menu_background/button_panel/realms_stories_button_panel": { type: T.PANEL, children: string },
|
"menu_background/button_panel/realms_stories_button_panel": { type: T.PANEL, children: string },
|
||||||
"menu_background/button_panel/realms_stories": { type: T.PANEL, children: string },
|
"menu_background/button_panel/realms_stories": { type: T.PANEL, children: string },
|
||||||
"menu_background/button_panel/buy_button": { type: T.BUTTON, children: string },
|
"menu_background/button_panel/buy_button": { type: T.BUTTON, children: string },
|
||||||
|
|
@ -7721,6 +7746,12 @@ export type PauseType = {
|
||||||
"gamepad_helpers/gamepad_helper_y": { type: T.STACK_PANEL, children: string },
|
"gamepad_helpers/gamepad_helper_y": { type: T.STACK_PANEL, children: string },
|
||||||
"keyboard_helpers": { type: T.PANEL, children: 'keyboard_helper_keys' },
|
"keyboard_helpers": { type: T.PANEL, children: 'keyboard_helper_keys' },
|
||||||
"keyboard_helpers/keyboard_helper_keys": { type: T.STACK_PANEL, children: string },
|
"keyboard_helpers/keyboard_helper_keys": { type: T.STACK_PANEL, children: string },
|
||||||
|
"debug_drawer_button_content": { type: T.PANEL, children: 'button_label_panel' },
|
||||||
|
"debug_drawer_button_content/button_label_panel": { type: T.PANEL, children: 'button_label_text_left' },
|
||||||
|
"debug_drawer_button_content/button_label_panel/button_label_text_left": { type: T.LABEL, children: string },
|
||||||
|
"debug_drawer_button_panel": { type: T.PANEL, children: 'debug_drawer_button_input' },
|
||||||
|
"debug_drawer_button_panel/debug_drawer_button_input": { type: T.INPUT_PANEL, children: 'debug_drawer_button' },
|
||||||
|
"debug_drawer_button_panel/debug_drawer_button_input/debug_drawer_button": { type: T.BUTTON, children: string },
|
||||||
}
|
}
|
||||||
|
|
||||||
export type PdpType = {
|
export type PdpType = {
|
||||||
|
|
@ -7922,7 +7953,6 @@ export type PdpType = {
|
||||||
"pdp_cycle_offer_row_content/pad_3": { type: T.PANEL, children: string },
|
"pdp_cycle_offer_row_content/pad_3": { type: T.PANEL, children: string },
|
||||||
"pdp_cycle_offer_row_content/divider_3": { type: T.PANEL, children: string },
|
"pdp_cycle_offer_row_content/divider_3": { type: T.PANEL, children: string },
|
||||||
"pdp_cycle_offer_row_section": { type: T.PANEL, children: string },
|
"pdp_cycle_offer_row_section": { type: T.PANEL, children: string },
|
||||||
"recently_viewed_viewed_factory_object": { type: T.PANEL, children: string },
|
|
||||||
"scrolling_content_stack": { type: T.STACK_PANEL, children: string },
|
"scrolling_content_stack": { type: T.STACK_PANEL, children: string },
|
||||||
"warning_image": { type: T.IMAGE, children: string },
|
"warning_image": { type: T.IMAGE, children: string },
|
||||||
"scaling_rating": { type: T.PANEL, children: 'empty_rating' },
|
"scaling_rating": { type: T.PANEL, children: 'empty_rating' },
|
||||||
|
|
@ -8047,18 +8077,16 @@ export type PdpType = {
|
||||||
"summary_content_left_side/full_content/top/image/key_image/video_overlay_button/hover": { type: T.IMAGE, children: string },
|
"summary_content_left_side/full_content/top/image/key_image/video_overlay_button/hover": { type: T.IMAGE, children: string },
|
||||||
"summary_content_left_side/full_content/top/image/key_image/rtx_label": { type: T.PANEL, children: string },
|
"summary_content_left_side/full_content/top/image/key_image/rtx_label": { type: T.PANEL, children: string },
|
||||||
"summary_content_left_side/full_content/top/divider": { type: T.PANEL, children: string },
|
"summary_content_left_side/full_content/top/divider": { type: T.PANEL, children: string },
|
||||||
"summary_content_left_side/full_content/top/info": { type: T.STACK_PANEL, children: 'summary_title_and_author_panel' | 'pad_fill' | 'glyph_section' | 'ratings_summary' | 'vibrant_visuals_badge_and_hover' },
|
"summary_content_left_side/full_content/top/info": { type: T.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": { type: T.STACK_PANEL, children: string },
|
"summary_content_left_side/full_content/top/info/summary_title_and_author_panel": { type: T.STACK_PANEL, children: string },
|
||||||
"summary_content_left_side/full_content/top/info/pad_fill": { type: T.PANEL, children: string },
|
"summary_content_left_side/full_content/top/info/pad_fill": { type: T.PANEL, children: string },
|
||||||
"summary_content_left_side/full_content/top/info/glyph_section": { type: T.PANEL, children: 'glyph_section_panel' },
|
"summary_content_left_side/full_content/top/info/info_buttons_factory": { type: T.STACK_PANEL, children: string },
|
||||||
"summary_content_left_side/full_content/top/info/glyph_section/glyph_section_panel": { type: T.STACK_PANEL, children: string },
|
|
||||||
"summary_content_left_side/full_content/top/info/ratings_summary": { type: T.STACK_PANEL, children: 'ratings_display' },
|
|
||||||
"summary_content_left_side/full_content/top/info/ratings_summary/ratings_display": { type: T.STACK_PANEL, children: 'rating_stars_panel' | 'summary_rating_button' },
|
|
||||||
"summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/rating_stars_panel": { type: T.PANEL, children: 'rating' },
|
|
||||||
"summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/rating_stars_panel/rating": { type: T.PANEL, children: string },
|
|
||||||
"summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/summary_rating_button": { type: T.BUTTON, children: string },
|
|
||||||
"summary_content_left_side/full_content/top/info/vibrant_visuals_badge_and_hover": { type: T.PANEL, children: string },
|
|
||||||
"summary_content_left_side/full_content/bottom": { type: T.PANEL, children: string },
|
"summary_content_left_side/full_content/bottom": { type: T.PANEL, children: string },
|
||||||
|
"info_buttons_factory": { type: T.STACK_PANEL, children: string },
|
||||||
|
"ratings_summary": { type: T.STACK_PANEL, children: 'ratings_display' },
|
||||||
|
"ratings_summary/ratings_display": { type: T.STACK_PANEL, children: 'rating' | 'summary_rating_button' },
|
||||||
|
"ratings_summary/ratings_display/rating": { type: T.PANEL, children: string },
|
||||||
|
"ratings_summary/ratings_display/summary_rating_button": { type: T.BUTTON, children: string },
|
||||||
"offer_title_label": { type: T.PANEL, children: string },
|
"offer_title_label": { type: T.PANEL, children: string },
|
||||||
"title_and_author_panel": { type: T.STACK_PANEL, children: 'title_panel' | 'author_button_panel' },
|
"title_and_author_panel": { type: T.STACK_PANEL, children: 'title_panel' | 'author_button_panel' },
|
||||||
"title_and_author_panel/title_panel": { type: T.PANEL, children: string },
|
"title_and_author_panel/title_panel": { type: T.PANEL, children: string },
|
||||||
|
|
@ -8096,26 +8124,17 @@ export type PdpType = {
|
||||||
"glyph_icon_with_count/item_glyph_count_panel_label": { type: T.UNKNOWN, children: string },
|
"glyph_icon_with_count/item_glyph_count_panel_label": { type: T.UNKNOWN, children: string },
|
||||||
"glyph_panel_hover_popup": { type: T.IMAGE, children: string },
|
"glyph_panel_hover_popup": { type: T.IMAGE, children: string },
|
||||||
"glyph_panel_mashup_hover_popup": { type: T.IMAGE, children: string },
|
"glyph_panel_mashup_hover_popup": { type: T.IMAGE, children: string },
|
||||||
"mashup_glyph_tooltip_content": { type: T.STACK_PANEL, children: 'mashup_text_row' | 'mashup_line_two' | 'offset_panel' },
|
"mashup_glyph_tooltip_content": { type: T.STACK_PANEL, children: 'mashup_text_row' | 'mashup_line_two' | 'basic_vertical_glyphs' },
|
||||||
"mashup_glyph_tooltip_content/mashup_text_row": { type: T.STACK_PANEL, children: 'info_icon' | 'mashup_line_one' },
|
"mashup_glyph_tooltip_content/mashup_text_row": { type: T.STACK_PANEL, children: 'info_icon' | 'mashup_line_one' },
|
||||||
"mashup_glyph_tooltip_content/mashup_text_row/info_icon": { type: T.STACK_PANEL, children: string },
|
"mashup_glyph_tooltip_content/mashup_text_row/info_icon": { type: T.STACK_PANEL, children: string },
|
||||||
"mashup_glyph_tooltip_content/mashup_text_row/mashup_line_one": { type: T.PANEL, children: string },
|
"mashup_glyph_tooltip_content/mashup_text_row/mashup_line_one": { type: T.PANEL, children: string },
|
||||||
"mashup_glyph_tooltip_content/mashup_line_two": { type: T.PANEL, children: string },
|
"mashup_glyph_tooltip_content/mashup_line_two": { type: T.PANEL, children: string },
|
||||||
"mashup_glyph_tooltip_content/offset_panel": { type: T.PANEL, children: 'basic_vertical_glyph_section_panel' },
|
"mashup_glyph_tooltip_content/basic_vertical_glyphs": { type: T.STACK_PANEL, children: string },
|
||||||
"mashup_glyph_tooltip_content/offset_panel/basic_vertical_glyph_section_panel": { type: T.STACK_PANEL, children: string },
|
|
||||||
"glyph_section_mashup": { type: T.STACK_PANEL, children: string },
|
"glyph_section_mashup": { type: T.STACK_PANEL, children: string },
|
||||||
"glyph_section_skin": { type: T.STACK_PANEL, children: string },
|
"glyph_section_skin": { type: T.STACK_PANEL, children: string },
|
||||||
"glyph_section_resource_pack": { type: T.STACK_PANEL, children: string },
|
"glyph_section_resource_pack": { type: T.STACK_PANEL, children: string },
|
||||||
"glyph_section_world": { type: T.STACK_PANEL, children: string },
|
"glyph_section_world": { type: T.STACK_PANEL, children: string },
|
||||||
"glyph_section_addon": { type: T.STACK_PANEL, children: string },
|
"glyph_section_addon": { type: T.STACK_PANEL, children: string },
|
||||||
"basic_vertical_glyph_section_panel": { type: T.STACK_PANEL, children: 'glyph_section_skin' | 'glyph_section_world' | 'glyph_section_resource_pack' | 'glyph_section_addon' },
|
|
||||||
"basic_vertical_glyph_section_panel/glyph_section_skin": { type: T.STACK_PANEL, children: string },
|
|
||||||
"basic_vertical_glyph_section_panel/glyph_section_world": { type: T.STACK_PANEL, children: string },
|
|
||||||
"basic_vertical_glyph_section_panel/glyph_section_resource_pack": { type: T.STACK_PANEL, children: string },
|
|
||||||
"basic_vertical_glyph_section_panel/glyph_section_addon": { type: T.STACK_PANEL, children: string },
|
|
||||||
"vertical_glyph_section_panel": { type: T.STACK_PANEL, children: 'glyph_section_mashup' | 'basic_vertical_glyph_section_panel' },
|
|
||||||
"vertical_glyph_section_panel/glyph_section_mashup": { type: T.STACK_PANEL, children: string },
|
|
||||||
"vertical_glyph_section_panel/basic_vertical_glyph_section_panel": { type: T.STACK_PANEL, children: string },
|
|
||||||
"summary_text_panel": { type: T.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": { type: T.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": { type: T.STACK_PANEL, children: 'top_interact' },
|
"summary_text_panel/top_interact_button_stack": { type: T.STACK_PANEL, children: 'top_interact' },
|
||||||
"summary_text_panel/top_interact_button_stack/top_interact": { type: T.PANEL, children: string },
|
"summary_text_panel/top_interact_button_stack/top_interact": { type: T.PANEL, children: string },
|
||||||
|
|
@ -10040,6 +10059,11 @@ export type ProgressType = {
|
||||||
"modal_button_panel_with_retry/retry_button": { type: T.BUTTON, children: string },
|
"modal_button_panel_with_retry/retry_button": { type: T.BUTTON, children: string },
|
||||||
"modal_ok_button_panel": { type: T.PANEL, children: 'ok_button' },
|
"modal_ok_button_panel": { type: T.PANEL, children: 'ok_button' },
|
||||||
"modal_ok_button_panel/ok_button": { type: T.BUTTON, children: string },
|
"modal_ok_button_panel/ok_button": { type: T.BUTTON, children: string },
|
||||||
|
"modal_ok_button_panel_with_retry": { type: T.PANEL, children: 'left_ok_button' | 'center_cancel_button' | 'center_ok_button' | 'right_retry_button' },
|
||||||
|
"modal_ok_button_panel_with_retry/left_ok_button": { type: T.BUTTON, children: string },
|
||||||
|
"modal_ok_button_panel_with_retry/center_cancel_button": { type: T.BUTTON, children: string },
|
||||||
|
"modal_ok_button_panel_with_retry/center_ok_button": { type: T.BUTTON, children: string },
|
||||||
|
"modal_ok_button_panel_with_retry/right_retry_button": { type: T.BUTTON, children: string },
|
||||||
"gamepad_helpers": { type: T.PANEL, children: 'gamepad_helper_a' },
|
"gamepad_helpers": { type: T.PANEL, children: 'gamepad_helper_a' },
|
||||||
"gamepad_helpers/gamepad_helper_a": { type: T.STACK_PANEL, children: string },
|
"gamepad_helpers/gamepad_helper_a": { type: T.STACK_PANEL, children: string },
|
||||||
"world_image": { type: T.IMAGE, children: string },
|
"world_image": { type: T.IMAGE, children: string },
|
||||||
|
|
@ -10109,6 +10133,7 @@ export type ProgressType = {
|
||||||
"fetching_edu_cloud_worlds": { type: T.SCREEN, children: string },
|
"fetching_edu_cloud_worlds": { type: T.SCREEN, children: string },
|
||||||
"edu_cloud_download_progress_screen": { type: T.SCREEN, children: string },
|
"edu_cloud_download_progress_screen": { type: T.SCREEN, children: string },
|
||||||
"fetching_edu_servers": { type: T.SCREEN, children: string },
|
"fetching_edu_servers": { type: T.SCREEN, children: string },
|
||||||
|
"joining_edu_server": { type: T.SCREEN, children: string },
|
||||||
"world_convert_modal_progress_screen": { type: T.SCREEN, children: string },
|
"world_convert_modal_progress_screen": { type: T.SCREEN, children: string },
|
||||||
"progress_screen": { type: T.SCREEN, children: string },
|
"progress_screen": { type: T.SCREEN, children: string },
|
||||||
"popup_dialog_factory": { type: T.FACTORY, children: string },
|
"popup_dialog_factory": { type: T.FACTORY, children: string },
|
||||||
|
|
@ -10120,18 +10145,23 @@ export type ProgressType = {
|
||||||
"progress_content_panel/gamepad_helpers": { type: T.PANEL, children: string },
|
"progress_content_panel/gamepad_helpers": { type: T.PANEL, children: string },
|
||||||
"modal_screen_content": { type: T.PANEL, children: 'modal_progress_panel' },
|
"modal_screen_content": { type: T.PANEL, children: 'modal_progress_panel' },
|
||||||
"modal_screen_content/modal_progress_panel": { type: T.PANEL, children: string },
|
"modal_screen_content/modal_progress_panel": { type: T.PANEL, children: string },
|
||||||
"world_modal_progress_panel": { type: T.PANEL, children: 'common_panel' | 'base_content' | 'inside_content' },
|
"world_modal_progress_panel": { type: T.PANEL, children: 'common_panel' | 'content_wrapper' },
|
||||||
"world_modal_progress_panel/common_panel": { type: T.PANEL, children: string },
|
"world_modal_progress_panel/common_panel": { type: T.PANEL, children: string },
|
||||||
"world_modal_progress_panel/base_content": { type: T.PANEL, children: 'progress_title_text' | 'progress_bar_text' },
|
"world_modal_progress_panel/content_wrapper": { type: T.PANEL, children: 'base_content' | 'inside_content' },
|
||||||
"world_modal_progress_panel/base_content/progress_title_text": { type: T.LABEL, children: string },
|
"world_modal_progress_panel/content_wrapper/base_content": { type: T.STACK_PANEL, children: 'vertical_title_padding' | 'title_text_panel' | 'vertical_text_padding' | 'progress_text_panel' },
|
||||||
"world_modal_progress_panel/base_content/progress_bar_text": { type: T.LABEL, children: string },
|
"world_modal_progress_panel/content_wrapper/base_content/vertical_title_padding": { type: T.PANEL, children: string },
|
||||||
"world_modal_progress_panel/inside_content": { type: T.STACK_PANEL, children: 'loading_bar_panel' | 'vertical_padding' | 'modal_button_panel' | 'vertical_padding_2' },
|
"world_modal_progress_panel/content_wrapper/base_content/title_text_panel": { type: T.PANEL, children: 'progress_title_text' },
|
||||||
"world_modal_progress_panel/inside_content/loading_bar_panel": { type: T.PANEL, children: 'fancy_progress_loading_bars' | 'progress_loading_bars' },
|
"world_modal_progress_panel/content_wrapper/base_content/title_text_panel/progress_title_text": { type: T.LABEL, children: string },
|
||||||
"world_modal_progress_panel/inside_content/loading_bar_panel/fancy_progress_loading_bars": { type: T.PANEL, children: string },
|
"world_modal_progress_panel/content_wrapper/base_content/vertical_text_padding": { type: T.PANEL, children: string },
|
||||||
"world_modal_progress_panel/inside_content/loading_bar_panel/progress_loading_bars": { type: T.IMAGE, children: string },
|
"world_modal_progress_panel/content_wrapper/base_content/progress_text_panel": { type: T.PANEL, children: 'progress_bar_text' },
|
||||||
"world_modal_progress_panel/inside_content/vertical_padding": { type: T.PANEL, children: string },
|
"world_modal_progress_panel/content_wrapper/base_content/progress_text_panel/progress_bar_text": { type: T.LABEL, children: string },
|
||||||
"world_modal_progress_panel/inside_content/modal_button_panel": { type: T.UNKNOWN, children: string },
|
"world_modal_progress_panel/content_wrapper/inside_content": { type: T.STACK_PANEL, children: 'loading_bar_panel' | 'vertical_padding' | 'modal_button_panel' | 'vertical_padding_2' },
|
||||||
"world_modal_progress_panel/inside_content/vertical_padding_2": { type: T.PANEL, children: string },
|
"world_modal_progress_panel/content_wrapper/inside_content/loading_bar_panel": { type: T.PANEL, children: 'fancy_progress_loading_bars' | 'progress_loading_bars' },
|
||||||
|
"world_modal_progress_panel/content_wrapper/inside_content/loading_bar_panel/fancy_progress_loading_bars": { type: T.PANEL, children: string },
|
||||||
|
"world_modal_progress_panel/content_wrapper/inside_content/loading_bar_panel/progress_loading_bars": { type: T.IMAGE, children: string },
|
||||||
|
"world_modal_progress_panel/content_wrapper/inside_content/vertical_padding": { type: T.PANEL, children: string },
|
||||||
|
"world_modal_progress_panel/content_wrapper/inside_content/modal_button_panel": { type: T.UNKNOWN, children: string },
|
||||||
|
"world_modal_progress_panel/content_wrapper/inside_content/vertical_padding_2": { type: T.PANEL, children: string },
|
||||||
"cloud_upload_panel": { type: T.PANEL, children: 'common_panel' | 'base_content' },
|
"cloud_upload_panel": { type: T.PANEL, children: 'common_panel' | 'base_content' },
|
||||||
"cloud_upload_panel/common_panel": { type: T.PANEL, children: string },
|
"cloud_upload_panel/common_panel": { type: T.PANEL, children: string },
|
||||||
"cloud_upload_panel/base_content": { type: T.PANEL, children: 'progress_title_text' | 'progress_text' | 'edu_cloud_upload_image' | 'loading_bar_panel' },
|
"cloud_upload_panel/base_content": { type: T.PANEL, children: 'progress_title_text' | 'progress_text' | 'edu_cloud_upload_image' | 'loading_bar_panel' },
|
||||||
|
|
@ -10187,6 +10217,15 @@ export type ProgressType = {
|
||||||
"cloud_download_panel/base_content/edu_cloud_download_image": { type: T.STACK_PANEL, children: string },
|
"cloud_download_panel/base_content/edu_cloud_download_image": { type: T.STACK_PANEL, children: string },
|
||||||
"cloud_download_panel/loading_bar_panel": { type: T.PANEL, children: 'progress_loading_bars' },
|
"cloud_download_panel/loading_bar_panel": { type: T.PANEL, children: 'progress_loading_bars' },
|
||||||
"cloud_download_panel/loading_bar_panel/progress_loading_bars": { type: T.IMAGE, children: string },
|
"cloud_download_panel/loading_bar_panel/progress_loading_bars": { type: T.IMAGE, children: string },
|
||||||
|
"server_fetch_timeout_panel": { type: T.PANEL, children: 'common_panel' | 'base_content' },
|
||||||
|
"server_fetch_timeout_panel/common_panel": { type: T.PANEL, children: string },
|
||||||
|
"server_fetch_timeout_panel/base_content": { type: T.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": { type: T.LABEL, children: string },
|
||||||
|
"server_fetch_timeout_panel/base_content/progress_text": { type: T.LABEL, children: string },
|
||||||
|
"server_fetch_timeout_panel/base_content/edu_server_fetch_image": { type: T.STACK_PANEL, children: string },
|
||||||
|
"server_fetch_timeout_panel/base_content/loading_bar_panel": { type: T.PANEL, children: 'progress_loading_bars' },
|
||||||
|
"server_fetch_timeout_panel/base_content/loading_bar_panel/progress_loading_bars": { type: T.IMAGE, children: string },
|
||||||
|
"server_fetch_timeout_panel/base_content/timeout_button": { type: T.BUTTON, children: string },
|
||||||
"world_convert_modal_progress_screen_content": { type: T.PANEL, children: 'mobile_data_icon' | 'title_panel_content' | 'world_modal_progress_panel' | 'popup_dialog_factory' },
|
"world_convert_modal_progress_screen_content": { type: T.PANEL, children: 'mobile_data_icon' | 'title_panel_content' | 'world_modal_progress_panel' | 'popup_dialog_factory' },
|
||||||
"world_convert_modal_progress_screen_content/mobile_data_icon": { type: T.PANEL, children: string },
|
"world_convert_modal_progress_screen_content/mobile_data_icon": { type: T.PANEL, children: string },
|
||||||
"world_convert_modal_progress_screen_content/title_panel_content": { type: T.PANEL, children: string },
|
"world_convert_modal_progress_screen_content/title_panel_content": { type: T.PANEL, children: string },
|
||||||
|
|
@ -10216,9 +10255,14 @@ export type ProgressType = {
|
||||||
"edu_cloud_fetch_screen_content": { type: T.PANEL, children: 'cloud_fetch_panel' | 'popup_dialog_factory' },
|
"edu_cloud_fetch_screen_content": { type: T.PANEL, children: 'cloud_fetch_panel' | 'popup_dialog_factory' },
|
||||||
"edu_cloud_fetch_screen_content/cloud_fetch_panel": { type: T.PANEL, children: string },
|
"edu_cloud_fetch_screen_content/cloud_fetch_panel": { type: T.PANEL, children: string },
|
||||||
"edu_cloud_fetch_screen_content/popup_dialog_factory": { type: T.FACTORY, children: string },
|
"edu_cloud_fetch_screen_content/popup_dialog_factory": { type: T.FACTORY, children: string },
|
||||||
"edu_server_fetch_screen_content": { type: T.PANEL, children: 'server_fetch_panel' | 'popup_dialog_factory' },
|
"edu_server_fetch_screen_content": { type: T.PANEL, children: 'server_fetch_panel' | 'server_fetch_timeout_panel' | 'popup_dialog_factory' },
|
||||||
"edu_server_fetch_screen_content/server_fetch_panel": { type: T.PANEL, children: string },
|
"edu_server_fetch_screen_content/server_fetch_panel": { type: T.PANEL, children: string },
|
||||||
|
"edu_server_fetch_screen_content/server_fetch_timeout_panel": { type: T.PANEL, children: string },
|
||||||
"edu_server_fetch_screen_content/popup_dialog_factory": { type: T.FACTORY, children: string },
|
"edu_server_fetch_screen_content/popup_dialog_factory": { type: T.FACTORY, children: string },
|
||||||
|
"joining_edu_server_progress_screen_content": { type: T.PANEL, children: 'title_panel_content' | 'world_modal_progress_panel' | 'popup_dialog_factory' },
|
||||||
|
"joining_edu_server_progress_screen_content/title_panel_content": { type: T.PANEL, children: string },
|
||||||
|
"joining_edu_server_progress_screen_content/world_modal_progress_panel": { type: T.PANEL, children: string },
|
||||||
|
"joining_edu_server_progress_screen_content/popup_dialog_factory": { type: T.FACTORY, children: string },
|
||||||
"cloud_download_screen_content": { type: T.PANEL, children: 'background' | 'cloud_download_panel' | 'cloud_download_error_panel' | 'popup_dialog_factory' },
|
"cloud_download_screen_content": { type: T.PANEL, children: 'background' | 'cloud_download_panel' | 'cloud_download_error_panel' | 'popup_dialog_factory' },
|
||||||
"cloud_download_screen_content/background": { type: T.IMAGE, children: string },
|
"cloud_download_screen_content/background": { type: T.IMAGE, children: string },
|
||||||
"cloud_download_screen_content/cloud_download_panel": { type: T.PANEL, children: string },
|
"cloud_download_screen_content/cloud_download_panel": { type: T.PANEL, children: string },
|
||||||
|
|
@ -10695,11 +10739,11 @@ export type RealmsSettingsType = {
|
||||||
"free_up_space_popup_content/button_panel/right_button_panel": { type: T.BUTTON, children: string },
|
"free_up_space_popup_content/button_panel/right_button_panel": { type: T.BUTTON, children: string },
|
||||||
"free_up_space_popup_scrolling_panel": { type: T.PANEL, children: string },
|
"free_up_space_popup_scrolling_panel": { type: T.PANEL, children: string },
|
||||||
"free_up_space_text_description": { type: T.LABEL, children: string },
|
"free_up_space_text_description": { type: T.LABEL, children: string },
|
||||||
"free_up_space_popup_content_stack_panel": { type: T.STACK_PANEL, children: 'free_up_space_storage_bar_header_panel' | 'padding_1' | 'free_up_space_manual_save_list_stack_panel' },
|
"free_up_space_popup_content_stack_panel": { type: T.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_storage_bar_header_panel": { type: T.PANEL, children: 'free_up_space_storage_bar_panel' | 'focus_border' },
|
"free_up_space_popup_content_stack_panel/free_up_space_description_label": { type: T.PANEL, children: string },
|
||||||
"free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel/free_up_space_storage_bar_panel": { type: T.STACK_PANEL, children: string },
|
"free_up_space_popup_content_stack_panel/padding1": { type: T.PANEL, children: string },
|
||||||
"free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel/focus_border": { type: T.BUTTON, children: string },
|
"free_up_space_popup_content_stack_panel/free_up_space_storage_bar_panel": { type: T.PANEL, children: string },
|
||||||
"free_up_space_popup_content_stack_panel/padding_1": { type: T.PANEL, children: string },
|
"free_up_space_popup_content_stack_panel/padding2": { type: T.PANEL, children: string },
|
||||||
"free_up_space_popup_content_stack_panel/free_up_space_manual_save_list_stack_panel": { type: T.STACK_PANEL, children: string },
|
"free_up_space_popup_content_stack_panel/free_up_space_manual_save_list_stack_panel": { type: T.STACK_PANEL, children: string },
|
||||||
"popup_dialog__free_up_space": { type: T.INPUT_PANEL, children: 'free_up_space_popup_background' | 'free_up_space_popup_content' },
|
"popup_dialog__free_up_space": { type: T.INPUT_PANEL, children: 'free_up_space_popup_background' | 'free_up_space_popup_content' },
|
||||||
"popup_dialog__free_up_space/free_up_space_popup_background": { type: T.IMAGE, children: string },
|
"popup_dialog__free_up_space/free_up_space_popup_background": { type: T.IMAGE, children: string },
|
||||||
|
|
@ -10916,6 +10960,7 @@ export type RealmsSettingsType = {
|
||||||
"realms_settings_screen_base_no_selector_area": { type: T.SCREEN, children: string },
|
"realms_settings_screen_base_no_selector_area": { type: T.SCREEN, children: string },
|
||||||
"screen_realm_hub_manage_members": { type: T.SCREEN, children: string },
|
"screen_realm_hub_manage_members": { type: T.SCREEN, children: string },
|
||||||
"screen_realm_hub_invite_links": { type: T.SCREEN, children: string },
|
"screen_realm_hub_invite_links": { type: T.SCREEN, children: string },
|
||||||
|
"screen_realm_hub_saves": { type: T.SCREEN, children: string },
|
||||||
}
|
}
|
||||||
|
|
||||||
export type RealmsAllowlistType = {
|
export type RealmsAllowlistType = {
|
||||||
|
|
@ -12313,13 +12358,18 @@ export type ServerFormType = {
|
||||||
|
|
||||||
export type SettingsType = {
|
export type SettingsType = {
|
||||||
"settings_screen_base": { type: T.SCREEN, children: string },
|
"settings_screen_base": { type: T.SCREEN, children: string },
|
||||||
|
"settings_screen_base_fullscreen": { type: T.SCREEN, children: string },
|
||||||
"screen_world_create": { type: T.SCREEN, children: string },
|
"screen_world_create": { type: T.SCREEN, children: string },
|
||||||
"screen_template_create": { type: T.SCREEN, children: string },
|
"screen_template_create": { type: T.SCREEN, children: string },
|
||||||
"screen_world_edit": { type: T.SCREEN, children: string },
|
"screen_world_edit": { type: T.SCREEN, children: string },
|
||||||
"screen_controls_and_settings": { type: T.SCREEN, children: string },
|
"screen_controls_and_settings": { type: T.SCREEN, children: string },
|
||||||
|
"screen_controls_and_settings_fullscreen": { type: T.SCREEN, children: string },
|
||||||
"screen_world_controls_and_settings": { type: T.SCREEN, children: string },
|
"screen_world_controls_and_settings": { type: T.SCREEN, children: string },
|
||||||
|
"screen_world_controls_and_settings_fullscreen": { type: T.SCREEN, children: string },
|
||||||
"screen_realm_controls_and_settings": { type: T.SCREEN, children: string },
|
"screen_realm_controls_and_settings": { type: T.SCREEN, children: string },
|
||||||
|
"screen_realm_controls_and_settings_fullscreen": { type: T.SCREEN, children: string },
|
||||||
"screen_realm_member_controls_and_settings": { type: T.SCREEN, children: string },
|
"screen_realm_member_controls_and_settings": { type: T.SCREEN, children: string },
|
||||||
|
"screen_realm_member_controls_and_settings_fullscreen": { type: T.SCREEN, children: string },
|
||||||
"screen_realm_settings": { type: T.SCREEN, children: string },
|
"screen_realm_settings": { type: T.SCREEN, children: string },
|
||||||
"screen_world_slot_edit": { type: T.SCREEN, children: string },
|
"screen_world_slot_edit": { type: T.SCREEN, children: string },
|
||||||
"screen_realm_manage": { type: T.SCREEN, children: string },
|
"screen_realm_manage": { type: T.SCREEN, children: string },
|
||||||
|
|
@ -12408,31 +12458,24 @@ export type SettingsType = {
|
||||||
"section_content_panels/packs_sections/level_texture_pack_section": { type: T.STACK_PANEL, children: string },
|
"section_content_panels/packs_sections/level_texture_pack_section": { type: T.STACK_PANEL, children: string },
|
||||||
"section_content_panels/packs_sections/addon_section": { type: T.STACK_PANEL, children: string },
|
"section_content_panels/packs_sections/addon_section": { type: T.STACK_PANEL, children: string },
|
||||||
"section_content_panels/section_content_panels": { type: T.PANEL, children: string },
|
"section_content_panels/section_content_panels": { type: T.PANEL, children: string },
|
||||||
"section_content_panels/general_and_controls_sections": { type: T.STACK_PANEL, children: 'accessibility_section' | 'accessibility_section_ore_ui' | 'keyboard_and_mouse_section' | 'keyboard_and_mouse_section_ore_ui' | 'controller_section' | 'touch_section' | 'party_section' | 'general_tab_section' | 'general_tab_section_ore_ui' | 'account_section' | 'account_section_ore_ui' | 'global_texture_pack_section' | 'storage_management_header' | 'storage_management_section' | 'edu_cloud_storage_section' | 'creator_section' | 'video_section' | 'video_section_ore_ui' | 'view_subscriptions_prerelease_section' | 'view_subscriptions_section' | 'sound_section' | 'sound_section_ore_ui' | 'language_section' | 'language_section_ore_ui' | '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' | 'how_to_play_section' },
|
"section_content_panels/general_and_controls_sections": { type: T.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' | 'how_to_play_section' },
|
||||||
"section_content_panels/general_and_controls_sections/accessibility_section": { type: T.STACK_PANEL, children: string },
|
"section_content_panels/general_and_controls_sections/accessibility_section": { type: T.STACK_PANEL, children: string },
|
||||||
"section_content_panels/general_and_controls_sections/accessibility_section_ore_ui": { type: T.STACK_PANEL, children: string },
|
|
||||||
"section_content_panels/general_and_controls_sections/keyboard_and_mouse_section": { type: T.STACK_PANEL, children: string },
|
"section_content_panels/general_and_controls_sections/keyboard_and_mouse_section": { type: T.STACK_PANEL, children: string },
|
||||||
"section_content_panels/general_and_controls_sections/keyboard_and_mouse_section_ore_ui": { type: T.STACK_PANEL, children: string },
|
|
||||||
"section_content_panels/general_and_controls_sections/controller_section": { type: T.STACK_PANEL, children: string },
|
"section_content_panels/general_and_controls_sections/controller_section": { type: T.STACK_PANEL, children: string },
|
||||||
"section_content_panels/general_and_controls_sections/touch_section": { type: T.STACK_PANEL, children: string },
|
"section_content_panels/general_and_controls_sections/touch_section": { type: T.STACK_PANEL, children: string },
|
||||||
"section_content_panels/general_and_controls_sections/party_section": { type: T.STACK_PANEL, children: string },
|
"section_content_panels/general_and_controls_sections/party_section": { type: T.STACK_PANEL, children: string },
|
||||||
"section_content_panels/general_and_controls_sections/general_tab_section": { type: T.STACK_PANEL, children: string },
|
"section_content_panels/general_and_controls_sections/general_tab_section": { type: T.STACK_PANEL, children: string },
|
||||||
"section_content_panels/general_and_controls_sections/general_tab_section_ore_ui": { type: T.STACK_PANEL, children: string },
|
|
||||||
"section_content_panels/general_and_controls_sections/account_section": { type: T.STACK_PANEL, children: string },
|
"section_content_panels/general_and_controls_sections/account_section": { type: T.STACK_PANEL, children: string },
|
||||||
"section_content_panels/general_and_controls_sections/account_section_ore_ui": { type: T.STACK_PANEL, children: string },
|
|
||||||
"section_content_panels/general_and_controls_sections/global_texture_pack_section": { type: T.STACK_PANEL, children: string },
|
"section_content_panels/general_and_controls_sections/global_texture_pack_section": { type: T.STACK_PANEL, children: string },
|
||||||
"section_content_panels/general_and_controls_sections/storage_management_header": { type: T.PANEL, children: string },
|
"section_content_panels/general_and_controls_sections/storage_management_header": { type: T.PANEL, children: string },
|
||||||
"section_content_panels/general_and_controls_sections/storage_management_section": { type: T.PANEL, children: string },
|
"section_content_panels/general_and_controls_sections/storage_management_section": { type: T.PANEL, children: string },
|
||||||
"section_content_panels/general_and_controls_sections/edu_cloud_storage_section": { type: T.STACK_PANEL, children: string },
|
"section_content_panels/general_and_controls_sections/edu_cloud_storage_section": { type: T.STACK_PANEL, children: string },
|
||||||
"section_content_panels/general_and_controls_sections/creator_section": { type: T.STACK_PANEL, children: string },
|
"section_content_panels/general_and_controls_sections/creator_section": { type: T.STACK_PANEL, children: string },
|
||||||
"section_content_panels/general_and_controls_sections/video_section": { type: T.STACK_PANEL, children: string },
|
"section_content_panels/general_and_controls_sections/video_section": { type: T.STACK_PANEL, children: string },
|
||||||
"section_content_panels/general_and_controls_sections/video_section_ore_ui": { type: T.STACK_PANEL, children: string },
|
|
||||||
"section_content_panels/general_and_controls_sections/view_subscriptions_prerelease_section": { type: T.PANEL, children: string },
|
"section_content_panels/general_and_controls_sections/view_subscriptions_prerelease_section": { type: T.PANEL, children: string },
|
||||||
"section_content_panels/general_and_controls_sections/view_subscriptions_section": { type: T.STACK_PANEL, children: string },
|
"section_content_panels/general_and_controls_sections/view_subscriptions_section": { type: T.STACK_PANEL, children: string },
|
||||||
"section_content_panels/general_and_controls_sections/sound_section": { type: T.STACK_PANEL, children: string },
|
"section_content_panels/general_and_controls_sections/sound_section": { type: T.STACK_PANEL, children: string },
|
||||||
"section_content_panels/general_and_controls_sections/sound_section_ore_ui": { type: T.STACK_PANEL, children: string },
|
|
||||||
"section_content_panels/general_and_controls_sections/language_section": { type: T.STACK_PANEL, children: string },
|
"section_content_panels/general_and_controls_sections/language_section": { type: T.STACK_PANEL, children: string },
|
||||||
"section_content_panels/general_and_controls_sections/language_section_ore_ui": { type: T.STACK_PANEL, children: string },
|
|
||||||
"section_content_panels/general_and_controls_sections/preview_section": { type: T.STACK_PANEL, children: string },
|
"section_content_panels/general_and_controls_sections/preview_section": { type: T.STACK_PANEL, children: string },
|
||||||
"section_content_panels/general_and_controls_sections/debug_section": { type: T.STACK_PANEL, children: string },
|
"section_content_panels/general_and_controls_sections/debug_section": { type: T.STACK_PANEL, children: string },
|
||||||
"section_content_panels/general_and_controls_sections/ui_debug_section": { type: T.STACK_PANEL, children: string },
|
"section_content_panels/general_and_controls_sections/ui_debug_section": { type: T.STACK_PANEL, children: string },
|
||||||
|
|
@ -12465,6 +12508,11 @@ export type ControlsSectionType = {
|
||||||
"reset_binding_button": { type: T.BUTTON, children: string },
|
"reset_binding_button": { type: T.BUTTON, children: string },
|
||||||
"keymapping_item_parent": { type: T.STACK_PANEL, children: 'keymapping_row' },
|
"keymapping_item_parent": { type: T.STACK_PANEL, children: 'keymapping_row' },
|
||||||
"keymapping_item_parent/keymapping_row": { type: T.STACK_PANEL, children: string },
|
"keymapping_item_parent/keymapping_row": { type: T.STACK_PANEL, children: string },
|
||||||
|
"keymapping_item_frame": { type: T.STACK_PANEL, children: 'keymap' | 'command_macro_command' },
|
||||||
|
"keymapping_item_frame/keymap": { type: T.STACK_PANEL, children: string },
|
||||||
|
"keymapping_item_frame/command_macro_command": { type: T.PANEL, children: string },
|
||||||
|
"command_macro_command_textbox": { type: T.PANEL, children: 'text_box' },
|
||||||
|
"command_macro_command_textbox/text_box": { type: T.EDIT_BOX, children: string },
|
||||||
"keymapping_item": { type: T.STACK_PANEL, children: 'option_info_label_control' | 'keymapping_button_0' | 'keymapping_button_1' },
|
"keymapping_item": { type: T.STACK_PANEL, children: 'option_info_label_control' | 'keymapping_button_0' | 'keymapping_button_1' },
|
||||||
"keymapping_item/option_info_label_control": { type: T.IMAGE, children: 'keymapping_label_control' },
|
"keymapping_item/option_info_label_control": { type: T.IMAGE, children: 'keymapping_label_control' },
|
||||||
"keymapping_item/option_info_label_control/keymapping_label_control": { type: T.LABEL, children: string },
|
"keymapping_item/option_info_label_control/keymapping_label_control": { type: T.LABEL, children: string },
|
||||||
|
|
@ -12478,12 +12526,18 @@ export type ControlsSectionType = {
|
||||||
"gamepad_mapping_item/keymapping_button_0": { type: T.BUTTON, children: string },
|
"gamepad_mapping_item/keymapping_button_0": { type: T.BUTTON, children: string },
|
||||||
"gamepad_mapping_item/keymapping_button_1": { type: T.BUTTON, children: string },
|
"gamepad_mapping_item/keymapping_button_1": { type: T.BUTTON, children: string },
|
||||||
"gamepad_mapping_grid": { type: T.GRID, children: string },
|
"gamepad_mapping_grid": { type: T.GRID, children: string },
|
||||||
|
"keyboard_command_macros_grid": { type: T.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": { type: T.PANEL, children: 'section_divider' },
|
||||||
|
"keyboard_command_macros_grid/divider_before/section_divider": { type: T.IMAGE, children: string },
|
||||||
|
"keyboard_command_macros_grid/divider_before_padding": { type: T.PANEL, children: string },
|
||||||
|
"keyboard_command_macros_grid/command_macro_title": { type: T.LABEL, children: string },
|
||||||
|
"keyboard_command_macros_grid/command_macro_title_desc": { type: T.LABEL, children: string },
|
||||||
|
"keyboard_command_macros_grid/command_macro_title_padding": { type: T.PANEL, children: string },
|
||||||
|
"keyboard_command_macros_grid/command_macro_keymapping_grid": { type: T.GRID, children: string },
|
||||||
|
"keyboard_command_macros_grid/divider_after": { type: T.PANEL, children: 'section_divider' },
|
||||||
|
"keyboard_command_macros_grid/divider_after/section_divider": { type: T.IMAGE, children: string },
|
||||||
|
"keyboard_command_macros_grid/divider_after_padding": { type: T.PANEL, children: string },
|
||||||
"keyboard_and_mouse_button": { type: T.PANEL, children: string },
|
"keyboard_and_mouse_button": { type: T.PANEL, children: string },
|
||||||
"keyboard_and_mouse_section_ore_ui": { type: T.STACK_PANEL, children: 'spacer_0' | 'generic_label' | 'spacer_1' | 'gamepad_helper_label' },
|
|
||||||
"keyboard_and_mouse_section_ore_ui/spacer_0": { type: T.PANEL, children: string },
|
|
||||||
"keyboard_and_mouse_section_ore_ui/generic_label": { type: T.LABEL, children: string },
|
|
||||||
"keyboard_and_mouse_section_ore_ui/spacer_1": { type: T.PANEL, children: string },
|
|
||||||
"keyboard_and_mouse_section_ore_ui/gamepad_helper_label": { type: T.LABEL, children: string },
|
|
||||||
"keyboard_and_mouse_section": { type: T.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": { type: T.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": { type: T.PANEL, children: string },
|
"keyboard_and_mouse_section/option_slider_0": { type: T.PANEL, children: string },
|
||||||
"keyboard_and_mouse_section/option_slider_damen": { type: T.PANEL, children: string },
|
"keyboard_and_mouse_section/option_slider_damen": { type: T.PANEL, children: string },
|
||||||
|
|
@ -12493,19 +12547,21 @@ export type ControlsSectionType = {
|
||||||
"keyboard_and_mouse_section/option_toggle_full_keyboard_gameplay": { type: T.PANEL, children: string },
|
"keyboard_and_mouse_section/option_toggle_full_keyboard_gameplay": { type: T.PANEL, children: string },
|
||||||
"keyboard_and_mouse_section/option_toggle_show_keyboard_prompts": { type: T.PANEL, children: string },
|
"keyboard_and_mouse_section/option_toggle_show_keyboard_prompts": { type: T.PANEL, children: string },
|
||||||
"keyboard_and_mouse_section/option_toggle_show_learning_prompts": { type: T.PANEL, children: string },
|
"keyboard_and_mouse_section/option_toggle_show_learning_prompts": { type: T.PANEL, children: string },
|
||||||
"keyboard_and_mouse_section/keyboard_section": { type: T.STACK_PANEL, children: 'option_group_label' | 'keyboard_keymapping_grid' | 'control_alt_chords_standard_keyboard_section' },
|
"keyboard_and_mouse_section/keyboard_section": { type: T.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": { type: T.PANEL, children: string },
|
"keyboard_and_mouse_section/keyboard_section/option_group_label": { type: T.PANEL, children: string },
|
||||||
"keyboard_and_mouse_section/keyboard_section/keyboard_keymapping_grid": { type: T.GRID, children: string },
|
"keyboard_and_mouse_section/keyboard_section/keyboard_keymapping_grid": { type: T.GRID, children: string },
|
||||||
"keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section": { type: T.STACK_PANEL, children: 'option_group_label' | 'control_alt_chord_keymapping_grid' },
|
"keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section": { type: T.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": { type: T.PANEL, children: string },
|
"keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section/option_group_label": { type: T.PANEL, children: string },
|
||||||
"keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section/control_alt_chord_keymapping_grid": { type: T.GRID, children: string },
|
"keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section/control_alt_chord_keymapping_grid": { type: T.GRID, children: string },
|
||||||
"keyboard_and_mouse_section/full_keyboard_section": { type: T.STACK_PANEL, children: 'option_slider_smooth_rotation_speed' | 'full_keyboard_label' | 'keyboard_full_keymapping_grid' | 'control_alt_chords_full_keyboard_section' },
|
"keyboard_and_mouse_section/keyboard_section/command_macros": { type: T.STACK_PANEL, children: string },
|
||||||
|
"keyboard_and_mouse_section/full_keyboard_section": { type: T.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": { type: T.PANEL, children: string },
|
"keyboard_and_mouse_section/full_keyboard_section/option_slider_smooth_rotation_speed": { type: T.PANEL, children: string },
|
||||||
"keyboard_and_mouse_section/full_keyboard_section/full_keyboard_label": { type: T.PANEL, children: string },
|
"keyboard_and_mouse_section/full_keyboard_section/full_keyboard_label": { type: T.PANEL, children: string },
|
||||||
"keyboard_and_mouse_section/full_keyboard_section/keyboard_full_keymapping_grid": { type: T.GRID, children: string },
|
"keyboard_and_mouse_section/full_keyboard_section/keyboard_full_keymapping_grid": { type: T.GRID, children: string },
|
||||||
"keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section": { type: T.STACK_PANEL, children: 'option_group_label' | 'control_alt_chord_keymapping_grid' },
|
"keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section": { type: T.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": { type: T.PANEL, children: string },
|
"keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section/option_group_label": { type: T.PANEL, children: string },
|
||||||
"keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section/control_alt_chord_keymapping_grid": { type: T.GRID, children: string },
|
"keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section/control_alt_chord_keymapping_grid": { type: T.GRID, children: string },
|
||||||
|
"keyboard_and_mouse_section/full_keyboard_section/command_macros": { type: T.STACK_PANEL, children: string },
|
||||||
"keyboard_and_mouse_section/reset_button": { type: T.BUTTON, children: string },
|
"keyboard_and_mouse_section/reset_button": { type: T.BUTTON, children: string },
|
||||||
"controller_button": { type: T.PANEL, children: string },
|
"controller_button": { type: T.PANEL, children: string },
|
||||||
"controller_section": { type: T.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": { type: T.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' },
|
||||||
|
|
@ -12582,12 +12638,7 @@ export type ControlsSectionType = {
|
||||||
|
|
||||||
export type GeneralSectionType = {
|
export type GeneralSectionType = {
|
||||||
"general_button": { type: T.PANEL, children: string },
|
"general_button": { type: T.PANEL, children: string },
|
||||||
"general_tab_section_ore_ui": { type: T.STACK_PANEL, children: 'spacer_0' | 'generic_label' | 'spacer_1' | 'gamepad_helper_label' },
|
"general_tab_section": { type: T.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_ore_ui/spacer_0": { type: T.PANEL, children: string },
|
|
||||||
"general_tab_section_ore_ui/generic_label": { type: T.LABEL, children: string },
|
|
||||||
"general_tab_section_ore_ui/spacer_1": { type: T.PANEL, children: string },
|
|
||||||
"general_tab_section_ore_ui/gamepad_helper_label": { type: T.LABEL, children: string },
|
|
||||||
"general_tab_section": { type: T.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' | '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": { type: T.PANEL, children: string },
|
"general_tab_section/option_toggle_fail_realms_purchase_fulfillment": { type: T.PANEL, children: string },
|
||||||
"general_tab_section/network_label_header": { type: T.LABEL, children: string },
|
"general_tab_section/network_label_header": { type: T.LABEL, children: string },
|
||||||
"general_tab_section/paddingCrossPlatform": { type: T.PANEL, children: string },
|
"general_tab_section/paddingCrossPlatform": { type: T.PANEL, children: string },
|
||||||
|
|
@ -12613,6 +12664,7 @@ export type GeneralSectionType = {
|
||||||
"general_tab_section/pause_label_header": { type: T.LABEL, children: string },
|
"general_tab_section/pause_label_header": { type: T.LABEL, children: string },
|
||||||
"general_tab_section/paddingPauseFeature": { type: T.PANEL, children: string },
|
"general_tab_section/paddingPauseFeature": { type: T.PANEL, children: string },
|
||||||
"general_tab_section/pause_toggle": { type: T.PANEL, children: string },
|
"general_tab_section/pause_toggle": { type: T.PANEL, children: string },
|
||||||
|
"general_tab_section/pause_menu_on_focus_lost": { type: T.PANEL, children: string },
|
||||||
"general_tab_section/paddingLinkEduSupport": { type: T.PANEL, children: string },
|
"general_tab_section/paddingLinkEduSupport": { type: T.PANEL, children: string },
|
||||||
"general_tab_section/link_button": { type: T.BUTTON, children: string },
|
"general_tab_section/link_button": { type: T.BUTTON, children: string },
|
||||||
"general_tab_section/paddingDividerSustainability": { type: T.PANEL, children: string },
|
"general_tab_section/paddingDividerSustainability": { type: T.PANEL, children: string },
|
||||||
|
|
@ -12651,11 +12703,6 @@ export type GeneralSectionType = {
|
||||||
"general_tab_section/build_info_label_panel/build_info_label": { type: T.LABEL, children: string },
|
"general_tab_section/build_info_label_panel/build_info_label": { type: T.LABEL, children: string },
|
||||||
"general_tab_section/paddingSectionDividerBuildInfo": { type: T.PANEL, children: string },
|
"general_tab_section/paddingSectionDividerBuildInfo": { type: T.PANEL, children: string },
|
||||||
"general_tab_section/treatment_ids_label": { type: T.LABEL, children: string },
|
"general_tab_section/treatment_ids_label": { type: T.LABEL, children: string },
|
||||||
"account_section_ore_ui": { type: T.STACK_PANEL, children: 'spacer_0' | 'generic_label' | 'spacer_1' | 'gamepad_helper_label' },
|
|
||||||
"account_section_ore_ui/spacer_0": { type: T.PANEL, children: string },
|
|
||||||
"account_section_ore_ui/generic_label": { type: T.LABEL, children: string },
|
|
||||||
"account_section_ore_ui/spacer_1": { type: T.PANEL, children: string },
|
|
||||||
"account_section_ore_ui/gamepad_helper_label": { type: T.LABEL, children: string },
|
|
||||||
"account_button": { type: T.PANEL, children: string },
|
"account_button": { type: T.PANEL, children: string },
|
||||||
"view_account_errors_button_content": { type: T.LABEL, children: string },
|
"view_account_errors_button_content": { type: T.LABEL, children: string },
|
||||||
"switch_accounts_button_content": { type: T.STACK_PANEL, children: 'padded_icon' | 'padded_label' },
|
"switch_accounts_button_content": { type: T.STACK_PANEL, children: 'padded_icon' | 'padded_label' },
|
||||||
|
|
@ -12783,16 +12830,13 @@ export type GeneralSectionType = {
|
||||||
"editor_toggle_panel/editor_toggle_spacer": { type: T.PANEL, children: string },
|
"editor_toggle_panel/editor_toggle_spacer": { type: T.PANEL, children: string },
|
||||||
"editor_toggle_panel/editor_image_panel": { type: T.STACK_PANEL, children: 'editor_icon' },
|
"editor_toggle_panel/editor_image_panel": { type: T.STACK_PANEL, children: 'editor_icon' },
|
||||||
"editor_toggle_panel/editor_image_panel/editor_icon": { type: T.IMAGE, children: string },
|
"editor_toggle_panel/editor_image_panel/editor_icon": { type: T.IMAGE, children: string },
|
||||||
"creator_toggles_panel": { type: T.STACK_PANEL, children: 'section_panel_1' | 'copy_coordinate_section_stack_panel' | 'creator_setting_button' },
|
"creator_toggles_panel": { type: T.STACK_PANEL, children: 'section_panel_1' | 'primary_panel' },
|
||||||
"creator_toggles_panel/section_panel_1": { type: T.PANEL, children: 'section_divider' },
|
"creator_toggles_panel/section_panel_1": { type: T.PANEL, children: 'section_divider' },
|
||||||
"creator_toggles_panel/section_panel_1/section_divider": { type: T.IMAGE, children: string },
|
"creator_toggles_panel/section_panel_1/section_divider": { type: T.IMAGE, children: string },
|
||||||
"creator_toggles_panel/copy_coordinate_section_stack_panel": { type: T.STACK_PANEL, children: 'content_log_section_label' | 'content_log_section_label_spacer' | 'option_content_file_log' },
|
"creator_toggles_panel/primary_panel": { type: T.STACK_PANEL, children: 'content_log_section_label' | 'content_log_section_label_spacer' | 'clipboard_setting' },
|
||||||
"creator_toggles_panel/copy_coordinate_section_stack_panel/content_log_section_label": { type: T.LABEL, children: string },
|
"creator_toggles_panel/primary_panel/content_log_section_label": { type: T.LABEL, children: string },
|
||||||
"creator_toggles_panel/copy_coordinate_section_stack_panel/content_log_section_label_spacer": { type: T.PANEL, children: string },
|
"creator_toggles_panel/primary_panel/content_log_section_label_spacer": { type: T.PANEL, children: string },
|
||||||
"creator_toggles_panel/copy_coordinate_section_stack_panel/option_content_file_log": { type: T.PANEL, children: string },
|
"creator_toggles_panel/primary_panel/clipboard_setting": { type: T.PANEL, children: string },
|
||||||
"creator_toggles_panel/creator_setting_button": { type: T.STACK_PANEL, children: 'go_to_keybinds' | 'creator_settings_section_label_spacer' },
|
|
||||||
"creator_toggles_panel/creator_setting_button/go_to_keybinds": { type: T.BUTTON, children: string },
|
|
||||||
"creator_toggles_panel/creator_setting_button/creator_settings_section_label_spacer": { type: T.PANEL, children: string },
|
|
||||||
"debugger_toggles_panel": { type: T.STACK_PANEL, children: 'section_panel_1' | 'primary_panel' },
|
"debugger_toggles_panel": { type: T.STACK_PANEL, children: 'section_panel_1' | 'primary_panel' },
|
||||||
"debugger_toggles_panel/section_panel_1": { type: T.PANEL, children: 'section_divider' },
|
"debugger_toggles_panel/section_panel_1": { type: T.PANEL, children: 'section_divider' },
|
||||||
"debugger_toggles_panel/section_panel_1/section_divider": { type: T.IMAGE, children: string },
|
"debugger_toggles_panel/section_panel_1/section_divider": { type: T.IMAGE, children: string },
|
||||||
|
|
@ -12809,6 +12853,13 @@ export type GeneralSectionType = {
|
||||||
"debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/spacer": { type: T.PANEL, children: string },
|
"debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/spacer": { type: T.PANEL, children: string },
|
||||||
"debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/port_input": { type: T.PANEL, children: string },
|
"debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/port_input": { type: T.PANEL, children: string },
|
||||||
"debugger_toggles_panel/primary_panel/all_options_panel/auto_attach_timeout_slider": { type: T.PANEL, children: string },
|
"debugger_toggles_panel/primary_panel/all_options_panel/auto_attach_timeout_slider": { type: T.PANEL, children: string },
|
||||||
|
"editor_toggles_panel": { type: T.STACK_PANEL, children: 'section_panel_1' | 'primary_panel' },
|
||||||
|
"editor_toggles_panel/section_panel_1": { type: T.PANEL, children: 'section_divider' },
|
||||||
|
"editor_toggles_panel/section_panel_1/section_divider": { type: T.IMAGE, children: string },
|
||||||
|
"editor_toggles_panel/primary_panel": { type: T.STACK_PANEL, children: 'content_log_section_label' | 'content_log_section_label_spacer' | 'clipboard_setting' },
|
||||||
|
"editor_toggles_panel/primary_panel/content_log_section_label": { type: T.LABEL, children: string },
|
||||||
|
"editor_toggles_panel/primary_panel/content_log_section_label_spacer": { type: T.PANEL, children: string },
|
||||||
|
"editor_toggles_panel/primary_panel/clipboard_setting": { type: T.PANEL, children: string },
|
||||||
"diagnostics_toggles_panel": { type: T.STACK_PANEL, children: 'section_panel_1' | 'primary_panel' },
|
"diagnostics_toggles_panel": { type: T.STACK_PANEL, children: 'section_panel_1' | 'primary_panel' },
|
||||||
"diagnostics_toggles_panel/section_panel_1": { type: T.PANEL, children: 'section_divider' },
|
"diagnostics_toggles_panel/section_panel_1": { type: T.PANEL, children: 'section_divider' },
|
||||||
"diagnostics_toggles_panel/section_panel_1/section_divider": { type: T.IMAGE, children: string },
|
"diagnostics_toggles_panel/section_panel_1/section_divider": { type: T.IMAGE, children: string },
|
||||||
|
|
@ -12855,21 +12906,17 @@ export type GeneralSectionType = {
|
||||||
"content_log_panel/content_log_section_label_spacer_2": { type: T.PANEL, children: string },
|
"content_log_panel/content_log_section_label_spacer_2": { type: T.PANEL, children: string },
|
||||||
"content_log_panel/content_log_location_label_header": { type: T.LABEL, children: string },
|
"content_log_panel/content_log_location_label_header": { type: T.LABEL, children: string },
|
||||||
"content_log_panel/content_log_location_label": { type: T.LABEL, children: string },
|
"content_log_panel/content_log_location_label": { type: T.LABEL, children: string },
|
||||||
"creator_section": { type: T.STACK_PANEL, children: 'editor_toggle' | 'creator_toggles' | 'debugger_toggles_panel' | 'diagnostics_toggle_panel' | 'watchdog_toggles_panel' | 'device_info_toggles_panel' | 'content_log_panel' },
|
"creator_section": { type: T.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": { type: T.STACK_PANEL, children: string },
|
"creator_section/editor_toggle": { type: T.STACK_PANEL, children: string },
|
||||||
"creator_section/creator_toggles": { type: T.STACK_PANEL, children: string },
|
"creator_section/creator_toggles": { type: T.STACK_PANEL, children: string },
|
||||||
"creator_section/debugger_toggles_panel": { type: T.STACK_PANEL, children: string },
|
"creator_section/debugger_toggles_panel": { type: T.STACK_PANEL, children: string },
|
||||||
"creator_section/diagnostics_toggle_panel": { type: T.STACK_PANEL, children: string },
|
"creator_section/diagnostics_toggle_panel": { type: T.STACK_PANEL, children: string },
|
||||||
"creator_section/watchdog_toggles_panel": { type: T.STACK_PANEL, children: string },
|
"creator_section/watchdog_toggles_panel": { type: T.STACK_PANEL, children: string },
|
||||||
|
"creator_section/editor_toggles_panel": { type: T.STACK_PANEL, children: string },
|
||||||
"creator_section/device_info_toggles_panel": { type: T.STACK_PANEL, children: string },
|
"creator_section/device_info_toggles_panel": { type: T.STACK_PANEL, children: string },
|
||||||
"creator_section/content_log_panel": { type: T.STACK_PANEL, children: string },
|
"creator_section/content_log_panel": { type: T.STACK_PANEL, children: string },
|
||||||
"video_button": { type: T.PANEL, children: string },
|
"video_button": { type: T.PANEL, children: string },
|
||||||
"advanced_video_options_toggle": { type: T.TOGGLE, children: string },
|
"advanced_video_options_toggle": { type: T.TOGGLE, children: string },
|
||||||
"video_section_ore_ui": { type: T.STACK_PANEL, children: 'spacer_0' | 'generic_label' | 'spacer_1' | 'gamepad_helper_label' },
|
|
||||||
"video_section_ore_ui/spacer_0": { type: T.PANEL, children: string },
|
|
||||||
"video_section_ore_ui/generic_label": { type: T.LABEL, children: string },
|
|
||||||
"video_section_ore_ui/spacer_1": { type: T.PANEL, children: string },
|
|
||||||
"video_section_ore_ui/gamepad_helper_label": { type: T.LABEL, children: string },
|
|
||||||
"video_menu_slider_step_progress": { type: T.IMAGE, children: string },
|
"video_menu_slider_step_progress": { type: T.IMAGE, children: string },
|
||||||
"video_menu_slider_progress": { type: T.IMAGE, children: string },
|
"video_menu_slider_progress": { type: T.IMAGE, children: string },
|
||||||
"video_menu_slider_bar_default": { type: T.IMAGE, children: string },
|
"video_menu_slider_bar_default": { type: T.IMAGE, children: string },
|
||||||
|
|
@ -12879,7 +12926,7 @@ export type GeneralSectionType = {
|
||||||
"video_menu_customization_slider_control/slider/slider_bar_default": { type: T.IMAGE, children: string },
|
"video_menu_customization_slider_control/slider/slider_bar_default": { type: T.IMAGE, children: string },
|
||||||
"video_menu_customization_slider_control/slider/slider_bar_hover": { type: T.IMAGE, children: string },
|
"video_menu_customization_slider_control/slider/slider_bar_hover": { type: T.IMAGE, children: string },
|
||||||
"video_menu_customization_option_slider": { type: T.PANEL, children: string },
|
"video_menu_customization_option_slider": { type: T.PANEL, children: string },
|
||||||
"video_section": { type: T.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' | 'reset_button' },
|
"video_section": { type: T.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": { type: T.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": { type: T.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": { type: T.PANEL, children: string },
|
"video_section/advanced_graphics_options_panel/graphics_mode": { type: T.PANEL, children: string },
|
||||||
"video_section/advanced_graphics_options_panel/graphics_quality_preset_mode_dropdown_content": { type: T.PANEL, children: string },
|
"video_section/advanced_graphics_options_panel/graphics_quality_preset_mode_dropdown_content": { type: T.PANEL, children: string },
|
||||||
|
|
@ -12982,6 +13029,8 @@ export type GeneralSectionType = {
|
||||||
"video_section/spacer_35": { type: T.PANEL, children: string },
|
"video_section/spacer_35": { type: T.PANEL, children: string },
|
||||||
"video_section/texel_anti_aliasing_toggle": { type: T.PANEL, children: string },
|
"video_section/texel_anti_aliasing_toggle": { type: T.PANEL, children: string },
|
||||||
"video_section/spacer_36": { type: T.PANEL, children: string },
|
"video_section/spacer_36": { type: T.PANEL, children: string },
|
||||||
|
"video_section/texture_streaming_toggle": { type: T.PANEL, children: string },
|
||||||
|
"video_section/spacer_37": { type: T.PANEL, children: string },
|
||||||
"video_section/reset_button": { type: T.BUTTON, children: string },
|
"video_section/reset_button": { type: T.BUTTON, children: string },
|
||||||
"max_framerate_slider": { type: T.PANEL, children: 'option_generic_core' },
|
"max_framerate_slider": { type: T.PANEL, children: 'option_generic_core' },
|
||||||
"max_framerate_slider/option_generic_core": { type: T.STACK_PANEL, children: string },
|
"max_framerate_slider/option_generic_core": { type: T.STACK_PANEL, children: string },
|
||||||
|
|
@ -13100,7 +13149,8 @@ export type GeneralSectionType = {
|
||||||
"toast_notification_duration_info_edu_label": { type: T.LABEL, children: string },
|
"toast_notification_duration_info_edu_label": { type: T.LABEL, children: string },
|
||||||
"chat_message_duration_label": { type: T.LABEL, children: string },
|
"chat_message_duration_label": { type: T.LABEL, children: string },
|
||||||
"chat_message_duration_info_label": { type: T.LABEL, children: string },
|
"chat_message_duration_info_label": { type: T.LABEL, children: string },
|
||||||
"accessibility_section": { type: T.STACK_PANEL, children: '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": { type: T.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": { type: T.PANEL, children: string },
|
||||||
"accessibility_section/option_toggle0": { type: T.PANEL, children: string },
|
"accessibility_section/option_toggle0": { type: T.PANEL, children: string },
|
||||||
"accessibility_section/option_toggle1": { type: T.PANEL, children: string },
|
"accessibility_section/option_toggle1": { type: T.PANEL, children: string },
|
||||||
"accessibility_section/option_toggle2": { type: T.PANEL, children: string },
|
"accessibility_section/option_toggle2": { type: T.PANEL, children: string },
|
||||||
|
|
@ -13132,18 +13182,7 @@ export type GeneralSectionType = {
|
||||||
"accessibility_section/gui_accessibility_scaling_toggle": { type: T.PANEL, children: 'option_generic_core' },
|
"accessibility_section/gui_accessibility_scaling_toggle": { type: T.PANEL, children: 'option_generic_core' },
|
||||||
"accessibility_section/gui_accessibility_scaling_toggle/option_generic_core": { type: T.STACK_PANEL, children: string },
|
"accessibility_section/gui_accessibility_scaling_toggle/option_generic_core": { type: T.STACK_PANEL, children: string },
|
||||||
"accessibility_section/reset_button": { type: T.BUTTON, children: string },
|
"accessibility_section/reset_button": { type: T.BUTTON, children: string },
|
||||||
"accessibility_section_ore_ui": { type: T.STACK_PANEL, children: 'spacer_0' | 'generic_label' | 'spacer_1' | 'gamepad_helper_label' | 'accessibility_button' },
|
|
||||||
"accessibility_section_ore_ui/spacer_0": { type: T.PANEL, children: string },
|
|
||||||
"accessibility_section_ore_ui/generic_label": { type: T.LABEL, children: string },
|
|
||||||
"accessibility_section_ore_ui/spacer_1": { type: T.PANEL, children: string },
|
|
||||||
"accessibility_section_ore_ui/gamepad_helper_label": { type: T.LABEL, children: string },
|
|
||||||
"accessibility_section_ore_ui/accessibility_button": { type: T.BUTTON, children: string },
|
|
||||||
"sound_button": { type: T.PANEL, children: string },
|
"sound_button": { type: T.PANEL, children: string },
|
||||||
"sound_section_ore_ui": { type: T.STACK_PANEL, children: 'spacer_0' | 'generic_label' | 'spacer_1' | 'gamepad_helper_label' },
|
|
||||||
"sound_section_ore_ui/spacer_0": { type: T.PANEL, children: string },
|
|
||||||
"sound_section_ore_ui/generic_label": { type: T.LABEL, children: string },
|
|
||||||
"sound_section_ore_ui/spacer_1": { type: T.PANEL, children: string },
|
|
||||||
"sound_section_ore_ui/gamepad_helper_label": { type: T.LABEL, children: string },
|
|
||||||
"sound_section": { type: T.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": { type: T.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": { type: T.PANEL, children: string },
|
"sound_section/paddingMainVolume": { type: T.PANEL, children: string },
|
||||||
"sound_section/option_slider_0": { type: T.PANEL, children: string },
|
"sound_section/option_slider_0": { type: T.PANEL, children: string },
|
||||||
|
|
@ -13177,11 +13216,6 @@ export type GeneralSectionType = {
|
||||||
"language_grid_item": { type: T.PANEL, children: string },
|
"language_grid_item": { type: T.PANEL, children: string },
|
||||||
"language_section": { type: T.STACK_PANEL, children: 'language_list_grid' },
|
"language_section": { type: T.STACK_PANEL, children: 'language_list_grid' },
|
||||||
"language_section/language_list_grid": { type: T.GRID, children: string },
|
"language_section/language_list_grid": { type: T.GRID, children: string },
|
||||||
"language_section_ore_ui": { type: T.STACK_PANEL, children: 'spacer_0' | 'generic_label' | 'spacer_1' | 'gamepad_helper_label' },
|
|
||||||
"language_section_ore_ui/spacer_0": { type: T.PANEL, children: string },
|
|
||||||
"language_section_ore_ui/generic_label": { type: T.LABEL, children: string },
|
|
||||||
"language_section_ore_ui/spacer_1": { type: T.PANEL, children: string },
|
|
||||||
"language_section_ore_ui/gamepad_helper_label": { type: T.LABEL, children: string },
|
|
||||||
"preview_button": { type: T.PANEL, children: string },
|
"preview_button": { type: T.PANEL, children: string },
|
||||||
"preview_section": { type: T.STACK_PANEL, children: 'spacer_0' | 'generic_label' | 'preview_store_launch_app1_button' | 'preview_store_launch_app2_button' },
|
"preview_section": { type: T.STACK_PANEL, children: 'spacer_0' | 'generic_label' | 'preview_store_launch_app1_button' | 'preview_store_launch_app2_button' },
|
||||||
"preview_section/spacer_0": { type: T.PANEL, children: string },
|
"preview_section/spacer_0": { type: T.PANEL, children: string },
|
||||||
|
|
@ -13241,7 +13275,7 @@ export type GeneralSectionType = {
|
||||||
"override_version_panel/patch_version_text_box": { type: T.PANEL, children: string },
|
"override_version_panel/patch_version_text_box": { type: T.PANEL, children: string },
|
||||||
"dot_label": { type: T.LABEL, children: string },
|
"dot_label": { type: T.LABEL, children: string },
|
||||||
"debug_override_treatments_panel": { type: T.PANEL, children: 'override_treatments_panel_background' },
|
"debug_override_treatments_panel": { type: T.PANEL, children: 'override_treatments_panel_background' },
|
||||||
"debug_override_treatments_panel/override_treatments_panel_background": { type: T.STACK_PANEL, children: 'option_toggle_treatment_override' | 'spacer_0' | 'override_treatment_options_panel' | 'treatments_label_panel' | 'progress_spinner_1' | 'treatment_grid' | 'unused_treatments_label_panel' | 'progress_spinner_2' | 'unused_treatment_grid' | 'spacer_1' },
|
"debug_override_treatments_panel/override_treatments_panel_background": { type: T.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": { type: T.PANEL, children: string },
|
"debug_override_treatments_panel/override_treatments_panel_background/option_toggle_treatment_override": { type: T.PANEL, children: string },
|
||||||
"debug_override_treatments_panel/override_treatments_panel_background/spacer_0": { type: T.PANEL, children: string },
|
"debug_override_treatments_panel/override_treatments_panel_background/spacer_0": { type: T.PANEL, children: string },
|
||||||
"debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel": { type: T.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": { type: T.STACK_PANEL, children: 'apply_treatments_button' | 'add_treatments_panel' | 'treatment_cache_management_panel' },
|
||||||
|
|
@ -13255,13 +13289,9 @@ export type GeneralSectionType = {
|
||||||
"debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel/clear_treatments": { type: T.BUTTON, children: string },
|
"debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel/clear_treatments": { type: T.BUTTON, children: string },
|
||||||
"debug_override_treatments_panel/override_treatments_panel_background/treatments_label_panel": { type: T.IMAGE, children: 'treatments_label' },
|
"debug_override_treatments_panel/override_treatments_panel_background/treatments_label_panel": { type: T.IMAGE, children: 'treatments_label' },
|
||||||
"debug_override_treatments_panel/override_treatments_panel_background/treatments_label_panel/treatments_label": { type: T.LABEL, children: string },
|
"debug_override_treatments_panel/override_treatments_panel_background/treatments_label_panel/treatments_label": { type: T.LABEL, children: string },
|
||||||
"debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_1": { type: T.PANEL, children: 'progress_loading_spinner_1' },
|
|
||||||
"debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_1/progress_loading_spinner_1": { type: T.IMAGE, children: string },
|
|
||||||
"debug_override_treatments_panel/override_treatments_panel_background/treatment_grid": { type: T.GRID, children: string },
|
"debug_override_treatments_panel/override_treatments_panel_background/treatment_grid": { type: T.GRID, children: string },
|
||||||
"debug_override_treatments_panel/override_treatments_panel_background/unused_treatments_label_panel": { type: T.IMAGE, children: 'treatments_label' },
|
"debug_override_treatments_panel/override_treatments_panel_background/unused_treatments_label_panel": { type: T.IMAGE, children: 'treatments_label' },
|
||||||
"debug_override_treatments_panel/override_treatments_panel_background/unused_treatments_label_panel/treatments_label": { type: T.LABEL, children: string },
|
"debug_override_treatments_panel/override_treatments_panel_background/unused_treatments_label_panel/treatments_label": { type: T.LABEL, children: string },
|
||||||
"debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_2": { type: T.PANEL, children: 'progress_loading_spinner_2' },
|
|
||||||
"debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_2/progress_loading_spinner_2": { type: T.IMAGE, children: string },
|
|
||||||
"debug_override_treatments_panel/override_treatments_panel_background/unused_treatment_grid": { type: T.GRID, children: string },
|
"debug_override_treatments_panel/override_treatments_panel_background/unused_treatment_grid": { type: T.GRID, children: string },
|
||||||
"debug_override_treatments_panel/override_treatments_panel_background/spacer_1": { type: T.PANEL, children: string },
|
"debug_override_treatments_panel/override_treatments_panel_background/spacer_1": { type: T.PANEL, children: string },
|
||||||
"debug_override_configurations_panel": { type: T.PANEL, children: 'override_configurations_panel_background' },
|
"debug_override_configurations_panel": { type: T.PANEL, children: 'override_configurations_panel_background' },
|
||||||
|
|
@ -13380,7 +13410,7 @@ export type GeneralSectionType = {
|
||||||
"discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_3": { type: T.PANEL, children: string },
|
"discovery_debug_section/debug_override_discovery_panel/override_discovery_panel_background/override_discovery_options_panel/spacer_3": { type: T.PANEL, children: string },
|
||||||
"debug_button": { type: T.PANEL, children: string },
|
"debug_button": { type: T.PANEL, children: string },
|
||||||
"feature_toggle": { type: T.PANEL, children: string },
|
"feature_toggle": { type: T.PANEL, children: string },
|
||||||
"debug_section": { type: T.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_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_report_timer_option' | 'reset_online_safety_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": { type: T.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": { type: T.LABEL, children: string },
|
"debug_section/options_for_qa_convenience": { type: T.LABEL, children: string },
|
||||||
"debug_section/options_for_qa_convenience_spacer": { type: T.PANEL, children: string },
|
"debug_section/options_for_qa_convenience_spacer": { type: T.PANEL, children: string },
|
||||||
"debug_section/option_toggle_dev_console_button_0": { type: T.PANEL, children: string },
|
"debug_section/option_toggle_dev_console_button_0": { type: T.PANEL, children: string },
|
||||||
|
|
@ -13406,6 +13436,7 @@ export type GeneralSectionType = {
|
||||||
"debug_section/option_toggle_remote_imgui": { type: T.PANEL, children: string },
|
"debug_section/option_toggle_remote_imgui": { type: T.PANEL, children: string },
|
||||||
"debug_section/option_dropdown_0": { type: T.PANEL, children: string },
|
"debug_section/option_dropdown_0": { type: T.PANEL, children: string },
|
||||||
"debug_section/option_toggle_extra_debug_hud_info": { type: T.PANEL, children: string },
|
"debug_section/option_toggle_extra_debug_hud_info": { type: T.PANEL, children: string },
|
||||||
|
"debug_section/option_toggle_show_test_running_text": { type: T.PANEL, children: string },
|
||||||
"debug_section/option_toggle_0_1": { type: T.PANEL, children: string },
|
"debug_section/option_toggle_0_1": { type: T.PANEL, children: string },
|
||||||
"debug_section/option_toggle_0_2": { type: T.PANEL, children: string },
|
"debug_section/option_toggle_0_2": { type: T.PANEL, children: string },
|
||||||
"debug_section/option_slider_0": { type: T.PANEL, children: string },
|
"debug_section/option_slider_0": { type: T.PANEL, children: string },
|
||||||
|
|
@ -13459,8 +13490,11 @@ export type GeneralSectionType = {
|
||||||
"debug_section/option_text_edit_1": { type: T.PANEL, children: string },
|
"debug_section/option_text_edit_1": { type: T.PANEL, children: string },
|
||||||
"debug_section/option_text_edit_2": { type: T.PANEL, children: string },
|
"debug_section/option_text_edit_2": { type: T.PANEL, children: string },
|
||||||
"debug_section/option_text_edit_3": { type: T.PANEL, children: string },
|
"debug_section/option_text_edit_3": { type: T.PANEL, children: string },
|
||||||
|
"debug_section/reset_authentication_option": { type: T.BUTTON, children: string },
|
||||||
"debug_section/reset_report_timer_option": { type: T.BUTTON, children: string },
|
"debug_section/reset_report_timer_option": { type: T.BUTTON, children: string },
|
||||||
"debug_section/reset_online_safety_option": { type: T.BUTTON, children: string },
|
"debug_section/reset_online_safety_option": { type: T.BUTTON, children: string },
|
||||||
|
"debug_section/reset_show_hardcore_warning_option": { type: T.BUTTON, children: string },
|
||||||
|
"debug_section/reset_low_ping_warning_option": { type: T.BUTTON, children: string },
|
||||||
"debug_section/reset_ip_safety_option": { type: T.BUTTON, children: string },
|
"debug_section/reset_ip_safety_option": { type: T.BUTTON, children: string },
|
||||||
"debug_section/padding_graphics_options": { type: T.PANEL, children: string },
|
"debug_section/padding_graphics_options": { type: T.PANEL, children: string },
|
||||||
"debug_section/option_shadersdk_service_ip": { type: T.PANEL, children: string },
|
"debug_section/option_shadersdk_service_ip": { type: T.PANEL, children: string },
|
||||||
|
|
@ -13556,7 +13590,7 @@ export type GeneralSectionType = {
|
||||||
"new_bed_grid_item": { type: T.PANEL, children: string },
|
"new_bed_grid_item": { type: T.PANEL, children: string },
|
||||||
"ore_ui_gameplay_ui_grid_item": { type: T.PANEL, children: string },
|
"ore_ui_gameplay_ui_grid_item": { type: T.PANEL, children: string },
|
||||||
"new_settings_screen_grid_item": { type: T.PANEL, children: string },
|
"new_settings_screen_grid_item": { type: T.PANEL, children: string },
|
||||||
"ui_debug_section": { type: T.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' | '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": { type: T.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": { type: T.LABEL, children: string },
|
"ui_debug_section/ui_feature_toggles_label": { type: T.LABEL, children: string },
|
||||||
"ui_debug_section/ui_feature_toggles_info_label": { type: T.LABEL, children: string },
|
"ui_debug_section/ui_feature_toggles_info_label": { type: T.LABEL, children: string },
|
||||||
"ui_debug_section/ui_feature_toggles_label_spacer": { type: T.PANEL, children: string },
|
"ui_debug_section/ui_feature_toggles_label_spacer": { type: T.PANEL, children: string },
|
||||||
|
|
@ -13617,6 +13651,18 @@ export type GeneralSectionType = {
|
||||||
"ui_debug_section/ui_feature_toggles_spacer": { type: T.PANEL, children: string },
|
"ui_debug_section/ui_feature_toggles_spacer": { type: T.PANEL, children: string },
|
||||||
"ui_debug_section/option_show_touch_control_selection_screen": { type: T.PANEL, children: string },
|
"ui_debug_section/option_show_touch_control_selection_screen": { type: T.PANEL, children: string },
|
||||||
"ui_debug_section/option_reset_on_start": { type: T.PANEL, children: string },
|
"ui_debug_section/option_reset_on_start": { type: T.PANEL, children: string },
|
||||||
|
"ui_debug_section/end_of_other_options_divider": { type: T.PANEL, children: 'section_divider' },
|
||||||
|
"ui_debug_section/end_of_other_options_divider/section_divider": { type: T.IMAGE, children: string },
|
||||||
|
"ui_debug_section/end_of_other_options_spacer": { type: T.PANEL, children: string },
|
||||||
|
"ui_debug_section/debug_data_label": { type: T.LABEL, children: string },
|
||||||
|
"ui_debug_section/debug_data_label_spacer": { type: T.PANEL, children: string },
|
||||||
|
"ui_debug_section/option_continuous_repaint": { type: T.PANEL, children: string },
|
||||||
|
"ui_debug_section/option_show_paint_rects": { type: T.PANEL, children: string },
|
||||||
|
"ui_debug_section/option_show_element_aabb": { type: T.PANEL, children: string },
|
||||||
|
"ui_debug_section/option_emulate_touch_events": { type: T.PANEL, children: string },
|
||||||
|
"ui_debug_section/end_of_debug_data_divider": { type: T.PANEL, children: 'section_divider' },
|
||||||
|
"ui_debug_section/end_of_debug_data_divider/section_divider": { type: T.IMAGE, children: string },
|
||||||
|
"ui_debug_section/end_of_debug_data_spacer": { type: T.PANEL, children: string },
|
||||||
"ui_debug_section/option_slider_drag_dwell": { type: T.PANEL, children: string },
|
"ui_debug_section/option_slider_drag_dwell": { type: T.PANEL, children: string },
|
||||||
"ui_debug_section/option_slider_stack_splitting": { type: T.PANEL, children: string },
|
"ui_debug_section/option_slider_stack_splitting": { type: T.PANEL, children: string },
|
||||||
"ui_debug_section/reset_render_distance_warning_modal_label": { type: T.LABEL, children: string },
|
"ui_debug_section/reset_render_distance_warning_modal_label": { type: T.LABEL, children: string },
|
||||||
|
|
@ -13958,6 +14004,7 @@ export type SettingsCommonType = {
|
||||||
"option_custom_control": { type: T.PANEL, children: string },
|
"option_custom_control": { type: T.PANEL, children: string },
|
||||||
"option_info_label": { type: T.PANEL, children: string },
|
"option_info_label": { type: T.PANEL, children: string },
|
||||||
"dynamic_dialog_screen": { type: T.SCREEN, children: string },
|
"dynamic_dialog_screen": { type: T.SCREEN, children: string },
|
||||||
|
"dynamic_dialog_fullscreen": { type: T.SCREEN, children: string },
|
||||||
"settings_content": { type: T.PANEL, children: 'background' | 'stack_panel' | 'popup_dialog_factory' },
|
"settings_content": { type: T.PANEL, children: 'background' | 'stack_panel' | 'popup_dialog_factory' },
|
||||||
"settings_content/background": { type: T.IMAGE, children: string },
|
"settings_content/background": { type: T.IMAGE, children: string },
|
||||||
"settings_content/stack_panel": { type: T.STACK_PANEL, children: 'content_panel' },
|
"settings_content/stack_panel": { type: T.STACK_PANEL, children: 'content_panel' },
|
||||||
|
|
@ -13984,10 +14031,17 @@ export type SettingsCommonType = {
|
||||||
"dialog_content/selector_area": { type: T.PANEL, children: string },
|
"dialog_content/selector_area": { type: T.PANEL, children: string },
|
||||||
"dialog_content/content_area": { type: T.PANEL, children: string },
|
"dialog_content/content_area": { type: T.PANEL, children: string },
|
||||||
"dialog_content/section_divider": { type: T.IMAGE, children: string },
|
"dialog_content/section_divider": { type: T.IMAGE, children: string },
|
||||||
|
"dialog_content_fullscreen": { type: T.PANEL, children: 'dialog_titles' | 'selector_area' | 'content_area' | 'section_divider' },
|
||||||
|
"dialog_content_fullscreen/dialog_titles": { type: T.STACK_PANEL, children: string },
|
||||||
|
"dialog_content_fullscreen/selector_area": { type: T.PANEL, children: string },
|
||||||
|
"dialog_content_fullscreen/content_area": { type: T.PANEL, children: string },
|
||||||
|
"dialog_content_fullscreen/section_divider": { type: T.IMAGE, children: string },
|
||||||
"selector_group_label": { type: T.LABEL, children: string },
|
"selector_group_label": { type: T.LABEL, children: string },
|
||||||
"scrollable_selector_area_content": { type: T.PANEL, children: string },
|
"scrollable_selector_area_content": { type: T.PANEL, children: string },
|
||||||
"selector_area": { type: T.PANEL, children: 'scrolling_panel' },
|
"selector_area": { type: T.PANEL, children: 'scrolling_panel' },
|
||||||
"selector_area/scrolling_panel": { type: T.PANEL, children: string },
|
"selector_area/scrolling_panel": { type: T.PANEL, children: string },
|
||||||
|
"selector_area_no_scroll": { type: T.PANEL, children: 'scrolling_panel' },
|
||||||
|
"selector_area_no_scroll/scrolling_panel": { type: T.PANEL, children: string },
|
||||||
"content_area": { type: T.PANEL, children: 'control' },
|
"content_area": { type: T.PANEL, children: 'control' },
|
||||||
"content_area/control": { type: T.STACK_PANEL, children: 'header_panel' | 'scrolling_panel' | 'footer_panel' },
|
"content_area/control": { type: T.STACK_PANEL, children: 'header_panel' | 'scrolling_panel' | 'footer_panel' },
|
||||||
"content_area/control/header_panel": { type: T.PANEL, children: 'content' },
|
"content_area/control/header_panel": { type: T.PANEL, children: 'content' },
|
||||||
|
|
@ -13997,6 +14051,7 @@ export type SettingsCommonType = {
|
||||||
"content_area/control/footer_panel/content": { type: T.UNKNOWN, children: string },
|
"content_area/control/footer_panel/content": { type: T.UNKNOWN, children: string },
|
||||||
"section_divider": { type: T.IMAGE, children: string },
|
"section_divider": { type: T.IMAGE, children: string },
|
||||||
"screen_base": { type: T.SCREEN, children: string },
|
"screen_base": { type: T.SCREEN, children: string },
|
||||||
|
"screen_base_fullscreen": { type: T.SCREEN, children: string },
|
||||||
}
|
}
|
||||||
|
|
||||||
export type WorldSectionType = {
|
export type WorldSectionType = {
|
||||||
|
|
@ -15496,6 +15551,25 @@ export type CommonStoreType = {
|
||||||
"new_offer_icon": { type: T.IMAGE, children: string },
|
"new_offer_icon": { type: T.IMAGE, children: string },
|
||||||
"status_new_offer_icon": { type: T.IMAGE, children: string },
|
"status_new_offer_icon": { type: T.IMAGE, children: string },
|
||||||
"update_balloon_icon": { type: T.IMAGE, children: string },
|
"update_balloon_icon": { type: T.IMAGE, children: string },
|
||||||
|
"badge_overlay_panel": { type: T.PANEL, children: 'top' | 'bottom' },
|
||||||
|
"badge_overlay_panel/top": { type: T.STACK_PANEL, children: string },
|
||||||
|
"badge_overlay_panel/bottom": { type: T.STACK_PANEL, children: string },
|
||||||
|
"badge_overlay_stack": { type: T.STACK_PANEL, children: 'left_badge' | 'padding' | 'right_badge' },
|
||||||
|
"badge_overlay_stack/left_badge": { type: T.STACK_PANEL, children: string },
|
||||||
|
"badge_overlay_stack/padding": { type: T.PANEL, children: string },
|
||||||
|
"badge_overlay_stack/right_badge": { type: T.STACK_PANEL, children: string },
|
||||||
|
"content_card_tail_image": { type: T.IMAGE, children: string },
|
||||||
|
"content_card_badge": { type: T.STACK_PANEL, children: 'leftTail' | 'background' | 'rightTail' },
|
||||||
|
"content_card_badge/leftTail": { type: T.IMAGE, children: string },
|
||||||
|
"content_card_badge/background": { type: T.IMAGE, children: 'outline' },
|
||||||
|
"content_card_badge/background/outline": { type: T.IMAGE, children: 'badgeStackPanel' },
|
||||||
|
"content_card_badge/background/outline/badgeStackPanel": { type: T.STACK_PANEL, children: 'paddingLeft' | 'badgeIcon' | 'paddingMiddle' | 'badgeText' | 'paddingRight' },
|
||||||
|
"content_card_badge/background/outline/badgeStackPanel/paddingLeft": { type: T.PANEL, children: string },
|
||||||
|
"content_card_badge/background/outline/badgeStackPanel/badgeIcon": { type: T.IMAGE, children: string },
|
||||||
|
"content_card_badge/background/outline/badgeStackPanel/paddingMiddle": { type: T.PANEL, children: string },
|
||||||
|
"content_card_badge/background/outline/badgeStackPanel/badgeText": { type: T.LABEL, children: string },
|
||||||
|
"content_card_badge/background/outline/badgeStackPanel/paddingRight": { type: T.PANEL, children: string },
|
||||||
|
"content_card_badge/rightTail": { type: T.IMAGE, children: string },
|
||||||
"icon_overlay_panel": { type: T.PANEL, children: 'icon_overlay_position_factory' },
|
"icon_overlay_panel": { type: T.PANEL, children: 'icon_overlay_position_factory' },
|
||||||
"icon_overlay_panel/icon_overlay_position_factory": { type: T.COLLECTION_PANEL, children: string },
|
"icon_overlay_panel/icon_overlay_position_factory": { type: T.COLLECTION_PANEL, children: string },
|
||||||
"icon_overlay_position_factory": { type: T.COLLECTION_PANEL, children: string },
|
"icon_overlay_position_factory": { type: T.COLLECTION_PANEL, children: string },
|
||||||
|
|
@ -16072,9 +16146,10 @@ export type CommonStoreType = {
|
||||||
"offer_prompt_panel/offer_status_text_panel/offer_status_text": { type: T.LABEL, children: string },
|
"offer_prompt_panel/offer_status_text_panel/offer_status_text": { type: T.LABEL, children: string },
|
||||||
"store_offer_grid_item": { type: T.PANEL, children: 'frame' },
|
"store_offer_grid_item": { type: T.PANEL, children: 'frame' },
|
||||||
"store_offer_grid_item/frame": { type: T.UNKNOWN, children: 'key_art' | 'progress_loading' | 'progress' | 'durable_offer_info_panel' | 'offer_button' },
|
"store_offer_grid_item/frame": { type: T.UNKNOWN, children: 'key_art' | 'progress_loading' | 'progress' | 'durable_offer_info_panel' | 'offer_button' },
|
||||||
"store_offer_grid_item/frame/key_art": { type: T.IMAGE, children: 'key_art_frame' | 'csb_plus_expiration_banner' },
|
"store_offer_grid_item/frame/key_art": { type: T.IMAGE, children: 'key_art_frame' | 'csb_plus_expiration_banner' | 'badge_overlay_panel' },
|
||||||
"store_offer_grid_item/frame/key_art/key_art_frame": { type: T.IMAGE, children: string },
|
"store_offer_grid_item/frame/key_art/key_art_frame": { type: T.IMAGE, children: string },
|
||||||
"store_offer_grid_item/frame/key_art/csb_plus_expiration_banner": { type: T.PANEL, children: string },
|
"store_offer_grid_item/frame/key_art/csb_plus_expiration_banner": { type: T.PANEL, children: string },
|
||||||
|
"store_offer_grid_item/frame/key_art/badge_overlay_panel": { type: T.PANEL, children: string },
|
||||||
"store_offer_grid_item/frame/progress_loading": { type: T.PANEL, children: string },
|
"store_offer_grid_item/frame/progress_loading": { type: T.PANEL, children: string },
|
||||||
"store_offer_grid_item/frame/progress": { type: T.PANEL, children: string },
|
"store_offer_grid_item/frame/progress": { type: T.PANEL, children: string },
|
||||||
"store_offer_grid_item/frame/durable_offer_info_panel": { type: T.STACK_PANEL, children: 'title_label_padding_stack' | 'offer_status_panel' },
|
"store_offer_grid_item/frame/durable_offer_info_panel": { type: T.STACK_PANEL, children: 'title_label_padding_stack' | 'offer_status_panel' },
|
||||||
|
|
@ -16128,7 +16203,6 @@ export type CommonStoreType = {
|
||||||
"store_offer_grid_factory": { type: T.COLLECTION_PANEL, children: string },
|
"store_offer_grid_factory": { type: T.COLLECTION_PANEL, children: string },
|
||||||
"non_collection_item_horizontal_padding": { type: T.PANEL, children: string },
|
"non_collection_item_horizontal_padding": { type: T.PANEL, children: string },
|
||||||
"horizontal_store_offer_row_factory": { type: T.STACK_PANEL, children: string },
|
"horizontal_store_offer_row_factory": { type: T.STACK_PANEL, children: string },
|
||||||
"recently_viewed_row_panel": { type: T.PANEL, children: string },
|
|
||||||
"static_offer_row_panel": { type: T.PANEL, children: 'store_row_dropdown_panel' },
|
"static_offer_row_panel": { type: T.PANEL, children: 'store_row_dropdown_panel' },
|
||||||
"static_offer_row_panel/store_row_dropdown_panel": { type: T.PANEL, children: 'store_row_section_panel' },
|
"static_offer_row_panel/store_row_dropdown_panel": { type: T.PANEL, children: 'store_row_section_panel' },
|
||||||
"static_offer_row_panel/store_row_dropdown_panel/store_row_section_panel": { type: T.PANEL, children: string },
|
"static_offer_row_panel/store_row_dropdown_panel/store_row_section_panel": { type: T.PANEL, children: string },
|
||||||
|
|
@ -18415,6 +18489,9 @@ export type CommonType = {
|
||||||
"container_gamepad_helpers/buttons/gamepad_helper_y": { type: T.UNKNOWN, children: string },
|
"container_gamepad_helpers/buttons/gamepad_helper_y": { type: T.UNKNOWN, children: string },
|
||||||
"container_gamepad_helpers/buttons/gamepad_helper_b": { type: T.UNKNOWN, children: string },
|
"container_gamepad_helpers/buttons/gamepad_helper_b": { type: T.UNKNOWN, children: string },
|
||||||
"container_gamepad_helpers/buffer_panel_right": { type: T.PANEL, children: string },
|
"container_gamepad_helpers/buffer_panel_right": { type: T.PANEL, children: string },
|
||||||
|
"gamepad_helper_bumpers": { type: T.PANEL, children: 'gamepad_helper_left_bumper' | 'gamepad_helper_right_bumper' },
|
||||||
|
"gamepad_helper_bumpers/gamepad_helper_left_bumper": { type: T.STACK_PANEL, children: string },
|
||||||
|
"gamepad_helper_bumpers/gamepad_helper_right_bumper": { type: T.STACK_PANEL, children: string },
|
||||||
"tabs_left_gamepad_helpers": { type: T.PANEL, children: 'gamepad_helper_left_bumper' | 'gamepad_helper_left_trigger' },
|
"tabs_left_gamepad_helpers": { type: T.PANEL, children: 'gamepad_helper_left_bumper' | 'gamepad_helper_left_trigger' },
|
||||||
"tabs_left_gamepad_helpers/gamepad_helper_left_bumper": { type: T.STACK_PANEL, children: string },
|
"tabs_left_gamepad_helpers/gamepad_helper_left_bumper": { type: T.STACK_PANEL, children: string },
|
||||||
"tabs_left_gamepad_helpers/gamepad_helper_left_trigger": { type: T.STACK_PANEL, children: string },
|
"tabs_left_gamepad_helpers/gamepad_helper_left_trigger": { type: T.STACK_PANEL, children: string },
|
||||||
|
|
@ -18473,6 +18550,8 @@ export type CommonType = {
|
||||||
"normal_button": { type: T.IMAGE, children: string },
|
"normal_button": { type: T.IMAGE, children: string },
|
||||||
"normal_stroke_button": { type: T.IMAGE, children: string },
|
"normal_stroke_button": { type: T.IMAGE, children: string },
|
||||||
"section_heading_label": { type: T.LABEL, children: string },
|
"section_heading_label": { type: T.LABEL, children: string },
|
||||||
|
"center_fold": { type: T.INPUT_PANEL, children: 'center_bg' },
|
||||||
|
"center_fold/center_bg": { type: T.IMAGE, children: string },
|
||||||
"section_divider": { type: T.STACK_PANEL, children: 'padding1' | 'divider_parent' | 'padding2' },
|
"section_divider": { type: T.STACK_PANEL, children: 'padding1' | 'divider_parent' | 'padding2' },
|
||||||
"section_divider/padding1": { type: T.PANEL, children: string },
|
"section_divider/padding1": { type: T.PANEL, children: string },
|
||||||
"section_divider/divider_parent": { type: T.PANEL, children: 'divider' },
|
"section_divider/divider_parent": { type: T.PANEL, children: 'divider' },
|
||||||
|
|
@ -18555,6 +18634,18 @@ export type CommonType = {
|
||||||
"item_lock_notification/notification_background_image": { type: T.IMAGE, children: 'notification_text_label' },
|
"item_lock_notification/notification_background_image": { type: T.IMAGE, children: 'notification_text_label' },
|
||||||
"item_lock_notification/notification_background_image/notification_text_label": { type: T.LABEL, children: string },
|
"item_lock_notification/notification_background_image/notification_text_label": { type: T.LABEL, children: string },
|
||||||
"item_lock_notification_factory": { type: T.FACTORY, children: string },
|
"item_lock_notification_factory": { type: T.FACTORY, children: string },
|
||||||
|
"layout_toggle_content": { type: T.PANEL, children: 'image' | 'icon' },
|
||||||
|
"layout_toggle_content/image": { type: T.UNKNOWN, children: string },
|
||||||
|
"layout_toggle_content/icon": { type: T.UNKNOWN, children: string },
|
||||||
|
"layout_template_toggle": { type: T.PANEL, children: string },
|
||||||
|
"layout_toggle": { type: T.PANEL, children: string },
|
||||||
|
"creative_layout_toggle": { type: T.PANEL, children: string },
|
||||||
|
"recipe_book_layout_toggle": { type: T.PANEL, children: string },
|
||||||
|
"survival_layout_toggle": { type: T.PANEL, children: string },
|
||||||
|
"furnace_recipe_book_layout_toggle": { type: T.PANEL, children: string },
|
||||||
|
"furnace_survival_layout_toggle": { type: T.PANEL, children: string },
|
||||||
|
"crafting_root_input_panel": { type: T.INPUT_PANEL, children: string },
|
||||||
|
"toolbar_background_image": { type: T.IMAGE, children: string },
|
||||||
"empty_panel_size_y_0": { type: T.PANEL, children: string },
|
"empty_panel_size_y_0": { type: T.PANEL, children: string },
|
||||||
"scroll_background_and_viewport": { type: T.PANEL, children: 'background' | 'scrolling_view_port' },
|
"scroll_background_and_viewport": { type: T.PANEL, children: 'background' | 'scrolling_view_port' },
|
||||||
"scroll_background_and_viewport/background": { type: T.UNKNOWN, children: string },
|
"scroll_background_and_viewport/background": { type: T.UNKNOWN, children: string },
|
||||||
|
|
@ -18784,6 +18875,11 @@ export type CommonType = {
|
||||||
"legacy_pocket_close_button/pressed": { type: T.IMAGE, children: string },
|
"legacy_pocket_close_button/pressed": { type: T.IMAGE, children: string },
|
||||||
"info_icon": { type: T.IMAGE, children: string },
|
"info_icon": { type: T.IMAGE, children: string },
|
||||||
"error_glyph": { type: T.IMAGE, children: string },
|
"error_glyph": { type: T.IMAGE, children: string },
|
||||||
|
"creative_icon": { type: T.IMAGE, children: string },
|
||||||
|
"inventory_icon": { type: T.IMAGE, children: string },
|
||||||
|
"recipe_book_icon": { type: T.IMAGE, children: string },
|
||||||
|
"tab_icon_image": { type: T.IMAGE, children: string },
|
||||||
|
"search_icon": { type: T.IMAGE, children: string },
|
||||||
"service_repo_image_panel": { type: T.PANEL, children: 'service_repo_image' | 'progress_loading' },
|
"service_repo_image_panel": { type: T.PANEL, children: 'service_repo_image' | 'progress_loading' },
|
||||||
"service_repo_image_panel/service_repo_image": { type: T.IMAGE, children: string },
|
"service_repo_image_panel/service_repo_image": { type: T.IMAGE, children: string },
|
||||||
"service_repo_image_panel/progress_loading": { type: T.PANEL, children: string },
|
"service_repo_image_panel/progress_loading": { type: T.PANEL, children: string },
|
||||||
|
|
|
||||||
|
|
@ -1090,10 +1090,20 @@ export const paths = {
|
||||||
"keyboard_image_panel": "ui/chat_screen.json",
|
"keyboard_image_panel": "ui/chat_screen.json",
|
||||||
"keyboard_image_panel/keyboard_image": "ui/chat_screen.json",
|
"keyboard_image_panel/keyboard_image": "ui/chat_screen.json",
|
||||||
"keyboard_image_panel/down_arrow_image": "ui/chat_screen.json",
|
"keyboard_image_panel/down_arrow_image": "ui/chat_screen.json",
|
||||||
|
"new_messages": "ui/chat_screen.json",
|
||||||
|
"new_messages/focus_border": "ui/chat_screen.json",
|
||||||
|
"new_messages/focus_border/stack": "ui/chat_screen.json",
|
||||||
|
"new_messages/focus_border/stack/arrow_icon": "ui/chat_screen.json",
|
||||||
|
"new_messages/focus_border/stack/separator": "ui/chat_screen.json",
|
||||||
|
"new_messages/focus_border/stack/tooltip_text": "ui/chat_screen.json",
|
||||||
"small_button": "ui/chat_screen.json",
|
"small_button": "ui/chat_screen.json",
|
||||||
"keyboard_button": "ui/chat_screen.json",
|
"keyboard_button": "ui/chat_screen.json",
|
||||||
"chat_settings_button": "ui/chat_screen.json",
|
"chat_settings_button": "ui/chat_screen.json",
|
||||||
"send_button": "ui/chat_screen.json",
|
"send_button": "ui/chat_screen.json",
|
||||||
|
"new_messages_button": "ui/chat_screen.json",
|
||||||
|
"new_messages_button/default": "ui/chat_screen.json",
|
||||||
|
"new_messages_button/pressed": "ui/chat_screen.json",
|
||||||
|
"new_messages_button/hover": "ui/chat_screen.json",
|
||||||
"messages_text": "ui/chat_screen.json",
|
"messages_text": "ui/chat_screen.json",
|
||||||
"messages_text/text": "ui/chat_screen.json",
|
"messages_text/text": "ui/chat_screen.json",
|
||||||
"message_tts_wrapper": "ui/chat_screen.json",
|
"message_tts_wrapper": "ui/chat_screen.json",
|
||||||
|
|
@ -1153,6 +1163,7 @@ export const paths = {
|
||||||
"chat_screen_content/messages_panel": "ui/chat_screen.json",
|
"chat_screen_content/messages_panel": "ui/chat_screen.json",
|
||||||
"chat_screen_content/chat_bottom_panel": "ui/chat_screen.json",
|
"chat_screen_content/chat_bottom_panel": "ui/chat_screen.json",
|
||||||
"chat_screen_content/chat_top_panel": "ui/chat_screen.json",
|
"chat_screen_content/chat_top_panel": "ui/chat_screen.json",
|
||||||
|
"chat_screen_content/new_messages_button": "ui/chat_screen.json",
|
||||||
"chat_screen_content/autocomplete_commands_panel": "ui/chat_screen.json",
|
"chat_screen_content/autocomplete_commands_panel": "ui/chat_screen.json",
|
||||||
"chat_screen_content/host_main_panel": "ui/chat_screen.json",
|
"chat_screen_content/host_main_panel": "ui/chat_screen.json",
|
||||||
"chat_screen_content/popup_factory": "ui/chat_screen.json",
|
"chat_screen_content/popup_factory": "ui/chat_screen.json",
|
||||||
|
|
@ -5277,6 +5288,8 @@ export const paths = {
|
||||||
"chat_grid_item/chat_background/chat_text": "ui/hud_screen.json",
|
"chat_grid_item/chat_background/chat_text": "ui/hud_screen.json",
|
||||||
"chat_panel": "ui/hud_screen.json",
|
"chat_panel": "ui/hud_screen.json",
|
||||||
"chat_panel/stack_panel": "ui/hud_screen.json",
|
"chat_panel/stack_panel": "ui/hud_screen.json",
|
||||||
|
"subtitle_panel": "ui/hud_screen.json",
|
||||||
|
"subtitle_panel/stack_panel": "ui/hud_screen.json",
|
||||||
"item_durability": "ui/hud_screen.json",
|
"item_durability": "ui/hud_screen.json",
|
||||||
"item_storage": "ui/hud_screen.json",
|
"item_storage": "ui/hud_screen.json",
|
||||||
"container_item_lock_overlay": "ui/hud_screen.json",
|
"container_item_lock_overlay": "ui/hud_screen.json",
|
||||||
|
|
@ -5463,6 +5476,9 @@ export const paths = {
|
||||||
"root_panel/layout_customization_hint_saved/layout_customization_hint_saved": "ui/hud_screen.json",
|
"root_panel/layout_customization_hint_saved/layout_customization_hint_saved": "ui/hud_screen.json",
|
||||||
"root_panel/left_helpers": "ui/hud_screen.json",
|
"root_panel/left_helpers": "ui/hud_screen.json",
|
||||||
"root_panel/right_helpers": "ui/hud_screen.json",
|
"root_panel/right_helpers": "ui/hud_screen.json",
|
||||||
|
"root_panel/subtitle_stack": "ui/hud_screen.json",
|
||||||
|
"root_panel/subtitle_stack/subtitle_padding": "ui/hud_screen.json",
|
||||||
|
"root_panel/subtitle_stack/subtitle_panel": "ui/hud_screen.json",
|
||||||
"root_panel/emote_expediate_helpers": "ui/hud_screen.json",
|
"root_panel/emote_expediate_helpers": "ui/hud_screen.json",
|
||||||
"root_panel/centered_gui_elements": "ui/hud_screen.json",
|
"root_panel/centered_gui_elements": "ui/hud_screen.json",
|
||||||
"root_panel/centered_gui_elements_at_bottom_middle": "ui/hud_screen.json",
|
"root_panel/centered_gui_elements_at_bottom_middle": "ui/hud_screen.json",
|
||||||
|
|
@ -5638,9 +5654,6 @@ export const paths = {
|
||||||
"inventory_y_gamepad_helper": "ui/inventory_screen.json",
|
"inventory_y_gamepad_helper": "ui/inventory_screen.json",
|
||||||
"inventory_a_gamepad_helper": "ui/inventory_screen.json",
|
"inventory_a_gamepad_helper": "ui/inventory_screen.json",
|
||||||
"inventory_b_gamepad_helper": "ui/inventory_screen.json",
|
"inventory_b_gamepad_helper": "ui/inventory_screen.json",
|
||||||
"gamepad_helper_bumpers": "ui/inventory_screen.json",
|
|
||||||
"gamepad_helper_bumpers/gamepad_helper_left_bumper": "ui/inventory_screen.json",
|
|
||||||
"gamepad_helper_bumpers/gamepad_helper_right_bumper": "ui/inventory_screen.json",
|
|
||||||
"gamepad_helper_left_trigger": "ui/inventory_screen.json",
|
"gamepad_helper_left_trigger": "ui/inventory_screen.json",
|
||||||
"gamepad_helper_right_trigger": "ui/inventory_screen.json",
|
"gamepad_helper_right_trigger": "ui/inventory_screen.json",
|
||||||
"container_gamepad_helpers_second_row": "ui/inventory_screen.json",
|
"container_gamepad_helpers_second_row": "ui/inventory_screen.json",
|
||||||
|
|
@ -5651,26 +5664,16 @@ export const paths = {
|
||||||
"container_gamepad_helpers_second_row/right_thumbstick_visibility": "ui/inventory_screen.json",
|
"container_gamepad_helpers_second_row/right_thumbstick_visibility": "ui/inventory_screen.json",
|
||||||
"container_gamepad_helpers_second_row/right_thumbstick_visibility/gamepad_helper_thumbstick_right": "ui/inventory_screen.json",
|
"container_gamepad_helpers_second_row/right_thumbstick_visibility/gamepad_helper_thumbstick_right": "ui/inventory_screen.json",
|
||||||
"container_gamepad_helpers_second_row/buffer_panel_right": "ui/inventory_screen.json",
|
"container_gamepad_helpers_second_row/buffer_panel_right": "ui/inventory_screen.json",
|
||||||
"crafting_root_panel": "ui/inventory_screen.json",
|
|
||||||
"drop_item_panel": "ui/inventory_screen.json",
|
|
||||||
"inventory_container_slot_button": "ui/inventory_screen.json",
|
"inventory_container_slot_button": "ui/inventory_screen.json",
|
||||||
"creative_hotbar_container_slot_button": "ui/inventory_screen.json",
|
"creative_hotbar_container_slot_button": "ui/inventory_screen.json",
|
||||||
"no_coalesce_container_slot_button": "ui/inventory_screen.json",
|
"no_coalesce_container_slot_button": "ui/inventory_screen.json",
|
||||||
"creative_no_coalesce_container_slot_button": "ui/inventory_screen.json",
|
"creative_no_coalesce_container_slot_button": "ui/inventory_screen.json",
|
||||||
"output_no_coalesce_container_slot_button": "ui/inventory_screen.json",
|
"output_no_coalesce_container_slot_button": "ui/inventory_screen.json",
|
||||||
"tab_image": "ui/inventory_screen.json",
|
|
||||||
"item_renderer": "ui/inventory_screen.json",
|
"item_renderer": "ui/inventory_screen.json",
|
||||||
"inventory_icon": "ui/inventory_screen.json",
|
|
||||||
"recipe_book_icon": "ui/inventory_screen.json",
|
|
||||||
"creative_icon": "ui/inventory_screen.json",
|
|
||||||
"icon_image": "ui/inventory_screen.json",
|
|
||||||
"tab_front": "ui/inventory_screen.json",
|
|
||||||
"tab_back": "ui/inventory_screen.json",
|
|
||||||
"equipment_icon": "ui/inventory_screen.json",
|
"equipment_icon": "ui/inventory_screen.json",
|
||||||
"construction_icon": "ui/inventory_screen.json",
|
"construction_icon": "ui/inventory_screen.json",
|
||||||
"nature_icon": "ui/inventory_screen.json",
|
"nature_icon": "ui/inventory_screen.json",
|
||||||
"search_icon": "ui/inventory_screen.json",
|
"items_icon": "ui/inventory_screen.json",
|
||||||
"miscellaneous_icon": "ui/inventory_screen.json",
|
|
||||||
"empty_tab_panel": "ui/inventory_screen.json",
|
"empty_tab_panel": "ui/inventory_screen.json",
|
||||||
"empty_tab_panel/img": "ui/inventory_screen.json",
|
"empty_tab_panel/img": "ui/inventory_screen.json",
|
||||||
"top_tab": "ui/inventory_screen.json",
|
"top_tab": "ui/inventory_screen.json",
|
||||||
|
|
@ -5696,6 +5699,7 @@ export const paths = {
|
||||||
"tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_creative": "ui/inventory_screen.json",
|
"tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_creative": "ui/inventory_screen.json",
|
||||||
"tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_survival": "ui/inventory_screen.json",
|
"tab_navigation_panel_layout/navigation_tabs/content/search_tab_holder/search_tab_survival": "ui/inventory_screen.json",
|
||||||
"tab_content_padding": "ui/inventory_screen.json",
|
"tab_content_padding": "ui/inventory_screen.json",
|
||||||
|
"creative_label": "ui/inventory_screen.json",
|
||||||
"tab_content": "ui/inventory_screen.json",
|
"tab_content": "ui/inventory_screen.json",
|
||||||
"tab_content/tab_content_search_bar_panel": "ui/inventory_screen.json",
|
"tab_content/tab_content_search_bar_panel": "ui/inventory_screen.json",
|
||||||
"tab_content/tab_content_search_bar_panel/vertical_padding_1": "ui/inventory_screen.json",
|
"tab_content/tab_content_search_bar_panel/vertical_padding_1": "ui/inventory_screen.json",
|
||||||
|
|
@ -5819,26 +5823,12 @@ export const paths = {
|
||||||
"inventory_container_item/item_lock_cell_image": "ui/inventory_screen.json",
|
"inventory_container_item/item_lock_cell_image": "ui/inventory_screen.json",
|
||||||
"inventory_container_item/bundle_slot_panel": "ui/inventory_screen.json",
|
"inventory_container_item/bundle_slot_panel": "ui/inventory_screen.json",
|
||||||
"grid_item_for_recipe_book": "ui/inventory_screen.json",
|
"grid_item_for_recipe_book": "ui/inventory_screen.json",
|
||||||
|
"scroll_grid": "ui/inventory_screen.json",
|
||||||
"scroll_grid_panel": "ui/inventory_screen.json",
|
"scroll_grid_panel": "ui/inventory_screen.json",
|
||||||
"scroll_grid_panel/grid": "ui/inventory_screen.json",
|
"scroll_grid_panel/grid": "ui/inventory_screen.json",
|
||||||
"scroll_grid": "ui/inventory_screen.json",
|
|
||||||
"scroll_panel": "ui/inventory_screen.json",
|
|
||||||
"recipe_book_scroll_panel": "ui/inventory_screen.json",
|
"recipe_book_scroll_panel": "ui/inventory_screen.json",
|
||||||
"creative_label": "ui/inventory_screen.json",
|
"scroll_panel": "ui/inventory_screen.json",
|
||||||
"filter_toggle": "ui/inventory_screen.json",
|
"filter_toggle": "ui/inventory_screen.json",
|
||||||
"toolbar_background": "ui/inventory_screen.json",
|
|
||||||
"layout_toggle_content": "ui/inventory_screen.json",
|
|
||||||
"layout_toggle_content/image": "ui/inventory_screen.json",
|
|
||||||
"layout_toggle_content/icon": "ui/inventory_screen.json",
|
|
||||||
"layout_template_toggle": "ui/inventory_screen.json",
|
|
||||||
"layout_toggle": "ui/inventory_screen.json",
|
|
||||||
"creative_layout_toggle": "ui/inventory_screen.json",
|
|
||||||
"recipe_book_layout_toggle": "ui/inventory_screen.json",
|
|
||||||
"survival_layout_toggle": "ui/inventory_screen.json",
|
|
||||||
"help_button": "ui/inventory_screen.json",
|
|
||||||
"help_button/default": "ui/inventory_screen.json",
|
|
||||||
"help_button/hover": "ui/inventory_screen.json",
|
|
||||||
"help_button/pressed": "ui/inventory_screen.json",
|
|
||||||
"player_inventory": "ui/inventory_screen.json",
|
"player_inventory": "ui/inventory_screen.json",
|
||||||
"player_inventory/common_panel": "ui/inventory_screen.json",
|
"player_inventory/common_panel": "ui/inventory_screen.json",
|
||||||
"player_inventory/inventory_panel_top_half": "ui/inventory_screen.json",
|
"player_inventory/inventory_panel_top_half": "ui/inventory_screen.json",
|
||||||
|
|
@ -5853,8 +5843,6 @@ export const paths = {
|
||||||
"creative_hotbar_panel": "ui/inventory_screen.json",
|
"creative_hotbar_panel": "ui/inventory_screen.json",
|
||||||
"creative_hotbar_panel/creative_hotbar_background": "ui/inventory_screen.json",
|
"creative_hotbar_panel/creative_hotbar_background": "ui/inventory_screen.json",
|
||||||
"creative_hotbar_panel/creative_hotbar_background/hotbar_grid": "ui/inventory_screen.json",
|
"creative_hotbar_panel/creative_hotbar_background/hotbar_grid": "ui/inventory_screen.json",
|
||||||
"center_fold": "ui/inventory_screen.json",
|
|
||||||
"center_fold/center_bg": "ui/inventory_screen.json",
|
|
||||||
"toolbar_panel": "ui/inventory_screen.json",
|
"toolbar_panel": "ui/inventory_screen.json",
|
||||||
"toolbar_panel/toolbar_background": "ui/inventory_screen.json",
|
"toolbar_panel/toolbar_background": "ui/inventory_screen.json",
|
||||||
"toolbar_panel/toolbar_background/toolbar_stack_panel": "ui/inventory_screen.json",
|
"toolbar_panel/toolbar_background/toolbar_stack_panel": "ui/inventory_screen.json",
|
||||||
|
|
@ -5864,10 +5852,8 @@ export const paths = {
|
||||||
"toolbar_panel/toolbar_background/toolbar_stack_panel/creative_layout_toggle_panel": "ui/inventory_screen.json",
|
"toolbar_panel/toolbar_background/toolbar_stack_panel/creative_layout_toggle_panel": "ui/inventory_screen.json",
|
||||||
"toolbar_panel/toolbar_background/toolbar_stack_panel/creative_layout_toggle_panel/creative_layout_toggle": "ui/inventory_screen.json",
|
"toolbar_panel/toolbar_background/toolbar_stack_panel/creative_layout_toggle_panel/creative_layout_toggle": "ui/inventory_screen.json",
|
||||||
"toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": "ui/inventory_screen.json",
|
"toolbar_panel/toolbar_background/toolbar_stack_panel/padding_1": "ui/inventory_screen.json",
|
||||||
"toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_survival": "ui/inventory_screen.json",
|
"toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel": "ui/inventory_screen.json",
|
||||||
"toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_survival/recipe_book_layout_toggle": "ui/inventory_screen.json",
|
"toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel/recipe_book_layout_toggle": "ui/inventory_screen.json",
|
||||||
"toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_creative": "ui/inventory_screen.json",
|
|
||||||
"toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_creative/recipe_book_layout_toggle": "ui/inventory_screen.json",
|
|
||||||
"toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": "ui/inventory_screen.json",
|
"toolbar_panel/toolbar_background/toolbar_stack_panel/padding_2": "ui/inventory_screen.json",
|
||||||
"toolbar_panel/toolbar_background/toolbar_stack_panel/survival_layout_toggle_panel": "ui/inventory_screen.json",
|
"toolbar_panel/toolbar_background/toolbar_stack_panel/survival_layout_toggle_panel": "ui/inventory_screen.json",
|
||||||
"toolbar_panel/toolbar_background/toolbar_stack_panel/survival_layout_toggle_panel/survival_layout_toggle": "ui/inventory_screen.json",
|
"toolbar_panel/toolbar_background/toolbar_stack_panel/survival_layout_toggle_panel/survival_layout_toggle": "ui/inventory_screen.json",
|
||||||
|
|
@ -5882,7 +5868,6 @@ export const paths = {
|
||||||
"inventory_screen_base": "ui/inventory_screen.json",
|
"inventory_screen_base": "ui/inventory_screen.json",
|
||||||
"crafting_screen": "ui/inventory_screen.json",
|
"crafting_screen": "ui/inventory_screen.json",
|
||||||
"inventory_screen": "ui/inventory_screen.json",
|
"inventory_screen": "ui/inventory_screen.json",
|
||||||
"recipe_book_toggle_image": "ui/inventory_screen.json",
|
|
||||||
"recipe_inventory_screen_content": "ui/inventory_screen.json",
|
"recipe_inventory_screen_content": "ui/inventory_screen.json",
|
||||||
"recipe_inventory_screen_content/content_stack_panel": "ui/inventory_screen.json",
|
"recipe_inventory_screen_content/content_stack_panel": "ui/inventory_screen.json",
|
||||||
"recipe_inventory_screen_content/content_stack_panel/recipe_book": "ui/inventory_screen.json",
|
"recipe_inventory_screen_content/content_stack_panel/recipe_book": "ui/inventory_screen.json",
|
||||||
|
|
@ -6227,6 +6212,7 @@ export const paths = {
|
||||||
"frame_label": "ui/invite_screen.json",
|
"frame_label": "ui/invite_screen.json",
|
||||||
"friend_panel": "ui/invite_screen.json",
|
"friend_panel": "ui/invite_screen.json",
|
||||||
"scrolling_content_stack": "ui/invite_screen.json",
|
"scrolling_content_stack": "ui/invite_screen.json",
|
||||||
|
"scrolling_content_stack/invite_party_panel": "ui/invite_screen.json",
|
||||||
"scrolling_content_stack/message": "ui/invite_screen.json",
|
"scrolling_content_stack/message": "ui/invite_screen.json",
|
||||||
"scrolling_content_stack/message/frame_label": "ui/invite_screen.json",
|
"scrolling_content_stack/message/frame_label": "ui/invite_screen.json",
|
||||||
"scrolling_content_stack/online_platform": "ui/invite_screen.json",
|
"scrolling_content_stack/online_platform": "ui/invite_screen.json",
|
||||||
|
|
@ -6254,6 +6240,12 @@ export const paths = {
|
||||||
"scrolling_content_stack/offline_xbox_live_friend_list_category": "ui/invite_screen.json",
|
"scrolling_content_stack/offline_xbox_live_friend_list_category": "ui/invite_screen.json",
|
||||||
"scrolling_content_stack/no_xbox_live_friends": "ui/invite_screen.json",
|
"scrolling_content_stack/no_xbox_live_friends": "ui/invite_screen.json",
|
||||||
"scrolling_content_stack/no_xbox_live_friends/no_friends_tts_wrapper": "ui/invite_screen.json",
|
"scrolling_content_stack/no_xbox_live_friends/no_friends_tts_wrapper": "ui/invite_screen.json",
|
||||||
|
"invite_party_panel": "ui/invite_screen.json",
|
||||||
|
"invite_party_panel/frame_label": "ui/invite_screen.json",
|
||||||
|
"invite_party_panel/frame_description": "ui/invite_screen.json",
|
||||||
|
"invite_party_panel/our_toggle": "ui/invite_screen.json",
|
||||||
|
"invite_party_panel/border_outline": "ui/invite_screen.json",
|
||||||
|
"friend_button_test": "ui/invite_screen.json",
|
||||||
"progress_bar_and_scrolling_content_panel": "ui/invite_screen.json",
|
"progress_bar_and_scrolling_content_panel": "ui/invite_screen.json",
|
||||||
"progress_bar_and_scrolling_content_panel/progress_loading_bars": "ui/invite_screen.json",
|
"progress_bar_and_scrolling_content_panel/progress_loading_bars": "ui/invite_screen.json",
|
||||||
"progress_bar_and_scrolling_content_panel/invite_scrolling_area": "ui/invite_screen.json",
|
"progress_bar_and_scrolling_content_panel/invite_scrolling_area": "ui/invite_screen.json",
|
||||||
|
|
@ -6795,6 +6787,8 @@ export const paths = {
|
||||||
},
|
},
|
||||||
"mob_effect": {
|
"mob_effect": {
|
||||||
"effect_background": "ui/mob_effect_screen.json",
|
"effect_background": "ui/mob_effect_screen.json",
|
||||||
|
"effect_background/default_background": "ui/mob_effect_screen.json",
|
||||||
|
"effect_background/ambient_background": "ui/mob_effect_screen.json",
|
||||||
"main_background": "ui/mob_effect_screen.json",
|
"main_background": "ui/mob_effect_screen.json",
|
||||||
"button_background": "ui/mob_effect_screen.json",
|
"button_background": "ui/mob_effect_screen.json",
|
||||||
"effect_name": "ui/mob_effect_screen.json",
|
"effect_name": "ui/mob_effect_screen.json",
|
||||||
|
|
@ -7222,27 +7216,50 @@ export const paths = {
|
||||||
"invite_players_button": "ui/pause_screen.json",
|
"invite_players_button": "ui/pause_screen.json",
|
||||||
"buy_button": "ui/pause_screen.json",
|
"buy_button": "ui/pause_screen.json",
|
||||||
"quit_button": "ui/pause_screen.json",
|
"quit_button": "ui/pause_screen.json",
|
||||||
|
"icon_button_hover_text": "ui/pause_screen.json",
|
||||||
|
"icon_button_hover_text/tooltip_text": "ui/pause_screen.json",
|
||||||
|
"icon_button_tooltip_trigger": "ui/pause_screen.json",
|
||||||
|
"icon_button_tooltip_trigger/default": "ui/pause_screen.json",
|
||||||
|
"icon_button_tooltip_trigger/pressed": "ui/pause_screen.json",
|
||||||
|
"icon_button_tooltip_trigger/hover": "ui/pause_screen.json",
|
||||||
"feedback_button": "ui/pause_screen.json",
|
"feedback_button": "ui/pause_screen.json",
|
||||||
"feedback_icon_button": "ui/pause_screen.json",
|
"feedback_icon_button": "ui/pause_screen.json",
|
||||||
"feedback_icon_button/feedback_button": "ui/pause_screen.json",
|
"feedback_icon_button/feedback_button": "ui/pause_screen.json",
|
||||||
|
"feedback_icon_button/tooltip_trigger": "ui/pause_screen.json",
|
||||||
"take_screenshot_gamepad_button_content": "ui/pause_screen.json",
|
"take_screenshot_gamepad_button_content": "ui/pause_screen.json",
|
||||||
"take_screenshot_gamepad_button_content/button_y": "ui/pause_screen.json",
|
"take_screenshot_gamepad_button_content/button_y": "ui/pause_screen.json",
|
||||||
"take_screenshot_gamepad_button_content/take_screenshot_icon": "ui/pause_screen.json",
|
"take_screenshot_gamepad_button_content/take_screenshot_icon": "ui/pause_screen.json",
|
||||||
"take_screenshot_gamepad_button": "ui/pause_screen.json",
|
"take_screenshot_gamepad_button": "ui/pause_screen.json",
|
||||||
"achievements_button_small": "ui/pause_screen.json",
|
"achievements_button_small": "ui/pause_screen.json",
|
||||||
|
"achievements_button_small_with_tooltip": "ui/pause_screen.json",
|
||||||
|
"achievements_button_small_with_tooltip/button": "ui/pause_screen.json",
|
||||||
|
"achievements_button_small_with_tooltip/tooltip_trigger": "ui/pause_screen.json",
|
||||||
"settings_button_small": "ui/pause_screen.json",
|
"settings_button_small": "ui/pause_screen.json",
|
||||||
|
"settings_button_small_with_tooltip": "ui/pause_screen.json",
|
||||||
|
"settings_button_small_with_tooltip/button": "ui/pause_screen.json",
|
||||||
|
"settings_button_small_with_tooltip/tooltip_trigger": "ui/pause_screen.json",
|
||||||
"take_screenshot_button": "ui/pause_screen.json",
|
"take_screenshot_button": "ui/pause_screen.json",
|
||||||
|
"take_screenshot_button_with_tooltip": "ui/pause_screen.json",
|
||||||
|
"take_screenshot_button_with_tooltip/button": "ui/pause_screen.json",
|
||||||
|
"take_screenshot_button_with_tooltip/tooltip_trigger": "ui/pause_screen.json",
|
||||||
|
"take_screenshot_gamepad_button_with_tooltip": "ui/pause_screen.json",
|
||||||
|
"take_screenshot_gamepad_button_with_tooltip/button": "ui/pause_screen.json",
|
||||||
|
"take_screenshot_gamepad_button_with_tooltip/tooltip_trigger": "ui/pause_screen.json",
|
||||||
"pause_screen": "ui/pause_screen.json",
|
"pause_screen": "ui/pause_screen.json",
|
||||||
"pause_screen_content": "ui/pause_screen.json",
|
"pause_screen_content": "ui/pause_screen.json",
|
||||||
"pause_screen_content/pause_screen_main_panels": "ui/pause_screen.json",
|
"pause_screen_content/pause_screen_main_panels": "ui/pause_screen.json",
|
||||||
"pause_screen_content/skin_panel": "ui/pause_screen.json",
|
"pause_screen_content/skin_panel": "ui/pause_screen.json",
|
||||||
"pause_screen_content/friendsdrawer_button_panel": "ui/pause_screen.json",
|
"pause_screen_content/top_right_panel": "ui/pause_screen.json",
|
||||||
"pause_screen_content/gamepad_helpers": "ui/pause_screen.json",
|
"pause_screen_content/gamepad_helpers": "ui/pause_screen.json",
|
||||||
"pause_screen_content/keyboard_helpers": "ui/pause_screen.json",
|
"pause_screen_content/keyboard_helpers": "ui/pause_screen.json",
|
||||||
|
"pause_screen_content/debug_drawer_button_panel": "ui/pause_screen.json",
|
||||||
|
"top_right_panel": "ui/pause_screen.json",
|
||||||
|
"top_right_panel/pause_panel": "ui/pause_screen.json",
|
||||||
|
"top_right_panel/friendsdrawer_button_panel": "ui/pause_screen.json",
|
||||||
"friendsdrawer_button_panel": "ui/pause_screen.json",
|
"friendsdrawer_button_panel": "ui/pause_screen.json",
|
||||||
"friendsdrawer_button_panel/friendsdrawer_container_stack_panel": "ui/pause_screen.json",
|
"friendsdrawer_button_panel/friendsdrawer_button": "ui/pause_screen.json",
|
||||||
"friendsdrawer_button_panel/friendsdrawer_container_stack_panel/friendsdrawer_button": "ui/pause_screen.json",
|
"friendsdrawer_button_panel/friends_drawer_ftue_popup_wrapper": "ui/pause_screen.json",
|
||||||
"friendsdrawer_button_panel/friendsdrawer_container_stack_panel/friends_drawer_ftue_popup": "ui/pause_screen.json",
|
"friendsdrawer_button_panel/friends_drawer_ftue_popup_wrapper/friends_drawer_ftue_popup": "ui/pause_screen.json",
|
||||||
"pause_screen_main_panels": "ui/pause_screen.json",
|
"pause_screen_main_panels": "ui/pause_screen.json",
|
||||||
"pause_screen_main_panels/menu": "ui/pause_screen.json",
|
"pause_screen_main_panels/menu": "ui/pause_screen.json",
|
||||||
"left_buttons_panel": "ui/pause_screen.json",
|
"left_buttons_panel": "ui/pause_screen.json",
|
||||||
|
|
@ -7278,23 +7295,29 @@ export const paths = {
|
||||||
"the_rest_panel/fill_3": "ui/pause_screen.json",
|
"the_rest_panel/fill_3": "ui/pause_screen.json",
|
||||||
"paused_text": "ui/pause_screen.json",
|
"paused_text": "ui/pause_screen.json",
|
||||||
"green_tag": "ui/pause_screen.json",
|
"green_tag": "ui/pause_screen.json",
|
||||||
"paused_text_panel": "ui/pause_screen.json",
|
"paused_text_panel_grey": "ui/pause_screen.json",
|
||||||
"paused_text_panel/pause": "ui/pause_screen.json",
|
"paused_text_panel_grey/pause": "ui/pause_screen.json",
|
||||||
"paused_text_panel/horizontal_stack": "ui/pause_screen.json",
|
"paused_text_panel_green": "ui/pause_screen.json",
|
||||||
"paused_text_panel/horizontal_stack/pause_icon": "ui/pause_screen.json",
|
"paused_text_panel_green/horizontal_stack": "ui/pause_screen.json",
|
||||||
"paused_text_panel/horizontal_stack/fill_1": "ui/pause_screen.json",
|
"paused_text_panel_green/horizontal_stack/pause_icon": "ui/pause_screen.json",
|
||||||
"paused_text_panel/horizontal_stack/pause": "ui/pause_screen.json",
|
"paused_text_panel_green/horizontal_stack/fill_1": "ui/pause_screen.json",
|
||||||
|
"paused_text_panel_green/horizontal_stack/pause": "ui/pause_screen.json",
|
||||||
"transparent_background": "ui/pause_screen.json",
|
"transparent_background": "ui/pause_screen.json",
|
||||||
"non_transparent_background": "ui/pause_screen.json",
|
"non_transparent_background": "ui/pause_screen.json",
|
||||||
"menu_the_rest_panel": "ui/pause_screen.json",
|
"menu_the_rest_panel": "ui/pause_screen.json",
|
||||||
"menu_the_rest_panel/menu_button_control": "ui/pause_screen.json",
|
"menu_the_rest_panel/menu_button_control": "ui/pause_screen.json",
|
||||||
"menu_button_control": "ui/pause_screen.json",
|
"menu_button_control": "ui/pause_screen.json",
|
||||||
"menu_button_control/menu_background": "ui/pause_screen.json",
|
"menu_button_control/menu_background": "ui/pause_screen.json",
|
||||||
"pause_announcement_panel_type": "ui/pause_screen.json",
|
"pause_announcement_panel_grey": "ui/pause_screen.json",
|
||||||
"pause_announcement_panel_type/horizontal_stack": "ui/pause_screen.json",
|
"pause_announcement_panel_grey/horizontal_stack": "ui/pause_screen.json",
|
||||||
"pause_announcement_panel_type/horizontal_stack/fill_1": "ui/pause_screen.json",
|
"pause_announcement_panel_grey/horizontal_stack/fill_1": "ui/pause_screen.json",
|
||||||
"pause_announcement_panel_type/horizontal_stack/pause_text": "ui/pause_screen.json",
|
"pause_announcement_panel_grey/horizontal_stack/pause_text": "ui/pause_screen.json",
|
||||||
"pause_announcement_panel_type/horizontal_stack/fill_2": "ui/pause_screen.json",
|
"pause_announcement_panel_grey/horizontal_stack/fill_2": "ui/pause_screen.json",
|
||||||
|
"pause_announcement_panel_green": "ui/pause_screen.json",
|
||||||
|
"pause_announcement_panel_green/horizontal_stack": "ui/pause_screen.json",
|
||||||
|
"pause_announcement_panel_green/horizontal_stack/fill_1": "ui/pause_screen.json",
|
||||||
|
"pause_announcement_panel_green/horizontal_stack/pause_text": "ui/pause_screen.json",
|
||||||
|
"pause_announcement_panel_green/horizontal_stack/fill_2": "ui/pause_screen.json",
|
||||||
"menu_background": "ui/pause_screen.json",
|
"menu_background": "ui/pause_screen.json",
|
||||||
"menu_background/button_panel": "ui/pause_screen.json",
|
"menu_background/button_panel": "ui/pause_screen.json",
|
||||||
"menu_background/button_panel/title_image": "ui/pause_screen.json",
|
"menu_background/button_panel/title_image": "ui/pause_screen.json",
|
||||||
|
|
@ -7302,6 +7325,8 @@ export const paths = {
|
||||||
"menu_background/button_panel/fill_1": "ui/pause_screen.json",
|
"menu_background/button_panel/fill_1": "ui/pause_screen.json",
|
||||||
"menu_background/button_panel/return_to_game_button": "ui/pause_screen.json",
|
"menu_background/button_panel/return_to_game_button": "ui/pause_screen.json",
|
||||||
"menu_background/button_panel/return": "ui/pause_screen.json",
|
"menu_background/button_panel/return": "ui/pause_screen.json",
|
||||||
|
"menu_background/button_panel/settings_button": "ui/pause_screen.json",
|
||||||
|
"menu_background/button_panel/settings": "ui/pause_screen.json",
|
||||||
"menu_background/button_panel/realms_stories_button_panel": "ui/pause_screen.json",
|
"menu_background/button_panel/realms_stories_button_panel": "ui/pause_screen.json",
|
||||||
"menu_background/button_panel/realms_stories": "ui/pause_screen.json",
|
"menu_background/button_panel/realms_stories": "ui/pause_screen.json",
|
||||||
"menu_background/button_panel/buy_button": "ui/pause_screen.json",
|
"menu_background/button_panel/buy_button": "ui/pause_screen.json",
|
||||||
|
|
@ -7396,6 +7421,12 @@ export const paths = {
|
||||||
"gamepad_helpers/gamepad_helper_y": "ui/pause_screen.json",
|
"gamepad_helpers/gamepad_helper_y": "ui/pause_screen.json",
|
||||||
"keyboard_helpers": "ui/pause_screen.json",
|
"keyboard_helpers": "ui/pause_screen.json",
|
||||||
"keyboard_helpers/keyboard_helper_keys": "ui/pause_screen.json",
|
"keyboard_helpers/keyboard_helper_keys": "ui/pause_screen.json",
|
||||||
|
"debug_drawer_button_content": "ui/pause_screen.json",
|
||||||
|
"debug_drawer_button_content/button_label_panel": "ui/pause_screen.json",
|
||||||
|
"debug_drawer_button_content/button_label_panel/button_label_text_left": "ui/pause_screen.json",
|
||||||
|
"debug_drawer_button_panel": "ui/pause_screen.json",
|
||||||
|
"debug_drawer_button_panel/debug_drawer_button_input": "ui/pause_screen.json",
|
||||||
|
"debug_drawer_button_panel/debug_drawer_button_input/debug_drawer_button": "ui/pause_screen.json",
|
||||||
},
|
},
|
||||||
"pdp": {
|
"pdp": {
|
||||||
"download_progress": "ui/pdp_screen.json",
|
"download_progress": "ui/pdp_screen.json",
|
||||||
|
|
@ -7596,7 +7627,6 @@ export const paths = {
|
||||||
"pdp_cycle_offer_row_content/pad_3": "ui/pdp_screen.json",
|
"pdp_cycle_offer_row_content/pad_3": "ui/pdp_screen.json",
|
||||||
"pdp_cycle_offer_row_content/divider_3": "ui/pdp_screen.json",
|
"pdp_cycle_offer_row_content/divider_3": "ui/pdp_screen.json",
|
||||||
"pdp_cycle_offer_row_section": "ui/pdp_screen.json",
|
"pdp_cycle_offer_row_section": "ui/pdp_screen.json",
|
||||||
"recently_viewed_viewed_factory_object": "ui/pdp_screen.json",
|
|
||||||
"scrolling_content_stack": "ui/pdp_screen.json",
|
"scrolling_content_stack": "ui/pdp_screen.json",
|
||||||
"warning_image": "ui/pdp_screen.json",
|
"warning_image": "ui/pdp_screen.json",
|
||||||
"scaling_rating": "ui/pdp_screen.json",
|
"scaling_rating": "ui/pdp_screen.json",
|
||||||
|
|
@ -7724,15 +7754,13 @@ export const paths = {
|
||||||
"summary_content_left_side/full_content/top/info": "ui/pdp_screen.json",
|
"summary_content_left_side/full_content/top/info": "ui/pdp_screen.json",
|
||||||
"summary_content_left_side/full_content/top/info/summary_title_and_author_panel": "ui/pdp_screen.json",
|
"summary_content_left_side/full_content/top/info/summary_title_and_author_panel": "ui/pdp_screen.json",
|
||||||
"summary_content_left_side/full_content/top/info/pad_fill": "ui/pdp_screen.json",
|
"summary_content_left_side/full_content/top/info/pad_fill": "ui/pdp_screen.json",
|
||||||
"summary_content_left_side/full_content/top/info/glyph_section": "ui/pdp_screen.json",
|
"summary_content_left_side/full_content/top/info/info_buttons_factory": "ui/pdp_screen.json",
|
||||||
"summary_content_left_side/full_content/top/info/glyph_section/glyph_section_panel": "ui/pdp_screen.json",
|
|
||||||
"summary_content_left_side/full_content/top/info/ratings_summary": "ui/pdp_screen.json",
|
|
||||||
"summary_content_left_side/full_content/top/info/ratings_summary/ratings_display": "ui/pdp_screen.json",
|
|
||||||
"summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/rating_stars_panel": "ui/pdp_screen.json",
|
|
||||||
"summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/rating_stars_panel/rating": "ui/pdp_screen.json",
|
|
||||||
"summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/summary_rating_button": "ui/pdp_screen.json",
|
|
||||||
"summary_content_left_side/full_content/top/info/vibrant_visuals_badge_and_hover": "ui/pdp_screen.json",
|
|
||||||
"summary_content_left_side/full_content/bottom": "ui/pdp_screen.json",
|
"summary_content_left_side/full_content/bottom": "ui/pdp_screen.json",
|
||||||
|
"info_buttons_factory": "ui/pdp_screen.json",
|
||||||
|
"ratings_summary": "ui/pdp_screen.json",
|
||||||
|
"ratings_summary/ratings_display": "ui/pdp_screen.json",
|
||||||
|
"ratings_summary/ratings_display/rating": "ui/pdp_screen.json",
|
||||||
|
"ratings_summary/ratings_display/summary_rating_button": "ui/pdp_screen.json",
|
||||||
"offer_title_label": "ui/pdp_screen.json",
|
"offer_title_label": "ui/pdp_screen.json",
|
||||||
"title_and_author_panel": "ui/pdp_screen.json",
|
"title_and_author_panel": "ui/pdp_screen.json",
|
||||||
"title_and_author_panel/title_panel": "ui/pdp_screen.json",
|
"title_and_author_panel/title_panel": "ui/pdp_screen.json",
|
||||||
|
|
@ -7775,21 +7803,12 @@ export const paths = {
|
||||||
"mashup_glyph_tooltip_content/mashup_text_row/info_icon": "ui/pdp_screen.json",
|
"mashup_glyph_tooltip_content/mashup_text_row/info_icon": "ui/pdp_screen.json",
|
||||||
"mashup_glyph_tooltip_content/mashup_text_row/mashup_line_one": "ui/pdp_screen.json",
|
"mashup_glyph_tooltip_content/mashup_text_row/mashup_line_one": "ui/pdp_screen.json",
|
||||||
"mashup_glyph_tooltip_content/mashup_line_two": "ui/pdp_screen.json",
|
"mashup_glyph_tooltip_content/mashup_line_two": "ui/pdp_screen.json",
|
||||||
"mashup_glyph_tooltip_content/offset_panel": "ui/pdp_screen.json",
|
"mashup_glyph_tooltip_content/basic_vertical_glyphs": "ui/pdp_screen.json",
|
||||||
"mashup_glyph_tooltip_content/offset_panel/basic_vertical_glyph_section_panel": "ui/pdp_screen.json",
|
|
||||||
"glyph_section_mashup": "ui/pdp_screen.json",
|
"glyph_section_mashup": "ui/pdp_screen.json",
|
||||||
"glyph_section_skin": "ui/pdp_screen.json",
|
"glyph_section_skin": "ui/pdp_screen.json",
|
||||||
"glyph_section_resource_pack": "ui/pdp_screen.json",
|
"glyph_section_resource_pack": "ui/pdp_screen.json",
|
||||||
"glyph_section_world": "ui/pdp_screen.json",
|
"glyph_section_world": "ui/pdp_screen.json",
|
||||||
"glyph_section_addon": "ui/pdp_screen.json",
|
"glyph_section_addon": "ui/pdp_screen.json",
|
||||||
"basic_vertical_glyph_section_panel": "ui/pdp_screen.json",
|
|
||||||
"basic_vertical_glyph_section_panel/glyph_section_skin": "ui/pdp_screen.json",
|
|
||||||
"basic_vertical_glyph_section_panel/glyph_section_world": "ui/pdp_screen.json",
|
|
||||||
"basic_vertical_glyph_section_panel/glyph_section_resource_pack": "ui/pdp_screen.json",
|
|
||||||
"basic_vertical_glyph_section_panel/glyph_section_addon": "ui/pdp_screen.json",
|
|
||||||
"vertical_glyph_section_panel": "ui/pdp_screen.json",
|
|
||||||
"vertical_glyph_section_panel/glyph_section_mashup": "ui/pdp_screen.json",
|
|
||||||
"vertical_glyph_section_panel/basic_vertical_glyph_section_panel": "ui/pdp_screen.json",
|
|
||||||
"summary_text_panel": "ui/pdp_screen.json",
|
"summary_text_panel": "ui/pdp_screen.json",
|
||||||
"summary_text_panel/top_interact_button_stack": "ui/pdp_screen.json",
|
"summary_text_panel/top_interact_button_stack": "ui/pdp_screen.json",
|
||||||
"summary_text_panel/top_interact_button_stack/top_interact": "ui/pdp_screen.json",
|
"summary_text_panel/top_interact_button_stack/top_interact": "ui/pdp_screen.json",
|
||||||
|
|
@ -9703,6 +9722,11 @@ export const paths = {
|
||||||
"modal_button_panel_with_retry/retry_button": "ui/progress_screen.json",
|
"modal_button_panel_with_retry/retry_button": "ui/progress_screen.json",
|
||||||
"modal_ok_button_panel": "ui/progress_screen.json",
|
"modal_ok_button_panel": "ui/progress_screen.json",
|
||||||
"modal_ok_button_panel/ok_button": "ui/progress_screen.json",
|
"modal_ok_button_panel/ok_button": "ui/progress_screen.json",
|
||||||
|
"modal_ok_button_panel_with_retry": "ui/progress_screen.json",
|
||||||
|
"modal_ok_button_panel_with_retry/left_ok_button": "ui/progress_screen.json",
|
||||||
|
"modal_ok_button_panel_with_retry/center_cancel_button": "ui/progress_screen.json",
|
||||||
|
"modal_ok_button_panel_with_retry/center_ok_button": "ui/progress_screen.json",
|
||||||
|
"modal_ok_button_panel_with_retry/right_retry_button": "ui/progress_screen.json",
|
||||||
"gamepad_helpers": "ui/progress_screen.json",
|
"gamepad_helpers": "ui/progress_screen.json",
|
||||||
"gamepad_helpers/gamepad_helper_a": "ui/progress_screen.json",
|
"gamepad_helpers/gamepad_helper_a": "ui/progress_screen.json",
|
||||||
"world_image": "ui/progress_screen.json",
|
"world_image": "ui/progress_screen.json",
|
||||||
|
|
@ -9772,6 +9796,7 @@ export const paths = {
|
||||||
"fetching_edu_cloud_worlds": "ui/progress_screen.json",
|
"fetching_edu_cloud_worlds": "ui/progress_screen.json",
|
||||||
"edu_cloud_download_progress_screen": "ui/progress_screen.json",
|
"edu_cloud_download_progress_screen": "ui/progress_screen.json",
|
||||||
"fetching_edu_servers": "ui/progress_screen.json",
|
"fetching_edu_servers": "ui/progress_screen.json",
|
||||||
|
"joining_edu_server": "ui/progress_screen.json",
|
||||||
"world_convert_modal_progress_screen": "ui/progress_screen.json",
|
"world_convert_modal_progress_screen": "ui/progress_screen.json",
|
||||||
"progress_screen": "ui/progress_screen.json",
|
"progress_screen": "ui/progress_screen.json",
|
||||||
"popup_dialog_factory": "ui/progress_screen.json",
|
"popup_dialog_factory": "ui/progress_screen.json",
|
||||||
|
|
@ -9785,16 +9810,21 @@ export const paths = {
|
||||||
"modal_screen_content/modal_progress_panel": "ui/progress_screen.json",
|
"modal_screen_content/modal_progress_panel": "ui/progress_screen.json",
|
||||||
"world_modal_progress_panel": "ui/progress_screen.json",
|
"world_modal_progress_panel": "ui/progress_screen.json",
|
||||||
"world_modal_progress_panel/common_panel": "ui/progress_screen.json",
|
"world_modal_progress_panel/common_panel": "ui/progress_screen.json",
|
||||||
"world_modal_progress_panel/base_content": "ui/progress_screen.json",
|
"world_modal_progress_panel/content_wrapper": "ui/progress_screen.json",
|
||||||
"world_modal_progress_panel/base_content/progress_title_text": "ui/progress_screen.json",
|
"world_modal_progress_panel/content_wrapper/base_content": "ui/progress_screen.json",
|
||||||
"world_modal_progress_panel/base_content/progress_bar_text": "ui/progress_screen.json",
|
"world_modal_progress_panel/content_wrapper/base_content/vertical_title_padding": "ui/progress_screen.json",
|
||||||
"world_modal_progress_panel/inside_content": "ui/progress_screen.json",
|
"world_modal_progress_panel/content_wrapper/base_content/title_text_panel": "ui/progress_screen.json",
|
||||||
"world_modal_progress_panel/inside_content/loading_bar_panel": "ui/progress_screen.json",
|
"world_modal_progress_panel/content_wrapper/base_content/title_text_panel/progress_title_text": "ui/progress_screen.json",
|
||||||
"world_modal_progress_panel/inside_content/loading_bar_panel/fancy_progress_loading_bars": "ui/progress_screen.json",
|
"world_modal_progress_panel/content_wrapper/base_content/vertical_text_padding": "ui/progress_screen.json",
|
||||||
"world_modal_progress_panel/inside_content/loading_bar_panel/progress_loading_bars": "ui/progress_screen.json",
|
"world_modal_progress_panel/content_wrapper/base_content/progress_text_panel": "ui/progress_screen.json",
|
||||||
"world_modal_progress_panel/inside_content/vertical_padding": "ui/progress_screen.json",
|
"world_modal_progress_panel/content_wrapper/base_content/progress_text_panel/progress_bar_text": "ui/progress_screen.json",
|
||||||
"world_modal_progress_panel/inside_content/modal_button_panel": "ui/progress_screen.json",
|
"world_modal_progress_panel/content_wrapper/inside_content": "ui/progress_screen.json",
|
||||||
"world_modal_progress_panel/inside_content/vertical_padding_2": "ui/progress_screen.json",
|
"world_modal_progress_panel/content_wrapper/inside_content/loading_bar_panel": "ui/progress_screen.json",
|
||||||
|
"world_modal_progress_panel/content_wrapper/inside_content/loading_bar_panel/fancy_progress_loading_bars": "ui/progress_screen.json",
|
||||||
|
"world_modal_progress_panel/content_wrapper/inside_content/loading_bar_panel/progress_loading_bars": "ui/progress_screen.json",
|
||||||
|
"world_modal_progress_panel/content_wrapper/inside_content/vertical_padding": "ui/progress_screen.json",
|
||||||
|
"world_modal_progress_panel/content_wrapper/inside_content/modal_button_panel": "ui/progress_screen.json",
|
||||||
|
"world_modal_progress_panel/content_wrapper/inside_content/vertical_padding_2": "ui/progress_screen.json",
|
||||||
"cloud_upload_panel": "ui/progress_screen.json",
|
"cloud_upload_panel": "ui/progress_screen.json",
|
||||||
"cloud_upload_panel/common_panel": "ui/progress_screen.json",
|
"cloud_upload_panel/common_panel": "ui/progress_screen.json",
|
||||||
"cloud_upload_panel/base_content": "ui/progress_screen.json",
|
"cloud_upload_panel/base_content": "ui/progress_screen.json",
|
||||||
|
|
@ -9850,6 +9880,15 @@ export const paths = {
|
||||||
"cloud_download_panel/base_content/edu_cloud_download_image": "ui/progress_screen.json",
|
"cloud_download_panel/base_content/edu_cloud_download_image": "ui/progress_screen.json",
|
||||||
"cloud_download_panel/loading_bar_panel": "ui/progress_screen.json",
|
"cloud_download_panel/loading_bar_panel": "ui/progress_screen.json",
|
||||||
"cloud_download_panel/loading_bar_panel/progress_loading_bars": "ui/progress_screen.json",
|
"cloud_download_panel/loading_bar_panel/progress_loading_bars": "ui/progress_screen.json",
|
||||||
|
"server_fetch_timeout_panel": "ui/progress_screen.json",
|
||||||
|
"server_fetch_timeout_panel/common_panel": "ui/progress_screen.json",
|
||||||
|
"server_fetch_timeout_panel/base_content": "ui/progress_screen.json",
|
||||||
|
"server_fetch_timeout_panel/base_content/progress_title_text": "ui/progress_screen.json",
|
||||||
|
"server_fetch_timeout_panel/base_content/progress_text": "ui/progress_screen.json",
|
||||||
|
"server_fetch_timeout_panel/base_content/edu_server_fetch_image": "ui/progress_screen.json",
|
||||||
|
"server_fetch_timeout_panel/base_content/loading_bar_panel": "ui/progress_screen.json",
|
||||||
|
"server_fetch_timeout_panel/base_content/loading_bar_panel/progress_loading_bars": "ui/progress_screen.json",
|
||||||
|
"server_fetch_timeout_panel/base_content/timeout_button": "ui/progress_screen.json",
|
||||||
"world_convert_modal_progress_screen_content": "ui/progress_screen.json",
|
"world_convert_modal_progress_screen_content": "ui/progress_screen.json",
|
||||||
"world_convert_modal_progress_screen_content/mobile_data_icon": "ui/progress_screen.json",
|
"world_convert_modal_progress_screen_content/mobile_data_icon": "ui/progress_screen.json",
|
||||||
"world_convert_modal_progress_screen_content/title_panel_content": "ui/progress_screen.json",
|
"world_convert_modal_progress_screen_content/title_panel_content": "ui/progress_screen.json",
|
||||||
|
|
@ -9881,7 +9920,12 @@ export const paths = {
|
||||||
"edu_cloud_fetch_screen_content/popup_dialog_factory": "ui/progress_screen.json",
|
"edu_cloud_fetch_screen_content/popup_dialog_factory": "ui/progress_screen.json",
|
||||||
"edu_server_fetch_screen_content": "ui/progress_screen.json",
|
"edu_server_fetch_screen_content": "ui/progress_screen.json",
|
||||||
"edu_server_fetch_screen_content/server_fetch_panel": "ui/progress_screen.json",
|
"edu_server_fetch_screen_content/server_fetch_panel": "ui/progress_screen.json",
|
||||||
|
"edu_server_fetch_screen_content/server_fetch_timeout_panel": "ui/progress_screen.json",
|
||||||
"edu_server_fetch_screen_content/popup_dialog_factory": "ui/progress_screen.json",
|
"edu_server_fetch_screen_content/popup_dialog_factory": "ui/progress_screen.json",
|
||||||
|
"joining_edu_server_progress_screen_content": "ui/progress_screen.json",
|
||||||
|
"joining_edu_server_progress_screen_content/title_panel_content": "ui/progress_screen.json",
|
||||||
|
"joining_edu_server_progress_screen_content/world_modal_progress_panel": "ui/progress_screen.json",
|
||||||
|
"joining_edu_server_progress_screen_content/popup_dialog_factory": "ui/progress_screen.json",
|
||||||
"cloud_download_screen_content": "ui/progress_screen.json",
|
"cloud_download_screen_content": "ui/progress_screen.json",
|
||||||
"cloud_download_screen_content/background": "ui/progress_screen.json",
|
"cloud_download_screen_content/background": "ui/progress_screen.json",
|
||||||
"cloud_download_screen_content/cloud_download_panel": "ui/progress_screen.json",
|
"cloud_download_screen_content/cloud_download_panel": "ui/progress_screen.json",
|
||||||
|
|
@ -10353,10 +10397,10 @@ export const paths = {
|
||||||
"free_up_space_popup_scrolling_panel": "ui/realms_settings_screen.json",
|
"free_up_space_popup_scrolling_panel": "ui/realms_settings_screen.json",
|
||||||
"free_up_space_text_description": "ui/realms_settings_screen.json",
|
"free_up_space_text_description": "ui/realms_settings_screen.json",
|
||||||
"free_up_space_popup_content_stack_panel": "ui/realms_settings_screen.json",
|
"free_up_space_popup_content_stack_panel": "ui/realms_settings_screen.json",
|
||||||
"free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel": "ui/realms_settings_screen.json",
|
"free_up_space_popup_content_stack_panel/free_up_space_description_label": "ui/realms_settings_screen.json",
|
||||||
"free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel/free_up_space_storage_bar_panel": "ui/realms_settings_screen.json",
|
"free_up_space_popup_content_stack_panel/padding1": "ui/realms_settings_screen.json",
|
||||||
"free_up_space_popup_content_stack_panel/free_up_space_storage_bar_header_panel/focus_border": "ui/realms_settings_screen.json",
|
"free_up_space_popup_content_stack_panel/free_up_space_storage_bar_panel": "ui/realms_settings_screen.json",
|
||||||
"free_up_space_popup_content_stack_panel/padding_1": "ui/realms_settings_screen.json",
|
"free_up_space_popup_content_stack_panel/padding2": "ui/realms_settings_screen.json",
|
||||||
"free_up_space_popup_content_stack_panel/free_up_space_manual_save_list_stack_panel": "ui/realms_settings_screen.json",
|
"free_up_space_popup_content_stack_panel/free_up_space_manual_save_list_stack_panel": "ui/realms_settings_screen.json",
|
||||||
"popup_dialog__free_up_space": "ui/realms_settings_screen.json",
|
"popup_dialog__free_up_space": "ui/realms_settings_screen.json",
|
||||||
"popup_dialog__free_up_space/free_up_space_popup_background": "ui/realms_settings_screen.json",
|
"popup_dialog__free_up_space/free_up_space_popup_background": "ui/realms_settings_screen.json",
|
||||||
|
|
@ -10573,6 +10617,7 @@ export const paths = {
|
||||||
"realms_settings_screen_base_no_selector_area": "ui/realms_settings_screen.json",
|
"realms_settings_screen_base_no_selector_area": "ui/realms_settings_screen.json",
|
||||||
"screen_realm_hub_manage_members": "ui/realms_settings_screen.json",
|
"screen_realm_hub_manage_members": "ui/realms_settings_screen.json",
|
||||||
"screen_realm_hub_invite_links": "ui/realms_settings_screen.json",
|
"screen_realm_hub_invite_links": "ui/realms_settings_screen.json",
|
||||||
|
"screen_realm_hub_saves": "ui/realms_settings_screen.json",
|
||||||
},
|
},
|
||||||
"realms_allowlist": {
|
"realms_allowlist": {
|
||||||
"spacing_gap": "ui/realms_allowlist.json",
|
"spacing_gap": "ui/realms_allowlist.json",
|
||||||
|
|
@ -11949,13 +11994,18 @@ export const paths = {
|
||||||
},
|
},
|
||||||
"settings": {
|
"settings": {
|
||||||
"settings_screen_base": "ui/settings_screen.json",
|
"settings_screen_base": "ui/settings_screen.json",
|
||||||
|
"settings_screen_base_fullscreen": "ui/settings_screen.json",
|
||||||
"screen_world_create": "ui/settings_screen.json",
|
"screen_world_create": "ui/settings_screen.json",
|
||||||
"screen_template_create": "ui/settings_screen.json",
|
"screen_template_create": "ui/settings_screen.json",
|
||||||
"screen_world_edit": "ui/settings_screen.json",
|
"screen_world_edit": "ui/settings_screen.json",
|
||||||
"screen_controls_and_settings": "ui/settings_screen.json",
|
"screen_controls_and_settings": "ui/settings_screen.json",
|
||||||
|
"screen_controls_and_settings_fullscreen": "ui/settings_screen.json",
|
||||||
"screen_world_controls_and_settings": "ui/settings_screen.json",
|
"screen_world_controls_and_settings": "ui/settings_screen.json",
|
||||||
|
"screen_world_controls_and_settings_fullscreen": "ui/settings_screen.json",
|
||||||
"screen_realm_controls_and_settings": "ui/settings_screen.json",
|
"screen_realm_controls_and_settings": "ui/settings_screen.json",
|
||||||
|
"screen_realm_controls_and_settings_fullscreen": "ui/settings_screen.json",
|
||||||
"screen_realm_member_controls_and_settings": "ui/settings_screen.json",
|
"screen_realm_member_controls_and_settings": "ui/settings_screen.json",
|
||||||
|
"screen_realm_member_controls_and_settings_fullscreen": "ui/settings_screen.json",
|
||||||
"screen_realm_settings": "ui/settings_screen.json",
|
"screen_realm_settings": "ui/settings_screen.json",
|
||||||
"screen_world_slot_edit": "ui/settings_screen.json",
|
"screen_world_slot_edit": "ui/settings_screen.json",
|
||||||
"screen_realm_manage": "ui/settings_screen.json",
|
"screen_realm_manage": "ui/settings_screen.json",
|
||||||
|
|
@ -12046,29 +12096,22 @@ export const paths = {
|
||||||
"section_content_panels/section_content_panels": "ui/settings_screen.json",
|
"section_content_panels/section_content_panels": "ui/settings_screen.json",
|
||||||
"section_content_panels/general_and_controls_sections": "ui/settings_screen.json",
|
"section_content_panels/general_and_controls_sections": "ui/settings_screen.json",
|
||||||
"section_content_panels/general_and_controls_sections/accessibility_section": "ui/settings_screen.json",
|
"section_content_panels/general_and_controls_sections/accessibility_section": "ui/settings_screen.json",
|
||||||
"section_content_panels/general_and_controls_sections/accessibility_section_ore_ui": "ui/settings_screen.json",
|
|
||||||
"section_content_panels/general_and_controls_sections/keyboard_and_mouse_section": "ui/settings_screen.json",
|
"section_content_panels/general_and_controls_sections/keyboard_and_mouse_section": "ui/settings_screen.json",
|
||||||
"section_content_panels/general_and_controls_sections/keyboard_and_mouse_section_ore_ui": "ui/settings_screen.json",
|
|
||||||
"section_content_panels/general_and_controls_sections/controller_section": "ui/settings_screen.json",
|
"section_content_panels/general_and_controls_sections/controller_section": "ui/settings_screen.json",
|
||||||
"section_content_panels/general_and_controls_sections/touch_section": "ui/settings_screen.json",
|
"section_content_panels/general_and_controls_sections/touch_section": "ui/settings_screen.json",
|
||||||
"section_content_panels/general_and_controls_sections/party_section": "ui/settings_screen.json",
|
"section_content_panels/general_and_controls_sections/party_section": "ui/settings_screen.json",
|
||||||
"section_content_panels/general_and_controls_sections/general_tab_section": "ui/settings_screen.json",
|
"section_content_panels/general_and_controls_sections/general_tab_section": "ui/settings_screen.json",
|
||||||
"section_content_panels/general_and_controls_sections/general_tab_section_ore_ui": "ui/settings_screen.json",
|
|
||||||
"section_content_panels/general_and_controls_sections/account_section": "ui/settings_screen.json",
|
"section_content_panels/general_and_controls_sections/account_section": "ui/settings_screen.json",
|
||||||
"section_content_panels/general_and_controls_sections/account_section_ore_ui": "ui/settings_screen.json",
|
|
||||||
"section_content_panels/general_and_controls_sections/global_texture_pack_section": "ui/settings_screen.json",
|
"section_content_panels/general_and_controls_sections/global_texture_pack_section": "ui/settings_screen.json",
|
||||||
"section_content_panels/general_and_controls_sections/storage_management_header": "ui/settings_screen.json",
|
"section_content_panels/general_and_controls_sections/storage_management_header": "ui/settings_screen.json",
|
||||||
"section_content_panels/general_and_controls_sections/storage_management_section": "ui/settings_screen.json",
|
"section_content_panels/general_and_controls_sections/storage_management_section": "ui/settings_screen.json",
|
||||||
"section_content_panels/general_and_controls_sections/edu_cloud_storage_section": "ui/settings_screen.json",
|
"section_content_panels/general_and_controls_sections/edu_cloud_storage_section": "ui/settings_screen.json",
|
||||||
"section_content_panels/general_and_controls_sections/creator_section": "ui/settings_screen.json",
|
"section_content_panels/general_and_controls_sections/creator_section": "ui/settings_screen.json",
|
||||||
"section_content_panels/general_and_controls_sections/video_section": "ui/settings_screen.json",
|
"section_content_panels/general_and_controls_sections/video_section": "ui/settings_screen.json",
|
||||||
"section_content_panels/general_and_controls_sections/video_section_ore_ui": "ui/settings_screen.json",
|
|
||||||
"section_content_panels/general_and_controls_sections/view_subscriptions_prerelease_section": "ui/settings_screen.json",
|
"section_content_panels/general_and_controls_sections/view_subscriptions_prerelease_section": "ui/settings_screen.json",
|
||||||
"section_content_panels/general_and_controls_sections/view_subscriptions_section": "ui/settings_screen.json",
|
"section_content_panels/general_and_controls_sections/view_subscriptions_section": "ui/settings_screen.json",
|
||||||
"section_content_panels/general_and_controls_sections/sound_section": "ui/settings_screen.json",
|
"section_content_panels/general_and_controls_sections/sound_section": "ui/settings_screen.json",
|
||||||
"section_content_panels/general_and_controls_sections/sound_section_ore_ui": "ui/settings_screen.json",
|
|
||||||
"section_content_panels/general_and_controls_sections/language_section": "ui/settings_screen.json",
|
"section_content_panels/general_and_controls_sections/language_section": "ui/settings_screen.json",
|
||||||
"section_content_panels/general_and_controls_sections/language_section_ore_ui": "ui/settings_screen.json",
|
|
||||||
"section_content_panels/general_and_controls_sections/preview_section": "ui/settings_screen.json",
|
"section_content_panels/general_and_controls_sections/preview_section": "ui/settings_screen.json",
|
||||||
"section_content_panels/general_and_controls_sections/debug_section": "ui/settings_screen.json",
|
"section_content_panels/general_and_controls_sections/debug_section": "ui/settings_screen.json",
|
||||||
"section_content_panels/general_and_controls_sections/ui_debug_section": "ui/settings_screen.json",
|
"section_content_panels/general_and_controls_sections/ui_debug_section": "ui/settings_screen.json",
|
||||||
|
|
@ -12100,6 +12143,11 @@ export const paths = {
|
||||||
"reset_binding_button": "ui/settings_sections/controls_section.json",
|
"reset_binding_button": "ui/settings_sections/controls_section.json",
|
||||||
"keymapping_item_parent": "ui/settings_sections/controls_section.json",
|
"keymapping_item_parent": "ui/settings_sections/controls_section.json",
|
||||||
"keymapping_item_parent/keymapping_row": "ui/settings_sections/controls_section.json",
|
"keymapping_item_parent/keymapping_row": "ui/settings_sections/controls_section.json",
|
||||||
|
"keymapping_item_frame": "ui/settings_sections/controls_section.json",
|
||||||
|
"keymapping_item_frame/keymap": "ui/settings_sections/controls_section.json",
|
||||||
|
"keymapping_item_frame/command_macro_command": "ui/settings_sections/controls_section.json",
|
||||||
|
"command_macro_command_textbox": "ui/settings_sections/controls_section.json",
|
||||||
|
"command_macro_command_textbox/text_box": "ui/settings_sections/controls_section.json",
|
||||||
"keymapping_item": "ui/settings_sections/controls_section.json",
|
"keymapping_item": "ui/settings_sections/controls_section.json",
|
||||||
"keymapping_item/option_info_label_control": "ui/settings_sections/controls_section.json",
|
"keymapping_item/option_info_label_control": "ui/settings_sections/controls_section.json",
|
||||||
"keymapping_item/option_info_label_control/keymapping_label_control": "ui/settings_sections/controls_section.json",
|
"keymapping_item/option_info_label_control/keymapping_label_control": "ui/settings_sections/controls_section.json",
|
||||||
|
|
@ -12113,12 +12161,18 @@ export const paths = {
|
||||||
"gamepad_mapping_item/keymapping_button_0": "ui/settings_sections/controls_section.json",
|
"gamepad_mapping_item/keymapping_button_0": "ui/settings_sections/controls_section.json",
|
||||||
"gamepad_mapping_item/keymapping_button_1": "ui/settings_sections/controls_section.json",
|
"gamepad_mapping_item/keymapping_button_1": "ui/settings_sections/controls_section.json",
|
||||||
"gamepad_mapping_grid": "ui/settings_sections/controls_section.json",
|
"gamepad_mapping_grid": "ui/settings_sections/controls_section.json",
|
||||||
|
"keyboard_command_macros_grid": "ui/settings_sections/controls_section.json",
|
||||||
|
"keyboard_command_macros_grid/divider_before": "ui/settings_sections/controls_section.json",
|
||||||
|
"keyboard_command_macros_grid/divider_before/section_divider": "ui/settings_sections/controls_section.json",
|
||||||
|
"keyboard_command_macros_grid/divider_before_padding": "ui/settings_sections/controls_section.json",
|
||||||
|
"keyboard_command_macros_grid/command_macro_title": "ui/settings_sections/controls_section.json",
|
||||||
|
"keyboard_command_macros_grid/command_macro_title_desc": "ui/settings_sections/controls_section.json",
|
||||||
|
"keyboard_command_macros_grid/command_macro_title_padding": "ui/settings_sections/controls_section.json",
|
||||||
|
"keyboard_command_macros_grid/command_macro_keymapping_grid": "ui/settings_sections/controls_section.json",
|
||||||
|
"keyboard_command_macros_grid/divider_after": "ui/settings_sections/controls_section.json",
|
||||||
|
"keyboard_command_macros_grid/divider_after/section_divider": "ui/settings_sections/controls_section.json",
|
||||||
|
"keyboard_command_macros_grid/divider_after_padding": "ui/settings_sections/controls_section.json",
|
||||||
"keyboard_and_mouse_button": "ui/settings_sections/controls_section.json",
|
"keyboard_and_mouse_button": "ui/settings_sections/controls_section.json",
|
||||||
"keyboard_and_mouse_section_ore_ui": "ui/settings_sections/controls_section.json",
|
|
||||||
"keyboard_and_mouse_section_ore_ui/spacer_0": "ui/settings_sections/controls_section.json",
|
|
||||||
"keyboard_and_mouse_section_ore_ui/generic_label": "ui/settings_sections/controls_section.json",
|
|
||||||
"keyboard_and_mouse_section_ore_ui/spacer_1": "ui/settings_sections/controls_section.json",
|
|
||||||
"keyboard_and_mouse_section_ore_ui/gamepad_helper_label": "ui/settings_sections/controls_section.json",
|
|
||||||
"keyboard_and_mouse_section": "ui/settings_sections/controls_section.json",
|
"keyboard_and_mouse_section": "ui/settings_sections/controls_section.json",
|
||||||
"keyboard_and_mouse_section/option_slider_0": "ui/settings_sections/controls_section.json",
|
"keyboard_and_mouse_section/option_slider_0": "ui/settings_sections/controls_section.json",
|
||||||
"keyboard_and_mouse_section/option_slider_damen": "ui/settings_sections/controls_section.json",
|
"keyboard_and_mouse_section/option_slider_damen": "ui/settings_sections/controls_section.json",
|
||||||
|
|
@ -12134,6 +12188,7 @@ export const paths = {
|
||||||
"keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section": "ui/settings_sections/controls_section.json",
|
"keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section": "ui/settings_sections/controls_section.json",
|
||||||
"keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section/option_group_label": "ui/settings_sections/controls_section.json",
|
"keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section/option_group_label": "ui/settings_sections/controls_section.json",
|
||||||
"keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section/control_alt_chord_keymapping_grid": "ui/settings_sections/controls_section.json",
|
"keyboard_and_mouse_section/keyboard_section/control_alt_chords_standard_keyboard_section/control_alt_chord_keymapping_grid": "ui/settings_sections/controls_section.json",
|
||||||
|
"keyboard_and_mouse_section/keyboard_section/command_macros": "ui/settings_sections/controls_section.json",
|
||||||
"keyboard_and_mouse_section/full_keyboard_section": "ui/settings_sections/controls_section.json",
|
"keyboard_and_mouse_section/full_keyboard_section": "ui/settings_sections/controls_section.json",
|
||||||
"keyboard_and_mouse_section/full_keyboard_section/option_slider_smooth_rotation_speed": "ui/settings_sections/controls_section.json",
|
"keyboard_and_mouse_section/full_keyboard_section/option_slider_smooth_rotation_speed": "ui/settings_sections/controls_section.json",
|
||||||
"keyboard_and_mouse_section/full_keyboard_section/full_keyboard_label": "ui/settings_sections/controls_section.json",
|
"keyboard_and_mouse_section/full_keyboard_section/full_keyboard_label": "ui/settings_sections/controls_section.json",
|
||||||
|
|
@ -12141,6 +12196,7 @@ export const paths = {
|
||||||
"keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section": "ui/settings_sections/controls_section.json",
|
"keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section": "ui/settings_sections/controls_section.json",
|
||||||
"keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section/option_group_label": "ui/settings_sections/controls_section.json",
|
"keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section/option_group_label": "ui/settings_sections/controls_section.json",
|
||||||
"keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section/control_alt_chord_keymapping_grid": "ui/settings_sections/controls_section.json",
|
"keyboard_and_mouse_section/full_keyboard_section/control_alt_chords_full_keyboard_section/control_alt_chord_keymapping_grid": "ui/settings_sections/controls_section.json",
|
||||||
|
"keyboard_and_mouse_section/full_keyboard_section/command_macros": "ui/settings_sections/controls_section.json",
|
||||||
"keyboard_and_mouse_section/reset_button": "ui/settings_sections/controls_section.json",
|
"keyboard_and_mouse_section/reset_button": "ui/settings_sections/controls_section.json",
|
||||||
"controller_button": "ui/settings_sections/controls_section.json",
|
"controller_button": "ui/settings_sections/controls_section.json",
|
||||||
"controller_section": "ui/settings_sections/controls_section.json",
|
"controller_section": "ui/settings_sections/controls_section.json",
|
||||||
|
|
@ -12216,11 +12272,6 @@ export const paths = {
|
||||||
},
|
},
|
||||||
"general_section": {
|
"general_section": {
|
||||||
"general_button": "ui/settings_sections/general_section.json",
|
"general_button": "ui/settings_sections/general_section.json",
|
||||||
"general_tab_section_ore_ui": "ui/settings_sections/general_section.json",
|
|
||||||
"general_tab_section_ore_ui/spacer_0": "ui/settings_sections/general_section.json",
|
|
||||||
"general_tab_section_ore_ui/generic_label": "ui/settings_sections/general_section.json",
|
|
||||||
"general_tab_section_ore_ui/spacer_1": "ui/settings_sections/general_section.json",
|
|
||||||
"general_tab_section_ore_ui/gamepad_helper_label": "ui/settings_sections/general_section.json",
|
|
||||||
"general_tab_section": "ui/settings_sections/general_section.json",
|
"general_tab_section": "ui/settings_sections/general_section.json",
|
||||||
"general_tab_section/option_toggle_fail_realms_purchase_fulfillment": "ui/settings_sections/general_section.json",
|
"general_tab_section/option_toggle_fail_realms_purchase_fulfillment": "ui/settings_sections/general_section.json",
|
||||||
"general_tab_section/network_label_header": "ui/settings_sections/general_section.json",
|
"general_tab_section/network_label_header": "ui/settings_sections/general_section.json",
|
||||||
|
|
@ -12247,6 +12298,7 @@ export const paths = {
|
||||||
"general_tab_section/pause_label_header": "ui/settings_sections/general_section.json",
|
"general_tab_section/pause_label_header": "ui/settings_sections/general_section.json",
|
||||||
"general_tab_section/paddingPauseFeature": "ui/settings_sections/general_section.json",
|
"general_tab_section/paddingPauseFeature": "ui/settings_sections/general_section.json",
|
||||||
"general_tab_section/pause_toggle": "ui/settings_sections/general_section.json",
|
"general_tab_section/pause_toggle": "ui/settings_sections/general_section.json",
|
||||||
|
"general_tab_section/pause_menu_on_focus_lost": "ui/settings_sections/general_section.json",
|
||||||
"general_tab_section/paddingLinkEduSupport": "ui/settings_sections/general_section.json",
|
"general_tab_section/paddingLinkEduSupport": "ui/settings_sections/general_section.json",
|
||||||
"general_tab_section/link_button": "ui/settings_sections/general_section.json",
|
"general_tab_section/link_button": "ui/settings_sections/general_section.json",
|
||||||
"general_tab_section/paddingDividerSustainability": "ui/settings_sections/general_section.json",
|
"general_tab_section/paddingDividerSustainability": "ui/settings_sections/general_section.json",
|
||||||
|
|
@ -12285,11 +12337,6 @@ export const paths = {
|
||||||
"general_tab_section/build_info_label_panel/build_info_label": "ui/settings_sections/general_section.json",
|
"general_tab_section/build_info_label_panel/build_info_label": "ui/settings_sections/general_section.json",
|
||||||
"general_tab_section/paddingSectionDividerBuildInfo": "ui/settings_sections/general_section.json",
|
"general_tab_section/paddingSectionDividerBuildInfo": "ui/settings_sections/general_section.json",
|
||||||
"general_tab_section/treatment_ids_label": "ui/settings_sections/general_section.json",
|
"general_tab_section/treatment_ids_label": "ui/settings_sections/general_section.json",
|
||||||
"account_section_ore_ui": "ui/settings_sections/general_section.json",
|
|
||||||
"account_section_ore_ui/spacer_0": "ui/settings_sections/general_section.json",
|
|
||||||
"account_section_ore_ui/generic_label": "ui/settings_sections/general_section.json",
|
|
||||||
"account_section_ore_ui/spacer_1": "ui/settings_sections/general_section.json",
|
|
||||||
"account_section_ore_ui/gamepad_helper_label": "ui/settings_sections/general_section.json",
|
|
||||||
"account_button": "ui/settings_sections/general_section.json",
|
"account_button": "ui/settings_sections/general_section.json",
|
||||||
"view_account_errors_button_content": "ui/settings_sections/general_section.json",
|
"view_account_errors_button_content": "ui/settings_sections/general_section.json",
|
||||||
"switch_accounts_button_content": "ui/settings_sections/general_section.json",
|
"switch_accounts_button_content": "ui/settings_sections/general_section.json",
|
||||||
|
|
@ -12420,13 +12467,10 @@ export const paths = {
|
||||||
"creator_toggles_panel": "ui/settings_sections/general_section.json",
|
"creator_toggles_panel": "ui/settings_sections/general_section.json",
|
||||||
"creator_toggles_panel/section_panel_1": "ui/settings_sections/general_section.json",
|
"creator_toggles_panel/section_panel_1": "ui/settings_sections/general_section.json",
|
||||||
"creator_toggles_panel/section_panel_1/section_divider": "ui/settings_sections/general_section.json",
|
"creator_toggles_panel/section_panel_1/section_divider": "ui/settings_sections/general_section.json",
|
||||||
"creator_toggles_panel/copy_coordinate_section_stack_panel": "ui/settings_sections/general_section.json",
|
"creator_toggles_panel/primary_panel": "ui/settings_sections/general_section.json",
|
||||||
"creator_toggles_panel/copy_coordinate_section_stack_panel/content_log_section_label": "ui/settings_sections/general_section.json",
|
"creator_toggles_panel/primary_panel/content_log_section_label": "ui/settings_sections/general_section.json",
|
||||||
"creator_toggles_panel/copy_coordinate_section_stack_panel/content_log_section_label_spacer": "ui/settings_sections/general_section.json",
|
"creator_toggles_panel/primary_panel/content_log_section_label_spacer": "ui/settings_sections/general_section.json",
|
||||||
"creator_toggles_panel/copy_coordinate_section_stack_panel/option_content_file_log": "ui/settings_sections/general_section.json",
|
"creator_toggles_panel/primary_panel/clipboard_setting": "ui/settings_sections/general_section.json",
|
||||||
"creator_toggles_panel/creator_setting_button": "ui/settings_sections/general_section.json",
|
|
||||||
"creator_toggles_panel/creator_setting_button/go_to_keybinds": "ui/settings_sections/general_section.json",
|
|
||||||
"creator_toggles_panel/creator_setting_button/creator_settings_section_label_spacer": "ui/settings_sections/general_section.json",
|
|
||||||
"debugger_toggles_panel": "ui/settings_sections/general_section.json",
|
"debugger_toggles_panel": "ui/settings_sections/general_section.json",
|
||||||
"debugger_toggles_panel/section_panel_1": "ui/settings_sections/general_section.json",
|
"debugger_toggles_panel/section_panel_1": "ui/settings_sections/general_section.json",
|
||||||
"debugger_toggles_panel/section_panel_1/section_divider": "ui/settings_sections/general_section.json",
|
"debugger_toggles_panel/section_panel_1/section_divider": "ui/settings_sections/general_section.json",
|
||||||
|
|
@ -12443,6 +12487,13 @@ export const paths = {
|
||||||
"debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/spacer": "ui/settings_sections/general_section.json",
|
"debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/spacer": "ui/settings_sections/general_section.json",
|
||||||
"debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/port_input": "ui/settings_sections/general_section.json",
|
"debugger_toggles_panel/primary_panel/all_options_panel/host_and_port_panel/port_input": "ui/settings_sections/general_section.json",
|
||||||
"debugger_toggles_panel/primary_panel/all_options_panel/auto_attach_timeout_slider": "ui/settings_sections/general_section.json",
|
"debugger_toggles_panel/primary_panel/all_options_panel/auto_attach_timeout_slider": "ui/settings_sections/general_section.json",
|
||||||
|
"editor_toggles_panel": "ui/settings_sections/general_section.json",
|
||||||
|
"editor_toggles_panel/section_panel_1": "ui/settings_sections/general_section.json",
|
||||||
|
"editor_toggles_panel/section_panel_1/section_divider": "ui/settings_sections/general_section.json",
|
||||||
|
"editor_toggles_panel/primary_panel": "ui/settings_sections/general_section.json",
|
||||||
|
"editor_toggles_panel/primary_panel/content_log_section_label": "ui/settings_sections/general_section.json",
|
||||||
|
"editor_toggles_panel/primary_panel/content_log_section_label_spacer": "ui/settings_sections/general_section.json",
|
||||||
|
"editor_toggles_panel/primary_panel/clipboard_setting": "ui/settings_sections/general_section.json",
|
||||||
"diagnostics_toggles_panel": "ui/settings_sections/general_section.json",
|
"diagnostics_toggles_panel": "ui/settings_sections/general_section.json",
|
||||||
"diagnostics_toggles_panel/section_panel_1": "ui/settings_sections/general_section.json",
|
"diagnostics_toggles_panel/section_panel_1": "ui/settings_sections/general_section.json",
|
||||||
"diagnostics_toggles_panel/section_panel_1/section_divider": "ui/settings_sections/general_section.json",
|
"diagnostics_toggles_panel/section_panel_1/section_divider": "ui/settings_sections/general_section.json",
|
||||||
|
|
@ -12495,15 +12546,11 @@ export const paths = {
|
||||||
"creator_section/debugger_toggles_panel": "ui/settings_sections/general_section.json",
|
"creator_section/debugger_toggles_panel": "ui/settings_sections/general_section.json",
|
||||||
"creator_section/diagnostics_toggle_panel": "ui/settings_sections/general_section.json",
|
"creator_section/diagnostics_toggle_panel": "ui/settings_sections/general_section.json",
|
||||||
"creator_section/watchdog_toggles_panel": "ui/settings_sections/general_section.json",
|
"creator_section/watchdog_toggles_panel": "ui/settings_sections/general_section.json",
|
||||||
|
"creator_section/editor_toggles_panel": "ui/settings_sections/general_section.json",
|
||||||
"creator_section/device_info_toggles_panel": "ui/settings_sections/general_section.json",
|
"creator_section/device_info_toggles_panel": "ui/settings_sections/general_section.json",
|
||||||
"creator_section/content_log_panel": "ui/settings_sections/general_section.json",
|
"creator_section/content_log_panel": "ui/settings_sections/general_section.json",
|
||||||
"video_button": "ui/settings_sections/general_section.json",
|
"video_button": "ui/settings_sections/general_section.json",
|
||||||
"advanced_video_options_toggle": "ui/settings_sections/general_section.json",
|
"advanced_video_options_toggle": "ui/settings_sections/general_section.json",
|
||||||
"video_section_ore_ui": "ui/settings_sections/general_section.json",
|
|
||||||
"video_section_ore_ui/spacer_0": "ui/settings_sections/general_section.json",
|
|
||||||
"video_section_ore_ui/generic_label": "ui/settings_sections/general_section.json",
|
|
||||||
"video_section_ore_ui/spacer_1": "ui/settings_sections/general_section.json",
|
|
||||||
"video_section_ore_ui/gamepad_helper_label": "ui/settings_sections/general_section.json",
|
|
||||||
"video_menu_slider_step_progress": "ui/settings_sections/general_section.json",
|
"video_menu_slider_step_progress": "ui/settings_sections/general_section.json",
|
||||||
"video_menu_slider_progress": "ui/settings_sections/general_section.json",
|
"video_menu_slider_progress": "ui/settings_sections/general_section.json",
|
||||||
"video_menu_slider_bar_default": "ui/settings_sections/general_section.json",
|
"video_menu_slider_bar_default": "ui/settings_sections/general_section.json",
|
||||||
|
|
@ -12616,6 +12663,8 @@ export const paths = {
|
||||||
"video_section/spacer_35": "ui/settings_sections/general_section.json",
|
"video_section/spacer_35": "ui/settings_sections/general_section.json",
|
||||||
"video_section/texel_anti_aliasing_toggle": "ui/settings_sections/general_section.json",
|
"video_section/texel_anti_aliasing_toggle": "ui/settings_sections/general_section.json",
|
||||||
"video_section/spacer_36": "ui/settings_sections/general_section.json",
|
"video_section/spacer_36": "ui/settings_sections/general_section.json",
|
||||||
|
"video_section/texture_streaming_toggle": "ui/settings_sections/general_section.json",
|
||||||
|
"video_section/spacer_37": "ui/settings_sections/general_section.json",
|
||||||
"video_section/reset_button": "ui/settings_sections/general_section.json",
|
"video_section/reset_button": "ui/settings_sections/general_section.json",
|
||||||
"max_framerate_slider": "ui/settings_sections/general_section.json",
|
"max_framerate_slider": "ui/settings_sections/general_section.json",
|
||||||
"max_framerate_slider/option_generic_core": "ui/settings_sections/general_section.json",
|
"max_framerate_slider/option_generic_core": "ui/settings_sections/general_section.json",
|
||||||
|
|
@ -12735,6 +12784,7 @@ export const paths = {
|
||||||
"chat_message_duration_label": "ui/settings_sections/general_section.json",
|
"chat_message_duration_label": "ui/settings_sections/general_section.json",
|
||||||
"chat_message_duration_info_label": "ui/settings_sections/general_section.json",
|
"chat_message_duration_info_label": "ui/settings_sections/general_section.json",
|
||||||
"accessibility_section": "ui/settings_sections/general_section.json",
|
"accessibility_section": "ui/settings_sections/general_section.json",
|
||||||
|
"accessibility_section/option_toggle_subtitles": "ui/settings_sections/general_section.json",
|
||||||
"accessibility_section/option_toggle0": "ui/settings_sections/general_section.json",
|
"accessibility_section/option_toggle0": "ui/settings_sections/general_section.json",
|
||||||
"accessibility_section/option_toggle1": "ui/settings_sections/general_section.json",
|
"accessibility_section/option_toggle1": "ui/settings_sections/general_section.json",
|
||||||
"accessibility_section/option_toggle2": "ui/settings_sections/general_section.json",
|
"accessibility_section/option_toggle2": "ui/settings_sections/general_section.json",
|
||||||
|
|
@ -12766,18 +12816,7 @@ export const paths = {
|
||||||
"accessibility_section/gui_accessibility_scaling_toggle": "ui/settings_sections/general_section.json",
|
"accessibility_section/gui_accessibility_scaling_toggle": "ui/settings_sections/general_section.json",
|
||||||
"accessibility_section/gui_accessibility_scaling_toggle/option_generic_core": "ui/settings_sections/general_section.json",
|
"accessibility_section/gui_accessibility_scaling_toggle/option_generic_core": "ui/settings_sections/general_section.json",
|
||||||
"accessibility_section/reset_button": "ui/settings_sections/general_section.json",
|
"accessibility_section/reset_button": "ui/settings_sections/general_section.json",
|
||||||
"accessibility_section_ore_ui": "ui/settings_sections/general_section.json",
|
|
||||||
"accessibility_section_ore_ui/spacer_0": "ui/settings_sections/general_section.json",
|
|
||||||
"accessibility_section_ore_ui/generic_label": "ui/settings_sections/general_section.json",
|
|
||||||
"accessibility_section_ore_ui/spacer_1": "ui/settings_sections/general_section.json",
|
|
||||||
"accessibility_section_ore_ui/gamepad_helper_label": "ui/settings_sections/general_section.json",
|
|
||||||
"accessibility_section_ore_ui/accessibility_button": "ui/settings_sections/general_section.json",
|
|
||||||
"sound_button": "ui/settings_sections/general_section.json",
|
"sound_button": "ui/settings_sections/general_section.json",
|
||||||
"sound_section_ore_ui": "ui/settings_sections/general_section.json",
|
|
||||||
"sound_section_ore_ui/spacer_0": "ui/settings_sections/general_section.json",
|
|
||||||
"sound_section_ore_ui/generic_label": "ui/settings_sections/general_section.json",
|
|
||||||
"sound_section_ore_ui/spacer_1": "ui/settings_sections/general_section.json",
|
|
||||||
"sound_section_ore_ui/gamepad_helper_label": "ui/settings_sections/general_section.json",
|
|
||||||
"sound_section": "ui/settings_sections/general_section.json",
|
"sound_section": "ui/settings_sections/general_section.json",
|
||||||
"sound_section/paddingMainVolume": "ui/settings_sections/general_section.json",
|
"sound_section/paddingMainVolume": "ui/settings_sections/general_section.json",
|
||||||
"sound_section/option_slider_0": "ui/settings_sections/general_section.json",
|
"sound_section/option_slider_0": "ui/settings_sections/general_section.json",
|
||||||
|
|
@ -12811,11 +12850,6 @@ export const paths = {
|
||||||
"language_grid_item": "ui/settings_sections/general_section.json",
|
"language_grid_item": "ui/settings_sections/general_section.json",
|
||||||
"language_section": "ui/settings_sections/general_section.json",
|
"language_section": "ui/settings_sections/general_section.json",
|
||||||
"language_section/language_list_grid": "ui/settings_sections/general_section.json",
|
"language_section/language_list_grid": "ui/settings_sections/general_section.json",
|
||||||
"language_section_ore_ui": "ui/settings_sections/general_section.json",
|
|
||||||
"language_section_ore_ui/spacer_0": "ui/settings_sections/general_section.json",
|
|
||||||
"language_section_ore_ui/generic_label": "ui/settings_sections/general_section.json",
|
|
||||||
"language_section_ore_ui/spacer_1": "ui/settings_sections/general_section.json",
|
|
||||||
"language_section_ore_ui/gamepad_helper_label": "ui/settings_sections/general_section.json",
|
|
||||||
"preview_button": "ui/settings_sections/general_section.json",
|
"preview_button": "ui/settings_sections/general_section.json",
|
||||||
"preview_section": "ui/settings_sections/general_section.json",
|
"preview_section": "ui/settings_sections/general_section.json",
|
||||||
"preview_section/spacer_0": "ui/settings_sections/general_section.json",
|
"preview_section/spacer_0": "ui/settings_sections/general_section.json",
|
||||||
|
|
@ -12889,13 +12923,9 @@ export const paths = {
|
||||||
"debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel/clear_treatments": "ui/settings_sections/general_section.json",
|
"debug_override_treatments_panel/override_treatments_panel_background/override_treatment_options_panel/treatment_cache_management_panel/clear_treatments": "ui/settings_sections/general_section.json",
|
||||||
"debug_override_treatments_panel/override_treatments_panel_background/treatments_label_panel": "ui/settings_sections/general_section.json",
|
"debug_override_treatments_panel/override_treatments_panel_background/treatments_label_panel": "ui/settings_sections/general_section.json",
|
||||||
"debug_override_treatments_panel/override_treatments_panel_background/treatments_label_panel/treatments_label": "ui/settings_sections/general_section.json",
|
"debug_override_treatments_panel/override_treatments_panel_background/treatments_label_panel/treatments_label": "ui/settings_sections/general_section.json",
|
||||||
"debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_1": "ui/settings_sections/general_section.json",
|
|
||||||
"debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_1/progress_loading_spinner_1": "ui/settings_sections/general_section.json",
|
|
||||||
"debug_override_treatments_panel/override_treatments_panel_background/treatment_grid": "ui/settings_sections/general_section.json",
|
"debug_override_treatments_panel/override_treatments_panel_background/treatment_grid": "ui/settings_sections/general_section.json",
|
||||||
"debug_override_treatments_panel/override_treatments_panel_background/unused_treatments_label_panel": "ui/settings_sections/general_section.json",
|
"debug_override_treatments_panel/override_treatments_panel_background/unused_treatments_label_panel": "ui/settings_sections/general_section.json",
|
||||||
"debug_override_treatments_panel/override_treatments_panel_background/unused_treatments_label_panel/treatments_label": "ui/settings_sections/general_section.json",
|
"debug_override_treatments_panel/override_treatments_panel_background/unused_treatments_label_panel/treatments_label": "ui/settings_sections/general_section.json",
|
||||||
"debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_2": "ui/settings_sections/general_section.json",
|
|
||||||
"debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_2/progress_loading_spinner_2": "ui/settings_sections/general_section.json",
|
|
||||||
"debug_override_treatments_panel/override_treatments_panel_background/unused_treatment_grid": "ui/settings_sections/general_section.json",
|
"debug_override_treatments_panel/override_treatments_panel_background/unused_treatment_grid": "ui/settings_sections/general_section.json",
|
||||||
"debug_override_treatments_panel/override_treatments_panel_background/spacer_1": "ui/settings_sections/general_section.json",
|
"debug_override_treatments_panel/override_treatments_panel_background/spacer_1": "ui/settings_sections/general_section.json",
|
||||||
"debug_override_configurations_panel": "ui/settings_sections/general_section.json",
|
"debug_override_configurations_panel": "ui/settings_sections/general_section.json",
|
||||||
|
|
@ -13040,6 +13070,7 @@ export const paths = {
|
||||||
"debug_section/option_toggle_remote_imgui": "ui/settings_sections/general_section.json",
|
"debug_section/option_toggle_remote_imgui": "ui/settings_sections/general_section.json",
|
||||||
"debug_section/option_dropdown_0": "ui/settings_sections/general_section.json",
|
"debug_section/option_dropdown_0": "ui/settings_sections/general_section.json",
|
||||||
"debug_section/option_toggle_extra_debug_hud_info": "ui/settings_sections/general_section.json",
|
"debug_section/option_toggle_extra_debug_hud_info": "ui/settings_sections/general_section.json",
|
||||||
|
"debug_section/option_toggle_show_test_running_text": "ui/settings_sections/general_section.json",
|
||||||
"debug_section/option_toggle_0_1": "ui/settings_sections/general_section.json",
|
"debug_section/option_toggle_0_1": "ui/settings_sections/general_section.json",
|
||||||
"debug_section/option_toggle_0_2": "ui/settings_sections/general_section.json",
|
"debug_section/option_toggle_0_2": "ui/settings_sections/general_section.json",
|
||||||
"debug_section/option_slider_0": "ui/settings_sections/general_section.json",
|
"debug_section/option_slider_0": "ui/settings_sections/general_section.json",
|
||||||
|
|
@ -13093,8 +13124,11 @@ export const paths = {
|
||||||
"debug_section/option_text_edit_1": "ui/settings_sections/general_section.json",
|
"debug_section/option_text_edit_1": "ui/settings_sections/general_section.json",
|
||||||
"debug_section/option_text_edit_2": "ui/settings_sections/general_section.json",
|
"debug_section/option_text_edit_2": "ui/settings_sections/general_section.json",
|
||||||
"debug_section/option_text_edit_3": "ui/settings_sections/general_section.json",
|
"debug_section/option_text_edit_3": "ui/settings_sections/general_section.json",
|
||||||
|
"debug_section/reset_authentication_option": "ui/settings_sections/general_section.json",
|
||||||
"debug_section/reset_report_timer_option": "ui/settings_sections/general_section.json",
|
"debug_section/reset_report_timer_option": "ui/settings_sections/general_section.json",
|
||||||
"debug_section/reset_online_safety_option": "ui/settings_sections/general_section.json",
|
"debug_section/reset_online_safety_option": "ui/settings_sections/general_section.json",
|
||||||
|
"debug_section/reset_show_hardcore_warning_option": "ui/settings_sections/general_section.json",
|
||||||
|
"debug_section/reset_low_ping_warning_option": "ui/settings_sections/general_section.json",
|
||||||
"debug_section/reset_ip_safety_option": "ui/settings_sections/general_section.json",
|
"debug_section/reset_ip_safety_option": "ui/settings_sections/general_section.json",
|
||||||
"debug_section/padding_graphics_options": "ui/settings_sections/general_section.json",
|
"debug_section/padding_graphics_options": "ui/settings_sections/general_section.json",
|
||||||
"debug_section/option_shadersdk_service_ip": "ui/settings_sections/general_section.json",
|
"debug_section/option_shadersdk_service_ip": "ui/settings_sections/general_section.json",
|
||||||
|
|
@ -13251,6 +13285,18 @@ export const paths = {
|
||||||
"ui_debug_section/ui_feature_toggles_spacer": "ui/settings_sections/general_section.json",
|
"ui_debug_section/ui_feature_toggles_spacer": "ui/settings_sections/general_section.json",
|
||||||
"ui_debug_section/option_show_touch_control_selection_screen": "ui/settings_sections/general_section.json",
|
"ui_debug_section/option_show_touch_control_selection_screen": "ui/settings_sections/general_section.json",
|
||||||
"ui_debug_section/option_reset_on_start": "ui/settings_sections/general_section.json",
|
"ui_debug_section/option_reset_on_start": "ui/settings_sections/general_section.json",
|
||||||
|
"ui_debug_section/end_of_other_options_divider": "ui/settings_sections/general_section.json",
|
||||||
|
"ui_debug_section/end_of_other_options_divider/section_divider": "ui/settings_sections/general_section.json",
|
||||||
|
"ui_debug_section/end_of_other_options_spacer": "ui/settings_sections/general_section.json",
|
||||||
|
"ui_debug_section/debug_data_label": "ui/settings_sections/general_section.json",
|
||||||
|
"ui_debug_section/debug_data_label_spacer": "ui/settings_sections/general_section.json",
|
||||||
|
"ui_debug_section/option_continuous_repaint": "ui/settings_sections/general_section.json",
|
||||||
|
"ui_debug_section/option_show_paint_rects": "ui/settings_sections/general_section.json",
|
||||||
|
"ui_debug_section/option_show_element_aabb": "ui/settings_sections/general_section.json",
|
||||||
|
"ui_debug_section/option_emulate_touch_events": "ui/settings_sections/general_section.json",
|
||||||
|
"ui_debug_section/end_of_debug_data_divider": "ui/settings_sections/general_section.json",
|
||||||
|
"ui_debug_section/end_of_debug_data_divider/section_divider": "ui/settings_sections/general_section.json",
|
||||||
|
"ui_debug_section/end_of_debug_data_spacer": "ui/settings_sections/general_section.json",
|
||||||
"ui_debug_section/option_slider_drag_dwell": "ui/settings_sections/general_section.json",
|
"ui_debug_section/option_slider_drag_dwell": "ui/settings_sections/general_section.json",
|
||||||
"ui_debug_section/option_slider_stack_splitting": "ui/settings_sections/general_section.json",
|
"ui_debug_section/option_slider_stack_splitting": "ui/settings_sections/general_section.json",
|
||||||
"ui_debug_section/reset_render_distance_warning_modal_label": "ui/settings_sections/general_section.json",
|
"ui_debug_section/reset_render_distance_warning_modal_label": "ui/settings_sections/general_section.json",
|
||||||
|
|
@ -13590,6 +13636,7 @@ export const paths = {
|
||||||
"option_custom_control": "ui/settings_sections/settings_common.json",
|
"option_custom_control": "ui/settings_sections/settings_common.json",
|
||||||
"option_info_label": "ui/settings_sections/settings_common.json",
|
"option_info_label": "ui/settings_sections/settings_common.json",
|
||||||
"dynamic_dialog_screen": "ui/settings_sections/settings_common.json",
|
"dynamic_dialog_screen": "ui/settings_sections/settings_common.json",
|
||||||
|
"dynamic_dialog_fullscreen": "ui/settings_sections/settings_common.json",
|
||||||
"settings_content": "ui/settings_sections/settings_common.json",
|
"settings_content": "ui/settings_sections/settings_common.json",
|
||||||
"settings_content/background": "ui/settings_sections/settings_common.json",
|
"settings_content/background": "ui/settings_sections/settings_common.json",
|
||||||
"settings_content/stack_panel": "ui/settings_sections/settings_common.json",
|
"settings_content/stack_panel": "ui/settings_sections/settings_common.json",
|
||||||
|
|
@ -13616,10 +13663,17 @@ export const paths = {
|
||||||
"dialog_content/selector_area": "ui/settings_sections/settings_common.json",
|
"dialog_content/selector_area": "ui/settings_sections/settings_common.json",
|
||||||
"dialog_content/content_area": "ui/settings_sections/settings_common.json",
|
"dialog_content/content_area": "ui/settings_sections/settings_common.json",
|
||||||
"dialog_content/section_divider": "ui/settings_sections/settings_common.json",
|
"dialog_content/section_divider": "ui/settings_sections/settings_common.json",
|
||||||
|
"dialog_content_fullscreen": "ui/settings_sections/settings_common.json",
|
||||||
|
"dialog_content_fullscreen/dialog_titles": "ui/settings_sections/settings_common.json",
|
||||||
|
"dialog_content_fullscreen/selector_area": "ui/settings_sections/settings_common.json",
|
||||||
|
"dialog_content_fullscreen/content_area": "ui/settings_sections/settings_common.json",
|
||||||
|
"dialog_content_fullscreen/section_divider": "ui/settings_sections/settings_common.json",
|
||||||
"selector_group_label": "ui/settings_sections/settings_common.json",
|
"selector_group_label": "ui/settings_sections/settings_common.json",
|
||||||
"scrollable_selector_area_content": "ui/settings_sections/settings_common.json",
|
"scrollable_selector_area_content": "ui/settings_sections/settings_common.json",
|
||||||
"selector_area": "ui/settings_sections/settings_common.json",
|
"selector_area": "ui/settings_sections/settings_common.json",
|
||||||
"selector_area/scrolling_panel": "ui/settings_sections/settings_common.json",
|
"selector_area/scrolling_panel": "ui/settings_sections/settings_common.json",
|
||||||
|
"selector_area_no_scroll": "ui/settings_sections/settings_common.json",
|
||||||
|
"selector_area_no_scroll/scrolling_panel": "ui/settings_sections/settings_common.json",
|
||||||
"content_area": "ui/settings_sections/settings_common.json",
|
"content_area": "ui/settings_sections/settings_common.json",
|
||||||
"content_area/control": "ui/settings_sections/settings_common.json",
|
"content_area/control": "ui/settings_sections/settings_common.json",
|
||||||
"content_area/control/header_panel": "ui/settings_sections/settings_common.json",
|
"content_area/control/header_panel": "ui/settings_sections/settings_common.json",
|
||||||
|
|
@ -13629,6 +13683,7 @@ export const paths = {
|
||||||
"content_area/control/footer_panel/content": "ui/settings_sections/settings_common.json",
|
"content_area/control/footer_panel/content": "ui/settings_sections/settings_common.json",
|
||||||
"section_divider": "ui/settings_sections/settings_common.json",
|
"section_divider": "ui/settings_sections/settings_common.json",
|
||||||
"screen_base": "ui/settings_sections/settings_common.json",
|
"screen_base": "ui/settings_sections/settings_common.json",
|
||||||
|
"screen_base_fullscreen": "ui/settings_sections/settings_common.json",
|
||||||
},
|
},
|
||||||
"world_section": {
|
"world_section": {
|
||||||
"selector_pane_content": "ui/settings_sections/world_section.json",
|
"selector_pane_content": "ui/settings_sections/world_section.json",
|
||||||
|
|
@ -15110,6 +15165,25 @@ export const paths = {
|
||||||
"new_offer_icon": "ui/store_common.json",
|
"new_offer_icon": "ui/store_common.json",
|
||||||
"status_new_offer_icon": "ui/store_common.json",
|
"status_new_offer_icon": "ui/store_common.json",
|
||||||
"update_balloon_icon": "ui/store_common.json",
|
"update_balloon_icon": "ui/store_common.json",
|
||||||
|
"badge_overlay_panel": "ui/store_common.json",
|
||||||
|
"badge_overlay_panel/top": "ui/store_common.json",
|
||||||
|
"badge_overlay_panel/bottom": "ui/store_common.json",
|
||||||
|
"badge_overlay_stack": "ui/store_common.json",
|
||||||
|
"badge_overlay_stack/left_badge": "ui/store_common.json",
|
||||||
|
"badge_overlay_stack/padding": "ui/store_common.json",
|
||||||
|
"badge_overlay_stack/right_badge": "ui/store_common.json",
|
||||||
|
"content_card_tail_image": "ui/store_common.json",
|
||||||
|
"content_card_badge": "ui/store_common.json",
|
||||||
|
"content_card_badge/leftTail": "ui/store_common.json",
|
||||||
|
"content_card_badge/background": "ui/store_common.json",
|
||||||
|
"content_card_badge/background/outline": "ui/store_common.json",
|
||||||
|
"content_card_badge/background/outline/badgeStackPanel": "ui/store_common.json",
|
||||||
|
"content_card_badge/background/outline/badgeStackPanel/paddingLeft": "ui/store_common.json",
|
||||||
|
"content_card_badge/background/outline/badgeStackPanel/badgeIcon": "ui/store_common.json",
|
||||||
|
"content_card_badge/background/outline/badgeStackPanel/paddingMiddle": "ui/store_common.json",
|
||||||
|
"content_card_badge/background/outline/badgeStackPanel/badgeText": "ui/store_common.json",
|
||||||
|
"content_card_badge/background/outline/badgeStackPanel/paddingRight": "ui/store_common.json",
|
||||||
|
"content_card_badge/rightTail": "ui/store_common.json",
|
||||||
"icon_overlay_panel": "ui/store_common.json",
|
"icon_overlay_panel": "ui/store_common.json",
|
||||||
"icon_overlay_panel/icon_overlay_position_factory": "ui/store_common.json",
|
"icon_overlay_panel/icon_overlay_position_factory": "ui/store_common.json",
|
||||||
"icon_overlay_position_factory": "ui/store_common.json",
|
"icon_overlay_position_factory": "ui/store_common.json",
|
||||||
|
|
@ -15689,6 +15763,7 @@ export const paths = {
|
||||||
"store_offer_grid_item/frame/key_art": "ui/store_common.json",
|
"store_offer_grid_item/frame/key_art": "ui/store_common.json",
|
||||||
"store_offer_grid_item/frame/key_art/key_art_frame": "ui/store_common.json",
|
"store_offer_grid_item/frame/key_art/key_art_frame": "ui/store_common.json",
|
||||||
"store_offer_grid_item/frame/key_art/csb_plus_expiration_banner": "ui/store_common.json",
|
"store_offer_grid_item/frame/key_art/csb_plus_expiration_banner": "ui/store_common.json",
|
||||||
|
"store_offer_grid_item/frame/key_art/badge_overlay_panel": "ui/store_common.json",
|
||||||
"store_offer_grid_item/frame/progress_loading": "ui/store_common.json",
|
"store_offer_grid_item/frame/progress_loading": "ui/store_common.json",
|
||||||
"store_offer_grid_item/frame/progress": "ui/store_common.json",
|
"store_offer_grid_item/frame/progress": "ui/store_common.json",
|
||||||
"store_offer_grid_item/frame/durable_offer_info_panel": "ui/store_common.json",
|
"store_offer_grid_item/frame/durable_offer_info_panel": "ui/store_common.json",
|
||||||
|
|
@ -15742,7 +15817,6 @@ export const paths = {
|
||||||
"store_offer_grid_factory": "ui/store_common.json",
|
"store_offer_grid_factory": "ui/store_common.json",
|
||||||
"non_collection_item_horizontal_padding": "ui/store_common.json",
|
"non_collection_item_horizontal_padding": "ui/store_common.json",
|
||||||
"horizontal_store_offer_row_factory": "ui/store_common.json",
|
"horizontal_store_offer_row_factory": "ui/store_common.json",
|
||||||
"recently_viewed_row_panel": "ui/store_common.json",
|
|
||||||
"static_offer_row_panel": "ui/store_common.json",
|
"static_offer_row_panel": "ui/store_common.json",
|
||||||
"static_offer_row_panel/store_row_dropdown_panel": "ui/store_common.json",
|
"static_offer_row_panel/store_row_dropdown_panel": "ui/store_common.json",
|
||||||
"static_offer_row_panel/store_row_dropdown_panel/store_row_section_panel": "ui/store_common.json",
|
"static_offer_row_panel/store_row_dropdown_panel/store_row_section_panel": "ui/store_common.json",
|
||||||
|
|
@ -18005,6 +18079,9 @@ export const paths = {
|
||||||
"container_gamepad_helpers/buttons/gamepad_helper_y": "ui/ui_common.json",
|
"container_gamepad_helpers/buttons/gamepad_helper_y": "ui/ui_common.json",
|
||||||
"container_gamepad_helpers/buttons/gamepad_helper_b": "ui/ui_common.json",
|
"container_gamepad_helpers/buttons/gamepad_helper_b": "ui/ui_common.json",
|
||||||
"container_gamepad_helpers/buffer_panel_right": "ui/ui_common.json",
|
"container_gamepad_helpers/buffer_panel_right": "ui/ui_common.json",
|
||||||
|
"gamepad_helper_bumpers": "ui/ui_common.json",
|
||||||
|
"gamepad_helper_bumpers/gamepad_helper_left_bumper": "ui/ui_common.json",
|
||||||
|
"gamepad_helper_bumpers/gamepad_helper_right_bumper": "ui/ui_common.json",
|
||||||
"tabs_left_gamepad_helpers": "ui/ui_common.json",
|
"tabs_left_gamepad_helpers": "ui/ui_common.json",
|
||||||
"tabs_left_gamepad_helpers/gamepad_helper_left_bumper": "ui/ui_common.json",
|
"tabs_left_gamepad_helpers/gamepad_helper_left_bumper": "ui/ui_common.json",
|
||||||
"tabs_left_gamepad_helpers/gamepad_helper_left_trigger": "ui/ui_common.json",
|
"tabs_left_gamepad_helpers/gamepad_helper_left_trigger": "ui/ui_common.json",
|
||||||
|
|
@ -18063,6 +18140,8 @@ export const paths = {
|
||||||
"normal_button": "ui/ui_common.json",
|
"normal_button": "ui/ui_common.json",
|
||||||
"normal_stroke_button": "ui/ui_common.json",
|
"normal_stroke_button": "ui/ui_common.json",
|
||||||
"section_heading_label": "ui/ui_common.json",
|
"section_heading_label": "ui/ui_common.json",
|
||||||
|
"center_fold": "ui/ui_common.json",
|
||||||
|
"center_fold/center_bg": "ui/ui_common.json",
|
||||||
"section_divider": "ui/ui_common.json",
|
"section_divider": "ui/ui_common.json",
|
||||||
"section_divider/padding1": "ui/ui_common.json",
|
"section_divider/padding1": "ui/ui_common.json",
|
||||||
"section_divider/divider_parent": "ui/ui_common.json",
|
"section_divider/divider_parent": "ui/ui_common.json",
|
||||||
|
|
@ -18145,6 +18224,18 @@ export const paths = {
|
||||||
"item_lock_notification/notification_background_image": "ui/ui_common.json",
|
"item_lock_notification/notification_background_image": "ui/ui_common.json",
|
||||||
"item_lock_notification/notification_background_image/notification_text_label": "ui/ui_common.json",
|
"item_lock_notification/notification_background_image/notification_text_label": "ui/ui_common.json",
|
||||||
"item_lock_notification_factory": "ui/ui_common.json",
|
"item_lock_notification_factory": "ui/ui_common.json",
|
||||||
|
"layout_toggle_content": "ui/ui_common.json",
|
||||||
|
"layout_toggle_content/image": "ui/ui_common.json",
|
||||||
|
"layout_toggle_content/icon": "ui/ui_common.json",
|
||||||
|
"layout_template_toggle": "ui/ui_common.json",
|
||||||
|
"layout_toggle": "ui/ui_common.json",
|
||||||
|
"creative_layout_toggle": "ui/ui_common.json",
|
||||||
|
"recipe_book_layout_toggle": "ui/ui_common.json",
|
||||||
|
"survival_layout_toggle": "ui/ui_common.json",
|
||||||
|
"furnace_recipe_book_layout_toggle": "ui/ui_common.json",
|
||||||
|
"furnace_survival_layout_toggle": "ui/ui_common.json",
|
||||||
|
"crafting_root_input_panel": "ui/ui_common.json",
|
||||||
|
"toolbar_background_image": "ui/ui_common.json",
|
||||||
"empty_panel_size_y_0": "ui/ui_common.json",
|
"empty_panel_size_y_0": "ui/ui_common.json",
|
||||||
"scroll_background_and_viewport": "ui/ui_common.json",
|
"scroll_background_and_viewport": "ui/ui_common.json",
|
||||||
"scroll_background_and_viewport/background": "ui/ui_common.json",
|
"scroll_background_and_viewport/background": "ui/ui_common.json",
|
||||||
|
|
@ -18374,6 +18465,11 @@ export const paths = {
|
||||||
"legacy_pocket_close_button/pressed": "ui/ui_common.json",
|
"legacy_pocket_close_button/pressed": "ui/ui_common.json",
|
||||||
"info_icon": "ui/ui_common.json",
|
"info_icon": "ui/ui_common.json",
|
||||||
"error_glyph": "ui/ui_common.json",
|
"error_glyph": "ui/ui_common.json",
|
||||||
|
"creative_icon": "ui/ui_common.json",
|
||||||
|
"inventory_icon": "ui/ui_common.json",
|
||||||
|
"recipe_book_icon": "ui/ui_common.json",
|
||||||
|
"tab_icon_image": "ui/ui_common.json",
|
||||||
|
"search_icon": "ui/ui_common.json",
|
||||||
"service_repo_image_panel": "ui/ui_common.json",
|
"service_repo_image_panel": "ui/ui_common.json",
|
||||||
"service_repo_image_panel/service_repo_image": "ui/ui_common.json",
|
"service_repo_image_panel/service_repo_image": "ui/ui_common.json",
|
||||||
"service_repo_image_panel/progress_loading": "ui/ui_common.json",
|
"service_repo_image_panel/progress_loading": "ui/ui_common.json",
|
||||||
|
|
|
||||||
Reference in a new issue