bump for minecraft v26

This commit is contained in:
Asaki Yuki 2026-02-12 20:47:59 +07:00
parent bd91adc83c
commit 796b89636d
8 changed files with 121 additions and 233 deletions

View file

@ -6,7 +6,7 @@ import { GenBinding } from "./types.js"
export function intToBin(input: string) {
const { abs, negabs } = defaultFunctions
const ret = RandomBindingString(16)
const ret = RandomBindingString()
const bindings: GenBinding[] = []
// negative bit
@ -22,7 +22,7 @@ export function intToBin(input: string) {
}
export function binToInt(input: Binding) {
const ret = RandomBindingString(16)
const ret = RandomBindingString()
const bindings: GenBinding[] = []
const nevBind = (input + "0") as Binding

View file

@ -1,17 +1,14 @@
import { RandomBindingString } from "../../components/Utils.js"
import { Expression, GenBinding } from "./types.js"
type Callback = (...args: Expression[]) => {
type CallbackRet = {
genBindings?: GenBinding[]
value: Expression
}
type Callback = (...args: Expression[]) => CallbackRet
export const FunctionMap = new Map<string, Callback>()
function callFn(name: string, ...args: Expression[]) {
return FunctionMap.get(name)!(...args)
}
export const defaultFunctions = {
/**
* Returns the absolute value of a number (the value without regard to whether it is positive or negative). For example, the absolute value of -5 is the same as the absolute value of 5.
@ -19,7 +16,7 @@ export const defaultFunctions = {
* @returns
*/
abs: number => {
const randomBinding = RandomBindingString(16)
const randomBinding = RandomBindingString()
return {
genBindings: [{ source: `((-1 + (${number} > 0) * 2) * ${number})`, target: randomBinding }],
value: randomBinding,
@ -32,7 +29,7 @@ export const defaultFunctions = {
* @returns
*/
negabs: number => {
const randomBinding = RandomBindingString(16)
const randomBinding = RandomBindingString()
return {
genBindings: [{ source: `((-1 + (${number} < 0) * 2) * ${number})`, target: randomBinding }],
value: randomBinding,
@ -45,42 +42,47 @@ export const defaultFunctions = {
* @returns
*/
new: expression => {
const randomBinding = RandomBindingString(16)
const randomBinding = RandomBindingString()
return {
genBindings: [{ source: expression, target: randomBinding }],
value: randomBinding,
}
},
/**
* Returns the square root of a number.
* @param number
* @returns
*/
sqrt: number => {
const rtn = RandomBindingString(16),
$1 = RandomBindingString(16),
$2 = RandomBindingString(16)
const { genBindings: absValue, value: absRtn } = callFn("abs", number)
sqrt: n => {
const notAllow = RandomBindingString()
const g = RandomBindingString()
const h = RandomBindingString()
const ret = RandomBindingString()
return {
genBindings: [
{
source: `${number} * 100 / 2`,
target: $1,
},
...absValue!,
{
source: `${absRtn} > 1`,
target: $2,
source: `${n} / 2`,
target: g,
},
{
source: `(${number} < 0) * -1 + (${number} > -1) * (${$2} * ((${rtn} + ${number} / ${rtn}) / 2) + (not ${$2}) * ${rtn})`,
target: rtn,
source: `(${notAllow} * -1)`,
target: ret,
},
],
value: rtn,
value: ret,
}
},
cache_value: (cache_binding, override_binding, is_read) => {
return {
value: `((${is_read} * ${cache_binding}) + ((not ${is_read}) * ${override_binding}))`,
}
},
vector_length: (x, y, z) => {
const newBind = defaultFunctions.new(`${y} * ${y} + ${x} * ${x} + ${z} * ${z}`) as CallbackRet
const sqrtBind = defaultFunctions.sqrt(newBind.value) as CallbackRet
return {
genBindings: [newBind.genBindings![0], ...sqrtBind.genBindings!],
value: sqrtBind.value,
}
},
@ -116,7 +118,7 @@ export const defaultFunctions = {
* @returns
*/
bind: (value, bait) => {
const ret = RandomBindingString(16)
const ret = RandomBindingString()
if (!bait) {
throw new Error("Bait is required")
@ -134,7 +136,7 @@ export const defaultFunctions = {
* @returns
*/
int: input => {
const ret = RandomBindingString(16)
const ret = RandomBindingString()
return {
genBindings: [{ source: `${input}`, target: ret }],
value: ret,

View file

@ -31,7 +31,7 @@ export class Parser {
static intToBin(input: string) {
const bindings: GenBinding[] = []
const rtn = RandomBindingString(16)
const rtn = RandomBindingString()
for (let i = 0; i < 30; i++) {
bindings.push({
@ -170,7 +170,7 @@ export class Parser {
return (left = this.cache.get(cacheStr) as Expression)
}
const ret = RandomBindingString(16)
const ret = RandomBindingString()
this.genBindings.push({
source: `(${left} - (${left} / ${right} * ${right}))`,

View file

@ -89,7 +89,7 @@ export function ResolveBinding(cache: Map<string, unknown>, ...bindings: Binding
value: cache.get(mapkey) as string,
}
} else {
const ret = RandomBindingString(16)
const ret = RandomBindingString()
cache.set(mapkey, ret)
result.push({
@ -163,7 +163,7 @@ export function RandomString(length: number, base: number = 32) {
return out.join("")
}
export function RandomBindingString(length: number, base: number = 32): Binding {
export function RandomBindingString(length: number = 16, base: number = 32): Binding {
return `#${RandomString(length, base)}`
}

View file

@ -557,7 +557,6 @@ export enum ItemAuxID {
GOLDEN_BOOTS = 25296896,
GOLDEN_CARROT = 20447232,
GOLDEN_CHESTPLATE = 25165824,
GOLDEN_DANDELION = -71499776,
GOLDEN_HELMET = 25100288,
GOLDEN_HOE = 23920640,
GOLDEN_HORSE_ARMOR = 37421056,

View file

@ -17,7 +17,8 @@ export interface Control {
contained?: Value<boolean>
draggable?: Value<boolean>
follows_cursor?: Value<boolean>
property_bags?: Value<PropertyBags>
property_bag?: Value<PropertyBags>
property_bag_for_children?: Value<PropertyBags>
[key: Binding]: Value<any>
[key: Variable]: Value<any>
}

View file

@ -1330,20 +1330,10 @@ export type ChatType = {
"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/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 },
"keyboard_button": { type: T.BUTTON, children: string },
"chat_settings_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/text": { type: T.LABEL, children: string },
"message_tts_wrapper": { type: T.PANEL, children: string },
@ -1399,11 +1389,10 @@ 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/paste_button": { type: T.BUTTON, children: string },
"chat_screen": { type: T.SCREEN, children: string },
"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": { type: T.PANEL, children: 'messages_panel' | 'chat_bottom_panel' | 'chat_top_panel' | 'autocomplete_commands_panel' | 'host_main_panel' | 'popup_factory' },
"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_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/host_main_panel": { type: T.PANEL, children: string },
"chat_screen_content/popup_factory": { type: T.FACTORY, children: string },
@ -6516,8 +6505,7 @@ export type InviteType = {
"friends_category/padding": { type: T.PANEL, children: string },
"frame_label": { type: T.LABEL, children: string },
"friend_panel": { type: T.PANEL, children: string },
"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": { 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/message": { type: T.PANEL, children: 'frame_label' },
"scrolling_content_stack/message/frame_label": { type: T.LABEL, children: string },
"scrolling_content_stack/online_platform": { type: T.PANEL, children: 'frame_label' },
@ -6545,12 +6533,6 @@ export type InviteType = {
"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/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/progress_loading_bars": { type: T.IMAGE, children: string },
"progress_bar_and_scrolling_content_panel/invite_scrolling_area": { type: T.STACK_PANEL, children: string },
@ -7541,35 +7523,16 @@ export type PauseType = {
"invite_players_button": { type: T.BUTTON, children: string },
"buy_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_icon_button": { type: T.PANEL, children: 'feedback_button' | 'tooltip_trigger' },
"feedback_icon_button": { type: T.PANEL, children: 'feedback_button' },
"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/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": { 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_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_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_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 },
@ -7596,14 +7559,14 @@ export type PauseType = {
"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/small_settings_button": { type: T.INPUT_PANEL, children: 'small_settings_btn' },
"smaller_buttons_panel/stacked_column/small_settings_button/small_settings_btn": { type: T.PANEL, children: string },
"smaller_buttons_panel/stacked_column/small_settings_button/small_settings_btn": { type: T.BUTTON, 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/small_achievements_btn": { type: T.PANEL, children: string },
"smaller_buttons_panel/stacked_column/small_achievements_button/small_achievements_btn": { type: T.BUTTON, 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/take_screenshot_button": { type: T.PANEL, children: string },
"smaller_buttons_panel/stacked_column/take_screenshot_btn/take_screenshot_gamepad_button": { type: T.PANEL, children: string },
"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_gamepad_button": { type: T.BUTTON, 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/padding_bottom": { type: T.PANEL, children: string },
@ -8077,16 +8040,18 @@ 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/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/info": { type: T.STACK_PANEL, children: 'summary_title_and_author_panel' | 'pad_fill' | 'info_buttons_factory' },
"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/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/info_buttons_factory": { type: T.STACK_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/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 },
"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 },
"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 },
@ -8124,17 +8089,26 @@ export type PdpType = {
"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_mashup_hover_popup": { type: T.IMAGE, children: string },
"mashup_glyph_tooltip_content": { type: T.STACK_PANEL, children: 'mashup_text_row' | 'mashup_line_two' | 'basic_vertical_glyphs' },
"mashup_glyph_tooltip_content": { type: T.STACK_PANEL, children: 'mashup_text_row' | 'mashup_line_two' | 'offset_panel' },
"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/mashup_line_one": { type: T.PANEL, children: string },
"mashup_glyph_tooltip_content/mashup_line_two": { type: T.PANEL, children: string },
"mashup_glyph_tooltip_content/basic_vertical_glyphs": { type: T.STACK_PANEL, children: string },
"mashup_glyph_tooltip_content/offset_panel": { type: T.PANEL, children: 'basic_vertical_glyph_section_panel' },
"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_skin": { 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_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/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 },
@ -10059,11 +10033,6 @@ export type ProgressType = {
"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/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/gamepad_helper_a": { type: T.STACK_PANEL, children: string },
"world_image": { type: T.IMAGE, children: string },
@ -10145,23 +10114,18 @@ export type ProgressType = {
"progress_content_panel/gamepad_helpers": { type: T.PANEL, children: string },
"modal_screen_content": { type: T.PANEL, children: 'modal_progress_panel' },
"modal_screen_content/modal_progress_panel": { type: T.PANEL, children: string },
"world_modal_progress_panel": { type: T.PANEL, children: 'common_panel' | 'content_wrapper' },
"world_modal_progress_panel": { type: T.PANEL, children: 'common_panel' | 'base_content' | 'inside_content' },
"world_modal_progress_panel/common_panel": { type: T.PANEL, children: string },
"world_modal_progress_panel/content_wrapper": { type: T.PANEL, children: 'base_content' | 'inside_content' },
"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/content_wrapper/base_content/vertical_title_padding": { type: T.PANEL, children: string },
"world_modal_progress_panel/content_wrapper/base_content/title_text_panel": { type: T.PANEL, children: 'progress_title_text' },
"world_modal_progress_panel/content_wrapper/base_content/title_text_panel/progress_title_text": { type: T.LABEL, children: string },
"world_modal_progress_panel/content_wrapper/base_content/vertical_text_padding": { type: T.PANEL, children: string },
"world_modal_progress_panel/content_wrapper/base_content/progress_text_panel": { type: T.PANEL, children: 'progress_bar_text' },
"world_modal_progress_panel/content_wrapper/base_content/progress_text_panel/progress_bar_text": { type: T.LABEL, 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/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 },
"world_modal_progress_panel/base_content": { type: T.PANEL, children: 'progress_title_text' | 'progress_bar_text' },
"world_modal_progress_panel/base_content/progress_title_text": { type: T.LABEL, children: string },
"world_modal_progress_panel/base_content/progress_bar_text": { type: T.LABEL, 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/inside_content/loading_bar_panel": { type: T.PANEL, children: 'fancy_progress_loading_bars' | 'progress_loading_bars' },
"world_modal_progress_panel/inside_content/loading_bar_panel/fancy_progress_loading_bars": { 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/inside_content/vertical_padding": { type: T.PANEL, children: string },
"world_modal_progress_panel/inside_content/modal_button_panel": { type: T.UNKNOWN, children: string },
"world_modal_progress_panel/inside_content/vertical_padding_2": { type: T.PANEL, children: string },
"cloud_upload_panel": { type: T.PANEL, children: 'common_panel' | 'base_content' },
"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' },
@ -12638,7 +12602,7 @@ export type ControlsSectionType = {
export type GeneralSectionType = {
"general_button": { type: T.PANEL, 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' | '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": { 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/network_label_header": { type: T.LABEL, children: string },
"general_tab_section/paddingCrossPlatform": { type: T.PANEL, children: string },
@ -12664,7 +12628,6 @@ export type GeneralSectionType = {
"general_tab_section/pause_label_header": { type: T.LABEL, 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_menu_on_focus_lost": { 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/paddingDividerSustainability": { type: T.PANEL, children: string },
@ -12853,13 +12816,6 @@ 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/port_input": { 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/section_panel_1": { type: T.PANEL, children: 'section_divider' },
"diagnostics_toggles_panel/section_panel_1/section_divider": { type: T.IMAGE, children: string },
@ -12906,13 +12862,12 @@ export type GeneralSectionType = {
"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": { 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' | 'editor_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' | 'device_info_toggles_panel' | 'content_log_panel' },
"creator_section/editor_toggle": { 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/diagnostics_toggle_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/content_log_panel": { type: T.STACK_PANEL, children: string },
"video_button": { type: T.PANEL, children: string },
@ -12926,7 +12881,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_hover": { type: T.IMAGE, 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' | 'texture_streaming_toggle' | 'spacer_37' | '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' | '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/graphics_mode": { type: T.PANEL, children: string },
"video_section/advanced_graphics_options_panel/graphics_quality_preset_mode_dropdown_content": { type: T.PANEL, children: string },
@ -13029,8 +12984,6 @@ export type GeneralSectionType = {
"video_section/spacer_35": { 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/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 },
"max_framerate_slider": { type: T.PANEL, children: 'option_generic_core' },
"max_framerate_slider/option_generic_core": { type: T.STACK_PANEL, children: string },
@ -13275,7 +13228,7 @@ export type GeneralSectionType = {
"override_version_panel/patch_version_text_box": { type: T.PANEL, 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/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": { 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/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/override_treatment_options_panel": { type: T.STACK_PANEL, children: 'apply_treatments_button' | 'add_treatments_panel' | 'treatment_cache_management_panel' },
@ -13289,9 +13242,13 @@ 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/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/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/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/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/spacer_1": { type: T.PANEL, children: string },
"debug_override_configurations_panel": { type: T.PANEL, children: 'override_configurations_panel_background' },
@ -13410,7 +13367,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 },
"debug_button": { 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_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": { 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_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_spacer": { type: T.PANEL, children: string },
"debug_section/option_toggle_dev_console_button_0": { type: T.PANEL, children: string },
@ -13493,7 +13450,6 @@ export type GeneralSectionType = {
"debug_section/reset_authentication_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_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/padding_graphics_options": { type: T.PANEL, children: string },
@ -13590,7 +13546,7 @@ export type GeneralSectionType = {
"new_bed_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 },
"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": { 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/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_label_spacer": { type: T.PANEL, children: string },
@ -13651,18 +13607,6 @@ export type GeneralSectionType = {
"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_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_stack_splitting": { type: T.PANEL, children: string },
"ui_debug_section/reset_render_distance_warning_modal_label": { type: T.LABEL, children: string },
@ -14004,7 +13948,6 @@ export type SettingsCommonType = {
"option_custom_control": { type: T.PANEL, children: string },
"option_info_label": { type: T.PANEL, 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/background": { type: T.IMAGE, children: string },
"settings_content/stack_panel": { type: T.STACK_PANEL, children: 'content_panel' },

View file

@ -1090,20 +1090,10 @@ export const paths = {
"keyboard_image_panel": "ui/chat_screen.json",
"keyboard_image_panel/keyboard_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",
"keyboard_button": "ui/chat_screen.json",
"chat_settings_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/text": "ui/chat_screen.json",
"message_tts_wrapper": "ui/chat_screen.json",
@ -1163,7 +1153,6 @@ export const paths = {
"chat_screen_content/messages_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/new_messages_button": "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/popup_factory": "ui/chat_screen.json",
@ -6212,7 +6201,6 @@ export const paths = {
"frame_label": "ui/invite_screen.json",
"friend_panel": "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/frame_label": "ui/invite_screen.json",
"scrolling_content_stack/online_platform": "ui/invite_screen.json",
@ -6240,12 +6228,6 @@ export const paths = {
"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/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/progress_loading_bars": "ui/invite_screen.json",
"progress_bar_and_scrolling_content_panel/invite_scrolling_area": "ui/invite_screen.json",
@ -7216,35 +7198,16 @@ export const paths = {
"invite_players_button": "ui/pause_screen.json",
"buy_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_icon_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/button_y": "ui/pause_screen.json",
"take_screenshot_gamepad_button_content/take_screenshot_icon": "ui/pause_screen.json",
"take_screenshot_gamepad_button": "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_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_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_content": "ui/pause_screen.json",
"pause_screen_content/pause_screen_main_panels": "ui/pause_screen.json",
@ -7754,13 +7717,15 @@ export const paths = {
"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/pad_fill": "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": "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",
"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",
"title_and_author_panel": "ui/pdp_screen.json",
"title_and_author_panel/title_panel": "ui/pdp_screen.json",
@ -7803,12 +7768,21 @@ export const paths = {
"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_line_two": "ui/pdp_screen.json",
"mashup_glyph_tooltip_content/basic_vertical_glyphs": "ui/pdp_screen.json",
"mashup_glyph_tooltip_content/offset_panel": "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_skin": "ui/pdp_screen.json",
"glyph_section_resource_pack": "ui/pdp_screen.json",
"glyph_section_world": "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/top_interact_button_stack": "ui/pdp_screen.json",
"summary_text_panel/top_interact_button_stack/top_interact": "ui/pdp_screen.json",
@ -9722,11 +9696,6 @@ export const paths = {
"modal_button_panel_with_retry/retry_button": "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_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/gamepad_helper_a": "ui/progress_screen.json",
"world_image": "ui/progress_screen.json",
@ -9810,21 +9779,16 @@ export const paths = {
"modal_screen_content/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/content_wrapper": "ui/progress_screen.json",
"world_modal_progress_panel/content_wrapper/base_content": "ui/progress_screen.json",
"world_modal_progress_panel/content_wrapper/base_content/vertical_title_padding": "ui/progress_screen.json",
"world_modal_progress_panel/content_wrapper/base_content/title_text_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/content_wrapper/base_content/vertical_text_padding": "ui/progress_screen.json",
"world_modal_progress_panel/content_wrapper/base_content/progress_text_panel": "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/content_wrapper/inside_content": "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",
"world_modal_progress_panel/base_content": "ui/progress_screen.json",
"world_modal_progress_panel/base_content/progress_title_text": "ui/progress_screen.json",
"world_modal_progress_panel/base_content/progress_bar_text": "ui/progress_screen.json",
"world_modal_progress_panel/inside_content": "ui/progress_screen.json",
"world_modal_progress_panel/inside_content/loading_bar_panel": "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/inside_content/loading_bar_panel/progress_loading_bars": "ui/progress_screen.json",
"world_modal_progress_panel/inside_content/vertical_padding": "ui/progress_screen.json",
"world_modal_progress_panel/inside_content/modal_button_panel": "ui/progress_screen.json",
"world_modal_progress_panel/inside_content/vertical_padding_2": "ui/progress_screen.json",
"cloud_upload_panel": "ui/progress_screen.json",
"cloud_upload_panel/common_panel": "ui/progress_screen.json",
"cloud_upload_panel/base_content": "ui/progress_screen.json",
@ -12298,7 +12262,6 @@ export const paths = {
"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/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/link_button": "ui/settings_sections/general_section.json",
"general_tab_section/paddingDividerSustainability": "ui/settings_sections/general_section.json",
@ -12487,13 +12450,6 @@ 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/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",
"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/section_panel_1": "ui/settings_sections/general_section.json",
"diagnostics_toggles_panel/section_panel_1/section_divider": "ui/settings_sections/general_section.json",
@ -12546,7 +12502,6 @@ export const paths = {
"creator_section/debugger_toggles_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/editor_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",
"video_button": "ui/settings_sections/general_section.json",
@ -12663,8 +12618,6 @@ export const paths = {
"video_section/spacer_35": "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/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",
"max_framerate_slider": "ui/settings_sections/general_section.json",
"max_framerate_slider/option_generic_core": "ui/settings_sections/general_section.json",
@ -12923,9 +12876,13 @@ 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/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/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/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/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/spacer_1": "ui/settings_sections/general_section.json",
"debug_override_configurations_panel": "ui/settings_sections/general_section.json",
@ -13127,7 +13084,6 @@ export const paths = {
"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_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/padding_graphics_options": "ui/settings_sections/general_section.json",
@ -13285,18 +13241,6 @@ export const paths = {
"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_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_stack_splitting": "ui/settings_sections/general_section.json",
"ui_debug_section/reset_render_distance_warning_modal_label": "ui/settings_sections/general_section.json",
@ -13636,7 +13580,6 @@ export const paths = {
"option_custom_control": "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_fullscreen": "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/stack_panel": "ui/settings_sections/settings_common.json",