asajs 4.0.13 → 4.0.15-indev
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/js/analyzer/custom-ui.js +1 -0
- package/dist/js/analyzer/generate-ui-defs.js +12 -0
- package/dist/js/analyzer/rebase.js +29 -0
- package/dist/js/analyzer/rebaseUIFiles.js +42 -0
- package/dist/js/analyzer/remove-not-ui.js +29 -0
- package/dist/js/analyzer/utils.js +18 -0
- package/dist/js/analyzer/vanilladefs.js +143588 -0
- package/dist/js/components/UI.js +1 -1
- package/dist/js/components/Utils.js +4 -3
- package/dist/js/index.js +1 -0
- package/dist/js/types/enums/Items.js +1 -0
- package/dist/js/types/vanilla/paths.js +208 -19472
- package/dist/types/analyzer/custom-ui.d.ts +1 -0
- package/dist/types/analyzer/generate-ui-defs.d.ts +1 -0
- package/dist/types/analyzer/rebase.d.ts +1 -0
- package/dist/types/analyzer/rebaseUIFiles.d.ts +1 -0
- package/dist/types/analyzer/remove-not-ui.d.ts +1 -0
- package/dist/types/analyzer/utils.d.ts +3 -0
- package/dist/types/analyzer/vanilladefs.d.ts +16 -0
- package/dist/types/components/AnimationKeyframe.d.ts +4 -4
- package/dist/types/components/UI.d.ts +1 -1
- package/dist/types/index.d.ts +1 -0
- package/dist/types/types/enums/Items.d.ts +1 -0
- package/dist/types/types/vanilla/intellisense.d.ts +564 -368
- package/dist/types/types/vanilla/paths.d.ts +208 -19472
- package/package.json +4 -3
|
@@ -4461,6 +4461,30 @@ export type ChatType = {
|
|
|
4461
4461
|
type: T.IMAGE;
|
|
4462
4462
|
children: string;
|
|
4463
4463
|
};
|
|
4464
|
+
"new_messages": {
|
|
4465
|
+
type: T.IMAGE;
|
|
4466
|
+
children: 'focus_border';
|
|
4467
|
+
};
|
|
4468
|
+
"new_messages/focus_border": {
|
|
4469
|
+
type: T.IMAGE;
|
|
4470
|
+
children: 'stack';
|
|
4471
|
+
};
|
|
4472
|
+
"new_messages/focus_border/stack": {
|
|
4473
|
+
type: T.STACK_PANEL;
|
|
4474
|
+
children: 'arrow_icon' | 'separator' | 'tooltip_text';
|
|
4475
|
+
};
|
|
4476
|
+
"new_messages/focus_border/stack/arrow_icon": {
|
|
4477
|
+
type: T.IMAGE;
|
|
4478
|
+
children: string;
|
|
4479
|
+
};
|
|
4480
|
+
"new_messages/focus_border/stack/separator": {
|
|
4481
|
+
type: T.PANEL;
|
|
4482
|
+
children: string;
|
|
4483
|
+
};
|
|
4484
|
+
"new_messages/focus_border/stack/tooltip_text": {
|
|
4485
|
+
type: T.LABEL;
|
|
4486
|
+
children: string;
|
|
4487
|
+
};
|
|
4464
4488
|
"small_button": {
|
|
4465
4489
|
type: T.BUTTON;
|
|
4466
4490
|
children: string;
|
|
@@ -4477,6 +4501,22 @@ export type ChatType = {
|
|
|
4477
4501
|
type: T.BUTTON;
|
|
4478
4502
|
children: string;
|
|
4479
4503
|
};
|
|
4504
|
+
"new_messages_button": {
|
|
4505
|
+
type: T.BUTTON;
|
|
4506
|
+
children: 'default' | 'pressed' | 'hover';
|
|
4507
|
+
};
|
|
4508
|
+
"new_messages_button/default": {
|
|
4509
|
+
type: T.IMAGE;
|
|
4510
|
+
children: string;
|
|
4511
|
+
};
|
|
4512
|
+
"new_messages_button/pressed": {
|
|
4513
|
+
type: T.IMAGE;
|
|
4514
|
+
children: string;
|
|
4515
|
+
};
|
|
4516
|
+
"new_messages_button/hover": {
|
|
4517
|
+
type: T.IMAGE;
|
|
4518
|
+
children: string;
|
|
4519
|
+
};
|
|
4480
4520
|
"messages_text": {
|
|
4481
4521
|
type: T.PANEL;
|
|
4482
4522
|
children: 'text';
|
|
@@ -4699,7 +4739,7 @@ export type ChatType = {
|
|
|
4699
4739
|
};
|
|
4700
4740
|
"chat_screen_content": {
|
|
4701
4741
|
type: T.PANEL;
|
|
4702
|
-
children: 'messages_panel' | 'chat_bottom_panel' | 'chat_top_panel' | 'autocomplete_commands_panel' | 'host_main_panel' | 'popup_factory';
|
|
4742
|
+
children: 'messages_panel' | 'chat_bottom_panel' | 'chat_top_panel' | 'new_messages_button' | 'autocomplete_commands_panel' | 'host_main_panel' | 'popup_factory';
|
|
4703
4743
|
};
|
|
4704
4744
|
"chat_screen_content/messages_panel": {
|
|
4705
4745
|
type: T.PANEL;
|
|
@@ -4713,6 +4753,10 @@ export type ChatType = {
|
|
|
4713
4753
|
type: T.IMAGE;
|
|
4714
4754
|
children: string;
|
|
4715
4755
|
};
|
|
4756
|
+
"chat_screen_content/new_messages_button": {
|
|
4757
|
+
type: T.BUTTON;
|
|
4758
|
+
children: string;
|
|
4759
|
+
};
|
|
4716
4760
|
"chat_screen_content/autocomplete_commands_panel": {
|
|
4717
4761
|
type: T.PANEL;
|
|
4718
4762
|
children: string;
|
|
@@ -22485,15 +22529,19 @@ export type CraftingType = {
|
|
|
22485
22529
|
};
|
|
22486
22530
|
"tab_content/tab_content_search_bar_panel": {
|
|
22487
22531
|
type: T.STACK_PANEL;
|
|
22488
|
-
children: 'vertical_padding_1' | 'creative_label_and_filter_toggle_holder' | 'vertical_padding_2' | 'search_and_filter_panel' | 'vertical_padding_3' | '
|
|
22532
|
+
children: 'vertical_padding_1' | 'pocket_vertical_padding_1' | 'creative_label_and_filter_toggle_holder' | 'vertical_padding_2' | 'pocket_vertical_padding_2' | 'pocket_vertical_padding_3' | 'search_and_filter_panel' | 'vertical_padding_3' | 'vertical_padding_3_1' | 'items_panel';
|
|
22489
22533
|
};
|
|
22490
22534
|
"tab_content/tab_content_search_bar_panel/vertical_padding_1": {
|
|
22491
22535
|
type: T.PANEL;
|
|
22492
22536
|
children: string;
|
|
22493
22537
|
};
|
|
22538
|
+
"tab_content/tab_content_search_bar_panel/pocket_vertical_padding_1": {
|
|
22539
|
+
type: T.PANEL;
|
|
22540
|
+
children: string;
|
|
22541
|
+
};
|
|
22494
22542
|
"tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder": {
|
|
22495
22543
|
type: T.STACK_PANEL;
|
|
22496
|
-
children: 'padding_1' | 'creative_label' | 'padding_2' | 'filter_toggle_holder';
|
|
22544
|
+
children: 'padding_1' | 'creative_label' | 'padding_2' | 'filter_toggle_holder' | 'pocket_horizontal_padding_1';
|
|
22497
22545
|
};
|
|
22498
22546
|
"tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/padding_1": {
|
|
22499
22547
|
type: T.PANEL;
|
|
@@ -22515,13 +22563,25 @@ export type CraftingType = {
|
|
|
22515
22563
|
type: T.PANEL;
|
|
22516
22564
|
children: string;
|
|
22517
22565
|
};
|
|
22566
|
+
"tab_content/tab_content_search_bar_panel/creative_label_and_filter_toggle_holder/pocket_horizontal_padding_1": {
|
|
22567
|
+
type: T.PANEL;
|
|
22568
|
+
children: string;
|
|
22569
|
+
};
|
|
22518
22570
|
"tab_content/tab_content_search_bar_panel/vertical_padding_2": {
|
|
22519
22571
|
type: T.PANEL;
|
|
22520
22572
|
children: string;
|
|
22521
22573
|
};
|
|
22574
|
+
"tab_content/tab_content_search_bar_panel/pocket_vertical_padding_2": {
|
|
22575
|
+
type: T.PANEL;
|
|
22576
|
+
children: string;
|
|
22577
|
+
};
|
|
22578
|
+
"tab_content/tab_content_search_bar_panel/pocket_vertical_padding_3": {
|
|
22579
|
+
type: T.PANEL;
|
|
22580
|
+
children: string;
|
|
22581
|
+
};
|
|
22522
22582
|
"tab_content/tab_content_search_bar_panel/search_and_filter_panel": {
|
|
22523
22583
|
type: T.STACK_PANEL;
|
|
22524
|
-
children: 'text_edit_control' | 'padding_1' | 'filter_toggle_holder';
|
|
22584
|
+
children: 'text_edit_control' | 'padding_1' | 'filter_toggle_holder' | 'pocket_horizontal_padding_1';
|
|
22525
22585
|
};
|
|
22526
22586
|
"tab_content/tab_content_search_bar_panel/search_and_filter_panel/text_edit_control": {
|
|
22527
22587
|
type: T.EDIT_BOX;
|
|
@@ -22539,14 +22599,46 @@ export type CraftingType = {
|
|
|
22539
22599
|
type: T.PANEL;
|
|
22540
22600
|
children: string;
|
|
22541
22601
|
};
|
|
22602
|
+
"tab_content/tab_content_search_bar_panel/search_and_filter_panel/pocket_horizontal_padding_1": {
|
|
22603
|
+
type: T.PANEL;
|
|
22604
|
+
children: string;
|
|
22605
|
+
};
|
|
22542
22606
|
"tab_content/tab_content_search_bar_panel/vertical_padding_3": {
|
|
22543
22607
|
type: T.PANEL;
|
|
22544
22608
|
children: string;
|
|
22545
22609
|
};
|
|
22546
|
-
"tab_content/tab_content_search_bar_panel/
|
|
22610
|
+
"tab_content/tab_content_search_bar_panel/vertical_padding_3_1": {
|
|
22611
|
+
type: T.PANEL;
|
|
22612
|
+
children: string;
|
|
22613
|
+
};
|
|
22614
|
+
"tab_content/tab_content_search_bar_panel/items_panel": {
|
|
22615
|
+
type: T.PANEL;
|
|
22616
|
+
children: 'scroll_pane' | 'shadow_stack';
|
|
22617
|
+
};
|
|
22618
|
+
"tab_content/tab_content_search_bar_panel/items_panel/scroll_pane": {
|
|
22547
22619
|
type: T.UNKNOWN;
|
|
22548
22620
|
children: string;
|
|
22549
22621
|
};
|
|
22622
|
+
"tab_content/tab_content_search_bar_panel/items_panel/shadow_stack": {
|
|
22623
|
+
type: T.STACK_PANEL;
|
|
22624
|
+
children: 'shadow_container' | 'shadow_cutter';
|
|
22625
|
+
};
|
|
22626
|
+
"tab_content/tab_content_search_bar_panel/items_panel/shadow_stack/shadow_container": {
|
|
22627
|
+
type: T.PANEL;
|
|
22628
|
+
children: 'top_shadow' | 'top_overlay';
|
|
22629
|
+
};
|
|
22630
|
+
"tab_content/tab_content_search_bar_panel/items_panel/shadow_stack/shadow_container/top_shadow": {
|
|
22631
|
+
type: T.IMAGE;
|
|
22632
|
+
children: string;
|
|
22633
|
+
};
|
|
22634
|
+
"tab_content/tab_content_search_bar_panel/items_panel/shadow_stack/shadow_container/top_overlay": {
|
|
22635
|
+
type: T.IMAGE;
|
|
22636
|
+
children: string;
|
|
22637
|
+
};
|
|
22638
|
+
"tab_content/tab_content_search_bar_panel/items_panel/shadow_stack/shadow_cutter": {
|
|
22639
|
+
type: T.PANEL;
|
|
22640
|
+
children: string;
|
|
22641
|
+
};
|
|
22550
22642
|
"tab_content/nodrop_zone": {
|
|
22551
22643
|
type: T.INPUT_PANEL;
|
|
22552
22644
|
children: string;
|
|
@@ -24513,7 +24605,11 @@ export type InviteType = {
|
|
|
24513
24605
|
};
|
|
24514
24606
|
"scrolling_content_stack": {
|
|
24515
24607
|
type: T.STACK_PANEL;
|
|
24516
|
-
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';
|
|
24608
|
+
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';
|
|
24609
|
+
};
|
|
24610
|
+
"scrolling_content_stack/invite_party_panel": {
|
|
24611
|
+
type: T.PANEL;
|
|
24612
|
+
children: string;
|
|
24517
24613
|
};
|
|
24518
24614
|
"scrolling_content_stack/message": {
|
|
24519
24615
|
type: T.PANEL;
|
|
@@ -24623,6 +24719,30 @@ export type InviteType = {
|
|
|
24623
24719
|
type: T.PANEL;
|
|
24624
24720
|
children: string;
|
|
24625
24721
|
};
|
|
24722
|
+
"invite_party_panel": {
|
|
24723
|
+
type: T.PANEL;
|
|
24724
|
+
children: 'frame_label' | 'frame_description' | 'our_toggle' | 'border_outline';
|
|
24725
|
+
};
|
|
24726
|
+
"invite_party_panel/frame_label": {
|
|
24727
|
+
type: T.LABEL;
|
|
24728
|
+
children: string;
|
|
24729
|
+
};
|
|
24730
|
+
"invite_party_panel/frame_description": {
|
|
24731
|
+
type: T.LABEL;
|
|
24732
|
+
children: string;
|
|
24733
|
+
};
|
|
24734
|
+
"invite_party_panel/our_toggle": {
|
|
24735
|
+
type: T.TOGGLE;
|
|
24736
|
+
children: string;
|
|
24737
|
+
};
|
|
24738
|
+
"invite_party_panel/border_outline": {
|
|
24739
|
+
type: T.IMAGE;
|
|
24740
|
+
children: string;
|
|
24741
|
+
};
|
|
24742
|
+
"friend_button_test": {
|
|
24743
|
+
type: T.TOGGLE;
|
|
24744
|
+
children: string;
|
|
24745
|
+
};
|
|
24626
24746
|
"progress_bar_and_scrolling_content_panel": {
|
|
24627
24747
|
type: T.PANEL;
|
|
24628
24748
|
children: 'progress_loading_bars' | 'invite_scrolling_area';
|
|
@@ -28127,6 +28247,18 @@ export type PauseType = {
|
|
|
28127
28247
|
type: T.IMAGE;
|
|
28128
28248
|
children: string;
|
|
28129
28249
|
};
|
|
28250
|
+
"how_to_play_icon": {
|
|
28251
|
+
type: T.IMAGE;
|
|
28252
|
+
children: string;
|
|
28253
|
+
};
|
|
28254
|
+
"store_icon": {
|
|
28255
|
+
type: T.IMAGE;
|
|
28256
|
+
children: string;
|
|
28257
|
+
};
|
|
28258
|
+
"realms_stories_icon": {
|
|
28259
|
+
type: T.IMAGE;
|
|
28260
|
+
children: string;
|
|
28261
|
+
};
|
|
28130
28262
|
"alex_icon": {
|
|
28131
28263
|
type: T.IMAGE;
|
|
28132
28264
|
children: string;
|
|
@@ -28383,18 +28515,58 @@ export type PauseType = {
|
|
|
28383
28515
|
type: T.BUTTON;
|
|
28384
28516
|
children: string;
|
|
28385
28517
|
};
|
|
28518
|
+
"feedback_button_primary_panel": {
|
|
28519
|
+
type: T.PANEL;
|
|
28520
|
+
children: 'feedback_button_primary';
|
|
28521
|
+
};
|
|
28522
|
+
"feedback_button_primary_panel/feedback_button_primary": {
|
|
28523
|
+
type: T.BUTTON;
|
|
28524
|
+
children: string;
|
|
28525
|
+
};
|
|
28526
|
+
"feedback_button_primary": {
|
|
28527
|
+
type: T.BUTTON;
|
|
28528
|
+
children: string;
|
|
28529
|
+
};
|
|
28530
|
+
"icon_button_hover_text": {
|
|
28531
|
+
type: T.IMAGE;
|
|
28532
|
+
children: 'tooltip_text';
|
|
28533
|
+
};
|
|
28534
|
+
"icon_button_hover_text/tooltip_text": {
|
|
28535
|
+
type: T.LABEL;
|
|
28536
|
+
children: string;
|
|
28537
|
+
};
|
|
28538
|
+
"icon_button_tooltip_trigger": {
|
|
28539
|
+
type: T.BUTTON;
|
|
28540
|
+
children: 'default' | 'pressed' | 'hover';
|
|
28541
|
+
};
|
|
28542
|
+
"icon_button_tooltip_trigger/default": {
|
|
28543
|
+
type: T.PANEL;
|
|
28544
|
+
children: string;
|
|
28545
|
+
};
|
|
28546
|
+
"icon_button_tooltip_trigger/pressed": {
|
|
28547
|
+
type: T.PANEL;
|
|
28548
|
+
children: string;
|
|
28549
|
+
};
|
|
28550
|
+
"icon_button_tooltip_trigger/hover": {
|
|
28551
|
+
type: T.IMAGE;
|
|
28552
|
+
children: string;
|
|
28553
|
+
};
|
|
28386
28554
|
"feedback_button": {
|
|
28387
28555
|
type: T.BUTTON;
|
|
28388
28556
|
children: string;
|
|
28389
28557
|
};
|
|
28390
28558
|
"feedback_icon_button": {
|
|
28391
28559
|
type: T.PANEL;
|
|
28392
|
-
children: 'feedback_button';
|
|
28560
|
+
children: 'feedback_button' | 'tooltip_trigger';
|
|
28393
28561
|
};
|
|
28394
28562
|
"feedback_icon_button/feedback_button": {
|
|
28395
28563
|
type: T.BUTTON;
|
|
28396
28564
|
children: string;
|
|
28397
28565
|
};
|
|
28566
|
+
"feedback_icon_button/tooltip_trigger": {
|
|
28567
|
+
type: T.BUTTON;
|
|
28568
|
+
children: string;
|
|
28569
|
+
};
|
|
28398
28570
|
"take_screenshot_gamepad_button_content": {
|
|
28399
28571
|
type: T.PANEL;
|
|
28400
28572
|
children: 'button_y' | 'take_screenshot_icon';
|
|
@@ -28415,14 +28587,122 @@ export type PauseType = {
|
|
|
28415
28587
|
type: T.BUTTON;
|
|
28416
28588
|
children: string;
|
|
28417
28589
|
};
|
|
28590
|
+
"how_to_play_button_small": {
|
|
28591
|
+
type: T.BUTTON;
|
|
28592
|
+
children: string;
|
|
28593
|
+
};
|
|
28594
|
+
"how_to_play_button_small_with_tooltip": {
|
|
28595
|
+
type: T.PANEL;
|
|
28596
|
+
children: 'button' | 'tooltip_trigger';
|
|
28597
|
+
};
|
|
28598
|
+
"how_to_play_button_small_with_tooltip/button": {
|
|
28599
|
+
type: T.BUTTON;
|
|
28600
|
+
children: string;
|
|
28601
|
+
};
|
|
28602
|
+
"how_to_play_button_small_with_tooltip/tooltip_trigger": {
|
|
28603
|
+
type: T.BUTTON;
|
|
28604
|
+
children: string;
|
|
28605
|
+
};
|
|
28606
|
+
"achievements_button_small_with_tooltip": {
|
|
28607
|
+
type: T.PANEL;
|
|
28608
|
+
children: 'button' | 'tooltip_trigger';
|
|
28609
|
+
};
|
|
28610
|
+
"achievements_button_small_with_tooltip/button": {
|
|
28611
|
+
type: T.BUTTON;
|
|
28612
|
+
children: string;
|
|
28613
|
+
};
|
|
28614
|
+
"achievements_button_small_with_tooltip/tooltip_trigger": {
|
|
28615
|
+
type: T.BUTTON;
|
|
28616
|
+
children: string;
|
|
28617
|
+
};
|
|
28418
28618
|
"settings_button_small": {
|
|
28419
28619
|
type: T.BUTTON;
|
|
28420
28620
|
children: string;
|
|
28421
28621
|
};
|
|
28622
|
+
"settings_button_small_with_tooltip": {
|
|
28623
|
+
type: T.PANEL;
|
|
28624
|
+
children: 'button' | 'tooltip_trigger';
|
|
28625
|
+
};
|
|
28626
|
+
"settings_button_small_with_tooltip/button": {
|
|
28627
|
+
type: T.BUTTON;
|
|
28628
|
+
children: string;
|
|
28629
|
+
};
|
|
28630
|
+
"settings_button_small_with_tooltip/tooltip_trigger": {
|
|
28631
|
+
type: T.BUTTON;
|
|
28632
|
+
children: string;
|
|
28633
|
+
};
|
|
28422
28634
|
"take_screenshot_button": {
|
|
28423
28635
|
type: T.BUTTON;
|
|
28424
28636
|
children: string;
|
|
28425
28637
|
};
|
|
28638
|
+
"take_screenshot_button_with_tooltip": {
|
|
28639
|
+
type: T.PANEL;
|
|
28640
|
+
children: 'button' | 'tooltip_trigger';
|
|
28641
|
+
};
|
|
28642
|
+
"take_screenshot_button_with_tooltip/button": {
|
|
28643
|
+
type: T.BUTTON;
|
|
28644
|
+
children: string;
|
|
28645
|
+
};
|
|
28646
|
+
"take_screenshot_button_with_tooltip/tooltip_trigger": {
|
|
28647
|
+
type: T.BUTTON;
|
|
28648
|
+
children: string;
|
|
28649
|
+
};
|
|
28650
|
+
"take_screenshot_gamepad_button_with_tooltip": {
|
|
28651
|
+
type: T.PANEL;
|
|
28652
|
+
children: 'button' | 'tooltip_trigger';
|
|
28653
|
+
};
|
|
28654
|
+
"take_screenshot_gamepad_button_with_tooltip/button": {
|
|
28655
|
+
type: T.BUTTON;
|
|
28656
|
+
children: string;
|
|
28657
|
+
};
|
|
28658
|
+
"take_screenshot_gamepad_button_with_tooltip/tooltip_trigger": {
|
|
28659
|
+
type: T.BUTTON;
|
|
28660
|
+
children: string;
|
|
28661
|
+
};
|
|
28662
|
+
"store_button_small": {
|
|
28663
|
+
type: T.BUTTON;
|
|
28664
|
+
children: string;
|
|
28665
|
+
};
|
|
28666
|
+
"store_button_small_disabled": {
|
|
28667
|
+
type: T.BUTTON;
|
|
28668
|
+
children: string;
|
|
28669
|
+
};
|
|
28670
|
+
"store_icon_disabled": {
|
|
28671
|
+
type: T.IMAGE;
|
|
28672
|
+
children: string;
|
|
28673
|
+
};
|
|
28674
|
+
"store_button_small_with_tooltip": {
|
|
28675
|
+
type: T.PANEL;
|
|
28676
|
+
children: 'enabled_button' | 'disabled_button' | 'tooltip_trigger';
|
|
28677
|
+
};
|
|
28678
|
+
"store_button_small_with_tooltip/enabled_button": {
|
|
28679
|
+
type: T.BUTTON;
|
|
28680
|
+
children: string;
|
|
28681
|
+
};
|
|
28682
|
+
"store_button_small_with_tooltip/disabled_button": {
|
|
28683
|
+
type: T.BUTTON;
|
|
28684
|
+
children: string;
|
|
28685
|
+
};
|
|
28686
|
+
"store_button_small_with_tooltip/tooltip_trigger": {
|
|
28687
|
+
type: T.BUTTON;
|
|
28688
|
+
children: string;
|
|
28689
|
+
};
|
|
28690
|
+
"realms_stories_button_small": {
|
|
28691
|
+
type: T.BUTTON;
|
|
28692
|
+
children: string;
|
|
28693
|
+
};
|
|
28694
|
+
"realms_stories_button_small_with_tooltip": {
|
|
28695
|
+
type: T.PANEL;
|
|
28696
|
+
children: 'button' | 'tooltip_trigger';
|
|
28697
|
+
};
|
|
28698
|
+
"realms_stories_button_small_with_tooltip/button": {
|
|
28699
|
+
type: T.BUTTON;
|
|
28700
|
+
children: string;
|
|
28701
|
+
};
|
|
28702
|
+
"realms_stories_button_small_with_tooltip/tooltip_trigger": {
|
|
28703
|
+
type: T.BUTTON;
|
|
28704
|
+
children: string;
|
|
28705
|
+
};
|
|
28426
28706
|
"pause_screen": {
|
|
28427
28707
|
type: T.SCREEN;
|
|
28428
28708
|
children: string;
|
|
@@ -28513,7 +28793,7 @@ export type PauseType = {
|
|
|
28513
28793
|
};
|
|
28514
28794
|
"smaller_buttons_panel/stacked_column": {
|
|
28515
28795
|
type: T.STACK_PANEL;
|
|
28516
|
-
children: 'fill_1' | 'side_padding' | 'small_settings_button' | 'small_settings_padding' | 'small_achievements_button' | 'small_achievements_padding' | 'take_screenshot_btn' | 'screenshot_padding' | 'fill_3';
|
|
28796
|
+
children: 'fill_1' | 'side_padding' | 'small_settings_button' | 'small_settings_padding' | 'small_achievements_button' | 'small_achievements_padding' | 'small_how_to_play_button' | 'small_how_to_play_padding' | 'small_realms_stories_button' | 'small_realms_stories_padding' | 'small_store_button' | 'small_store_padding' | 'take_screenshot_btn' | 'screenshot_padding' | 'fill_3';
|
|
28517
28797
|
};
|
|
28518
28798
|
"smaller_buttons_panel/stacked_column/fill_1": {
|
|
28519
28799
|
type: T.PANEL;
|
|
@@ -28528,7 +28808,7 @@ export type PauseType = {
|
|
|
28528
28808
|
children: 'small_settings_btn';
|
|
28529
28809
|
};
|
|
28530
28810
|
"smaller_buttons_panel/stacked_column/small_settings_button/small_settings_btn": {
|
|
28531
|
-
type: T.
|
|
28811
|
+
type: T.PANEL;
|
|
28532
28812
|
children: string;
|
|
28533
28813
|
};
|
|
28534
28814
|
"smaller_buttons_panel/stacked_column/small_settings_padding": {
|
|
@@ -28540,23 +28820,59 @@ export type PauseType = {
|
|
|
28540
28820
|
children: 'small_achievements_btn';
|
|
28541
28821
|
};
|
|
28542
28822
|
"smaller_buttons_panel/stacked_column/small_achievements_button/small_achievements_btn": {
|
|
28543
|
-
type: T.
|
|
28823
|
+
type: T.PANEL;
|
|
28544
28824
|
children: string;
|
|
28545
28825
|
};
|
|
28546
28826
|
"smaller_buttons_panel/stacked_column/small_achievements_padding": {
|
|
28547
28827
|
type: T.PANEL;
|
|
28548
28828
|
children: string;
|
|
28549
28829
|
};
|
|
28830
|
+
"smaller_buttons_panel/stacked_column/small_how_to_play_button": {
|
|
28831
|
+
type: T.INPUT_PANEL;
|
|
28832
|
+
children: 'small_how_to_play_btn';
|
|
28833
|
+
};
|
|
28834
|
+
"smaller_buttons_panel/stacked_column/small_how_to_play_button/small_how_to_play_btn": {
|
|
28835
|
+
type: T.PANEL;
|
|
28836
|
+
children: string;
|
|
28837
|
+
};
|
|
28838
|
+
"smaller_buttons_panel/stacked_column/small_how_to_play_padding": {
|
|
28839
|
+
type: T.PANEL;
|
|
28840
|
+
children: string;
|
|
28841
|
+
};
|
|
28842
|
+
"smaller_buttons_panel/stacked_column/small_realms_stories_button": {
|
|
28843
|
+
type: T.INPUT_PANEL;
|
|
28844
|
+
children: 'small_realms_stories_btn';
|
|
28845
|
+
};
|
|
28846
|
+
"smaller_buttons_panel/stacked_column/small_realms_stories_button/small_realms_stories_btn": {
|
|
28847
|
+
type: T.PANEL;
|
|
28848
|
+
children: string;
|
|
28849
|
+
};
|
|
28850
|
+
"smaller_buttons_panel/stacked_column/small_realms_stories_padding": {
|
|
28851
|
+
type: T.PANEL;
|
|
28852
|
+
children: string;
|
|
28853
|
+
};
|
|
28854
|
+
"smaller_buttons_panel/stacked_column/small_store_button": {
|
|
28855
|
+
type: T.INPUT_PANEL;
|
|
28856
|
+
children: 'small_store_btn';
|
|
28857
|
+
};
|
|
28858
|
+
"smaller_buttons_panel/stacked_column/small_store_button/small_store_btn": {
|
|
28859
|
+
type: T.PANEL;
|
|
28860
|
+
children: string;
|
|
28861
|
+
};
|
|
28862
|
+
"smaller_buttons_panel/stacked_column/small_store_padding": {
|
|
28863
|
+
type: T.PANEL;
|
|
28864
|
+
children: string;
|
|
28865
|
+
};
|
|
28550
28866
|
"smaller_buttons_panel/stacked_column/take_screenshot_btn": {
|
|
28551
28867
|
type: T.INPUT_PANEL;
|
|
28552
28868
|
children: 'take_screenshot_button' | 'take_screenshot_gamepad_button';
|
|
28553
28869
|
};
|
|
28554
28870
|
"smaller_buttons_panel/stacked_column/take_screenshot_btn/take_screenshot_button": {
|
|
28555
|
-
type: T.
|
|
28871
|
+
type: T.PANEL;
|
|
28556
28872
|
children: string;
|
|
28557
28873
|
};
|
|
28558
28874
|
"smaller_buttons_panel/stacked_column/take_screenshot_btn/take_screenshot_gamepad_button": {
|
|
28559
|
-
type: T.
|
|
28875
|
+
type: T.PANEL;
|
|
28560
28876
|
children: string;
|
|
28561
28877
|
};
|
|
28562
28878
|
"smaller_buttons_panel/stacked_column/screenshot_padding": {
|
|
@@ -28721,7 +29037,7 @@ export type PauseType = {
|
|
|
28721
29037
|
};
|
|
28722
29038
|
"menu_background/button_panel": {
|
|
28723
29039
|
type: T.STACK_PANEL;
|
|
28724
|
-
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';
|
|
29040
|
+
children: 'title_image' | 'fill_1' | 'return_to_game_button' | 'return' | 'settings_button' | 'settings' | 'feedback_button_primary_panel' | 'feedback' | 'realms_stories_button_panel' | 'realms_stories' | 'buy_button' | 'buy' | 'store_button_panel' | 'store_button_panel_padding' | 'quit_button' | 'smaller_buttons' | 'pause_panel';
|
|
28725
29041
|
};
|
|
28726
29042
|
"menu_background/button_panel/title_image": {
|
|
28727
29043
|
type: T.PANEL;
|
|
@@ -28751,6 +29067,14 @@ export type PauseType = {
|
|
|
28751
29067
|
type: T.PANEL;
|
|
28752
29068
|
children: string;
|
|
28753
29069
|
};
|
|
29070
|
+
"menu_background/button_panel/feedback_button_primary_panel": {
|
|
29071
|
+
type: T.PANEL;
|
|
29072
|
+
children: string;
|
|
29073
|
+
};
|
|
29074
|
+
"menu_background/button_panel/feedback": {
|
|
29075
|
+
type: T.PANEL;
|
|
29076
|
+
children: string;
|
|
29077
|
+
};
|
|
28754
29078
|
"menu_background/button_panel/realms_stories_button_panel": {
|
|
28755
29079
|
type: T.PANEL;
|
|
28756
29080
|
children: string;
|
|
@@ -30443,7 +30767,7 @@ export type PdpType = {
|
|
|
30443
30767
|
};
|
|
30444
30768
|
"summary_content_left_side/full_content/top/info": {
|
|
30445
30769
|
type: T.STACK_PANEL;
|
|
30446
|
-
children: 'summary_title_and_author_panel' | 'pad_fill' | '
|
|
30770
|
+
children: 'summary_title_and_author_panel' | 'pad_fill' | 'info_buttons_factory';
|
|
30447
30771
|
};
|
|
30448
30772
|
"summary_content_left_side/full_content/top/info/summary_title_and_author_panel": {
|
|
30449
30773
|
type: T.STACK_PANEL;
|
|
@@ -30453,42 +30777,34 @@ export type PdpType = {
|
|
|
30453
30777
|
type: T.PANEL;
|
|
30454
30778
|
children: string;
|
|
30455
30779
|
};
|
|
30456
|
-
"summary_content_left_side/full_content/top/info/
|
|
30780
|
+
"summary_content_left_side/full_content/top/info/info_buttons_factory": {
|
|
30781
|
+
type: T.STACK_PANEL;
|
|
30782
|
+
children: string;
|
|
30783
|
+
};
|
|
30784
|
+
"summary_content_left_side/full_content/bottom": {
|
|
30457
30785
|
type: T.PANEL;
|
|
30458
|
-
children:
|
|
30786
|
+
children: string;
|
|
30459
30787
|
};
|
|
30460
|
-
"
|
|
30788
|
+
"info_buttons_factory": {
|
|
30461
30789
|
type: T.STACK_PANEL;
|
|
30462
30790
|
children: string;
|
|
30463
30791
|
};
|
|
30464
|
-
"
|
|
30792
|
+
"ratings_summary": {
|
|
30465
30793
|
type: T.STACK_PANEL;
|
|
30466
30794
|
children: 'ratings_display';
|
|
30467
30795
|
};
|
|
30468
|
-
"
|
|
30796
|
+
"ratings_summary/ratings_display": {
|
|
30469
30797
|
type: T.STACK_PANEL;
|
|
30470
|
-
children: '
|
|
30798
|
+
children: 'rating' | 'summary_rating_button';
|
|
30471
30799
|
};
|
|
30472
|
-
"
|
|
30473
|
-
type: T.PANEL;
|
|
30474
|
-
children: 'rating';
|
|
30475
|
-
};
|
|
30476
|
-
"summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/rating_stars_panel/rating": {
|
|
30800
|
+
"ratings_summary/ratings_display/rating": {
|
|
30477
30801
|
type: T.PANEL;
|
|
30478
30802
|
children: string;
|
|
30479
30803
|
};
|
|
30480
|
-
"
|
|
30804
|
+
"ratings_summary/ratings_display/summary_rating_button": {
|
|
30481
30805
|
type: T.BUTTON;
|
|
30482
30806
|
children: string;
|
|
30483
30807
|
};
|
|
30484
|
-
"summary_content_left_side/full_content/top/info/vibrant_visuals_badge_and_hover": {
|
|
30485
|
-
type: T.PANEL;
|
|
30486
|
-
children: string;
|
|
30487
|
-
};
|
|
30488
|
-
"summary_content_left_side/full_content/bottom": {
|
|
30489
|
-
type: T.PANEL;
|
|
30490
|
-
children: string;
|
|
30491
|
-
};
|
|
30492
30808
|
"offer_title_label": {
|
|
30493
30809
|
type: T.PANEL;
|
|
30494
30810
|
children: string;
|
|
@@ -30639,7 +30955,7 @@ export type PdpType = {
|
|
|
30639
30955
|
};
|
|
30640
30956
|
"mashup_glyph_tooltip_content": {
|
|
30641
30957
|
type: T.STACK_PANEL;
|
|
30642
|
-
children: 'mashup_text_row' | 'mashup_line_two' | '
|
|
30958
|
+
children: 'mashup_text_row' | 'mashup_line_two' | 'basic_vertical_glyphs';
|
|
30643
30959
|
};
|
|
30644
30960
|
"mashup_glyph_tooltip_content/mashup_text_row": {
|
|
30645
30961
|
type: T.STACK_PANEL;
|
|
@@ -30657,11 +30973,7 @@ export type PdpType = {
|
|
|
30657
30973
|
type: T.PANEL;
|
|
30658
30974
|
children: string;
|
|
30659
30975
|
};
|
|
30660
|
-
"mashup_glyph_tooltip_content/
|
|
30661
|
-
type: T.PANEL;
|
|
30662
|
-
children: 'basic_vertical_glyph_section_panel';
|
|
30663
|
-
};
|
|
30664
|
-
"mashup_glyph_tooltip_content/offset_panel/basic_vertical_glyph_section_panel": {
|
|
30976
|
+
"mashup_glyph_tooltip_content/basic_vertical_glyphs": {
|
|
30665
30977
|
type: T.STACK_PANEL;
|
|
30666
30978
|
children: string;
|
|
30667
30979
|
};
|
|
@@ -30685,38 +30997,6 @@ export type PdpType = {
|
|
|
30685
30997
|
type: T.STACK_PANEL;
|
|
30686
30998
|
children: string;
|
|
30687
30999
|
};
|
|
30688
|
-
"basic_vertical_glyph_section_panel": {
|
|
30689
|
-
type: T.STACK_PANEL;
|
|
30690
|
-
children: 'glyph_section_skin' | 'glyph_section_world' | 'glyph_section_resource_pack' | 'glyph_section_addon';
|
|
30691
|
-
};
|
|
30692
|
-
"basic_vertical_glyph_section_panel/glyph_section_skin": {
|
|
30693
|
-
type: T.STACK_PANEL;
|
|
30694
|
-
children: string;
|
|
30695
|
-
};
|
|
30696
|
-
"basic_vertical_glyph_section_panel/glyph_section_world": {
|
|
30697
|
-
type: T.STACK_PANEL;
|
|
30698
|
-
children: string;
|
|
30699
|
-
};
|
|
30700
|
-
"basic_vertical_glyph_section_panel/glyph_section_resource_pack": {
|
|
30701
|
-
type: T.STACK_PANEL;
|
|
30702
|
-
children: string;
|
|
30703
|
-
};
|
|
30704
|
-
"basic_vertical_glyph_section_panel/glyph_section_addon": {
|
|
30705
|
-
type: T.STACK_PANEL;
|
|
30706
|
-
children: string;
|
|
30707
|
-
};
|
|
30708
|
-
"vertical_glyph_section_panel": {
|
|
30709
|
-
type: T.STACK_PANEL;
|
|
30710
|
-
children: 'glyph_section_mashup' | 'basic_vertical_glyph_section_panel';
|
|
30711
|
-
};
|
|
30712
|
-
"vertical_glyph_section_panel/glyph_section_mashup": {
|
|
30713
|
-
type: T.STACK_PANEL;
|
|
30714
|
-
children: string;
|
|
30715
|
-
};
|
|
30716
|
-
"vertical_glyph_section_panel/basic_vertical_glyph_section_panel": {
|
|
30717
|
-
type: T.STACK_PANEL;
|
|
30718
|
-
children: string;
|
|
30719
|
-
};
|
|
30720
31000
|
"summary_text_panel": {
|
|
30721
31001
|
type: T.STACK_PANEL;
|
|
30722
31002
|
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';
|
|
@@ -38303,6 +38583,26 @@ export type ProgressType = {
|
|
|
38303
38583
|
type: T.BUTTON;
|
|
38304
38584
|
children: string;
|
|
38305
38585
|
};
|
|
38586
|
+
"modal_ok_button_panel_with_retry": {
|
|
38587
|
+
type: T.PANEL;
|
|
38588
|
+
children: 'left_ok_button' | 'center_cancel_button' | 'center_ok_button' | 'right_retry_button';
|
|
38589
|
+
};
|
|
38590
|
+
"modal_ok_button_panel_with_retry/left_ok_button": {
|
|
38591
|
+
type: T.BUTTON;
|
|
38592
|
+
children: string;
|
|
38593
|
+
};
|
|
38594
|
+
"modal_ok_button_panel_with_retry/center_cancel_button": {
|
|
38595
|
+
type: T.BUTTON;
|
|
38596
|
+
children: string;
|
|
38597
|
+
};
|
|
38598
|
+
"modal_ok_button_panel_with_retry/center_ok_button": {
|
|
38599
|
+
type: T.BUTTON;
|
|
38600
|
+
children: string;
|
|
38601
|
+
};
|
|
38602
|
+
"modal_ok_button_panel_with_retry/right_retry_button": {
|
|
38603
|
+
type: T.BUTTON;
|
|
38604
|
+
children: string;
|
|
38605
|
+
};
|
|
38306
38606
|
"gamepad_helpers": {
|
|
38307
38607
|
type: T.PANEL;
|
|
38308
38608
|
children: 'gamepad_helper_a';
|
|
@@ -38629,49 +38929,69 @@ export type ProgressType = {
|
|
|
38629
38929
|
};
|
|
38630
38930
|
"world_modal_progress_panel": {
|
|
38631
38931
|
type: T.PANEL;
|
|
38632
|
-
children: 'common_panel' | '
|
|
38932
|
+
children: 'common_panel' | 'content_wrapper';
|
|
38633
38933
|
};
|
|
38634
38934
|
"world_modal_progress_panel/common_panel": {
|
|
38635
38935
|
type: T.PANEL;
|
|
38636
38936
|
children: string;
|
|
38637
38937
|
};
|
|
38638
|
-
"world_modal_progress_panel/
|
|
38938
|
+
"world_modal_progress_panel/content_wrapper": {
|
|
38639
38939
|
type: T.PANEL;
|
|
38640
|
-
children: '
|
|
38940
|
+
children: 'base_content' | 'inside_content';
|
|
38941
|
+
};
|
|
38942
|
+
"world_modal_progress_panel/content_wrapper/base_content": {
|
|
38943
|
+
type: T.STACK_PANEL;
|
|
38944
|
+
children: 'vertical_title_padding' | 'title_text_panel' | 'vertical_text_padding' | 'progress_text_panel';
|
|
38945
|
+
};
|
|
38946
|
+
"world_modal_progress_panel/content_wrapper/base_content/vertical_title_padding": {
|
|
38947
|
+
type: T.PANEL;
|
|
38948
|
+
children: string;
|
|
38949
|
+
};
|
|
38950
|
+
"world_modal_progress_panel/content_wrapper/base_content/title_text_panel": {
|
|
38951
|
+
type: T.PANEL;
|
|
38952
|
+
children: 'progress_title_text';
|
|
38641
38953
|
};
|
|
38642
|
-
"world_modal_progress_panel/base_content/progress_title_text": {
|
|
38954
|
+
"world_modal_progress_panel/content_wrapper/base_content/title_text_panel/progress_title_text": {
|
|
38643
38955
|
type: T.LABEL;
|
|
38644
38956
|
children: string;
|
|
38645
38957
|
};
|
|
38646
|
-
"world_modal_progress_panel/base_content/
|
|
38958
|
+
"world_modal_progress_panel/content_wrapper/base_content/vertical_text_padding": {
|
|
38959
|
+
type: T.PANEL;
|
|
38960
|
+
children: string;
|
|
38961
|
+
};
|
|
38962
|
+
"world_modal_progress_panel/content_wrapper/base_content/progress_text_panel": {
|
|
38963
|
+
type: T.PANEL;
|
|
38964
|
+
children: 'progress_bar_text';
|
|
38965
|
+
};
|
|
38966
|
+
"world_modal_progress_panel/content_wrapper/base_content/progress_text_panel/progress_bar_text": {
|
|
38647
38967
|
type: T.LABEL;
|
|
38648
38968
|
children: string;
|
|
38649
38969
|
};
|
|
38650
|
-
"world_modal_progress_panel/inside_content": {
|
|
38970
|
+
"world_modal_progress_panel/content_wrapper/inside_content": {
|
|
38651
38971
|
type: T.STACK_PANEL;
|
|
38652
38972
|
children: 'loading_bar_panel' | 'vertical_padding' | 'modal_button_panel' | 'vertical_padding_2';
|
|
38653
38973
|
};
|
|
38654
|
-
"world_modal_progress_panel/inside_content/loading_bar_panel": {
|
|
38974
|
+
"world_modal_progress_panel/content_wrapper/inside_content/loading_bar_panel": {
|
|
38655
38975
|
type: T.PANEL;
|
|
38656
38976
|
children: 'fancy_progress_loading_bars' | 'progress_loading_bars';
|
|
38657
38977
|
};
|
|
38658
|
-
"world_modal_progress_panel/inside_content/loading_bar_panel/fancy_progress_loading_bars": {
|
|
38978
|
+
"world_modal_progress_panel/content_wrapper/inside_content/loading_bar_panel/fancy_progress_loading_bars": {
|
|
38659
38979
|
type: T.PANEL;
|
|
38660
38980
|
children: string;
|
|
38661
38981
|
};
|
|
38662
|
-
"world_modal_progress_panel/inside_content/loading_bar_panel/progress_loading_bars": {
|
|
38982
|
+
"world_modal_progress_panel/content_wrapper/inside_content/loading_bar_panel/progress_loading_bars": {
|
|
38663
38983
|
type: T.IMAGE;
|
|
38664
38984
|
children: string;
|
|
38665
38985
|
};
|
|
38666
|
-
"world_modal_progress_panel/inside_content/vertical_padding": {
|
|
38986
|
+
"world_modal_progress_panel/content_wrapper/inside_content/vertical_padding": {
|
|
38667
38987
|
type: T.PANEL;
|
|
38668
38988
|
children: string;
|
|
38669
38989
|
};
|
|
38670
|
-
"world_modal_progress_panel/inside_content/modal_button_panel": {
|
|
38990
|
+
"world_modal_progress_panel/content_wrapper/inside_content/modal_button_panel": {
|
|
38671
38991
|
type: T.UNKNOWN;
|
|
38672
38992
|
children: string;
|
|
38673
38993
|
};
|
|
38674
|
-
"world_modal_progress_panel/inside_content/vertical_padding_2": {
|
|
38994
|
+
"world_modal_progress_panel/content_wrapper/inside_content/vertical_padding_2": {
|
|
38675
38995
|
type: T.PANEL;
|
|
38676
38996
|
children: string;
|
|
38677
38997
|
};
|
|
@@ -38973,11 +39293,7 @@ export type ProgressType = {
|
|
|
38973
39293
|
};
|
|
38974
39294
|
"realms_loading_world_modal_progress_screen_content/server_region_connected": {
|
|
38975
39295
|
type: T.STACK_PANEL;
|
|
38976
|
-
children: '
|
|
38977
|
-
};
|
|
38978
|
-
"realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_label": {
|
|
38979
|
-
type: T.LABEL;
|
|
38980
|
-
children: string;
|
|
39296
|
+
children: 'server_region_connected_text' | 'padding' | 'server_region_ping_icon';
|
|
38981
39297
|
};
|
|
38982
39298
|
"realms_loading_world_modal_progress_screen_content/server_region_connected/server_region_connected_text": {
|
|
38983
39299
|
type: T.LABEL;
|
|
@@ -39743,7 +40059,7 @@ export type RealmsPendingInvitationsType = {
|
|
|
39743
40059
|
type: T.LABEL;
|
|
39744
40060
|
children: string;
|
|
39745
40061
|
};
|
|
39746
|
-
"
|
|
40062
|
+
"realm_inviter_label": {
|
|
39747
40063
|
type: T.LABEL;
|
|
39748
40064
|
children: string;
|
|
39749
40065
|
};
|
|
@@ -41375,238 +41691,6 @@ export type RealmsSettingsType = {
|
|
|
41375
41691
|
type: T.STACK_PANEL;
|
|
41376
41692
|
children: string;
|
|
41377
41693
|
};
|
|
41378
|
-
"popup_dialog__backups": {
|
|
41379
|
-
type: T.INPUT_PANEL;
|
|
41380
|
-
children: 'transparent_close_button' | 'backup_restore_popup_content';
|
|
41381
|
-
};
|
|
41382
|
-
"popup_dialog__backups/transparent_close_button": {
|
|
41383
|
-
type: T.BUTTON;
|
|
41384
|
-
children: string;
|
|
41385
|
-
};
|
|
41386
|
-
"popup_dialog__backups/backup_restore_popup_content": {
|
|
41387
|
-
type: T.PANEL;
|
|
41388
|
-
children: string;
|
|
41389
|
-
};
|
|
41390
|
-
"backup_restore_popup_content": {
|
|
41391
|
-
type: T.PANEL;
|
|
41392
|
-
children: 'popup_dialog_bg' | 'backup_restore_popup_dialog_header' | 'backup_restore_popup_dialog_body';
|
|
41393
|
-
};
|
|
41394
|
-
"backup_restore_popup_content/popup_dialog_bg": {
|
|
41395
|
-
type: T.IMAGE;
|
|
41396
|
-
children: string;
|
|
41397
|
-
};
|
|
41398
|
-
"backup_restore_popup_content/backup_restore_popup_dialog_header": {
|
|
41399
|
-
type: T.PANEL;
|
|
41400
|
-
children: string;
|
|
41401
|
-
};
|
|
41402
|
-
"backup_restore_popup_content/backup_restore_popup_dialog_body": {
|
|
41403
|
-
type: T.PANEL;
|
|
41404
|
-
children: string;
|
|
41405
|
-
};
|
|
41406
|
-
"backup_restore_popup_dialog_header": {
|
|
41407
|
-
type: T.PANEL;
|
|
41408
|
-
children: 'backup_restore_popup_dialog_header_text';
|
|
41409
|
-
};
|
|
41410
|
-
"backup_restore_popup_dialog_header/backup_restore_popup_dialog_header_text": {
|
|
41411
|
-
type: T.LABEL;
|
|
41412
|
-
children: string;
|
|
41413
|
-
};
|
|
41414
|
-
"backup_restore_popup_dialog_header_text": {
|
|
41415
|
-
type: T.LABEL;
|
|
41416
|
-
children: string;
|
|
41417
|
-
};
|
|
41418
|
-
"backup_restore_popup_dialog_body": {
|
|
41419
|
-
type: T.PANEL;
|
|
41420
|
-
children: 'backup_restore_loading_panel';
|
|
41421
|
-
};
|
|
41422
|
-
"backup_restore_popup_dialog_body/backup_restore_loading_panel": {
|
|
41423
|
-
type: T.IMAGE;
|
|
41424
|
-
children: string;
|
|
41425
|
-
};
|
|
41426
|
-
"backup_restore_loading_panel": {
|
|
41427
|
-
type: T.IMAGE;
|
|
41428
|
-
children: 'backup_restore_loading_stack_panel';
|
|
41429
|
-
};
|
|
41430
|
-
"backup_restore_loading_panel/backup_restore_loading_stack_panel": {
|
|
41431
|
-
type: T.STACK_PANEL;
|
|
41432
|
-
children: string;
|
|
41433
|
-
};
|
|
41434
|
-
"backup_restore_loading_stack_panel": {
|
|
41435
|
-
type: T.STACK_PANEL;
|
|
41436
|
-
children: 'padding' | 'backup_restore_text_panel' | 'backup_restore_loading_bar_panel' | 'padding2';
|
|
41437
|
-
};
|
|
41438
|
-
"backup_restore_loading_stack_panel/padding": {
|
|
41439
|
-
type: T.PANEL;
|
|
41440
|
-
children: string;
|
|
41441
|
-
};
|
|
41442
|
-
"backup_restore_loading_stack_panel/backup_restore_text_panel": {
|
|
41443
|
-
type: T.PANEL;
|
|
41444
|
-
children: string;
|
|
41445
|
-
};
|
|
41446
|
-
"backup_restore_loading_stack_panel/backup_restore_loading_bar_panel": {
|
|
41447
|
-
type: T.PANEL;
|
|
41448
|
-
children: string;
|
|
41449
|
-
};
|
|
41450
|
-
"backup_restore_loading_stack_panel/padding2": {
|
|
41451
|
-
type: T.PANEL;
|
|
41452
|
-
children: string;
|
|
41453
|
-
};
|
|
41454
|
-
"backup_restore_text_panel": {
|
|
41455
|
-
type: T.PANEL;
|
|
41456
|
-
children: 'loading_text';
|
|
41457
|
-
};
|
|
41458
|
-
"backup_restore_text_panel/loading_text": {
|
|
41459
|
-
type: T.LABEL;
|
|
41460
|
-
children: string;
|
|
41461
|
-
};
|
|
41462
|
-
"backup_restore_loading_bar_panel": {
|
|
41463
|
-
type: T.PANEL;
|
|
41464
|
-
children: 'progress_loading_bars';
|
|
41465
|
-
};
|
|
41466
|
-
"backup_restore_loading_bar_panel/progress_loading_bars": {
|
|
41467
|
-
type: T.IMAGE;
|
|
41468
|
-
children: string;
|
|
41469
|
-
};
|
|
41470
|
-
"backup_replace_icon": {
|
|
41471
|
-
type: T.IMAGE;
|
|
41472
|
-
children: string;
|
|
41473
|
-
};
|
|
41474
|
-
"backup_download_icon": {
|
|
41475
|
-
type: T.IMAGE;
|
|
41476
|
-
children: string;
|
|
41477
|
-
};
|
|
41478
|
-
"backup_grid_item_content": {
|
|
41479
|
-
type: T.STACK_PANEL;
|
|
41480
|
-
children: 'backup_grid_item_icon_panel' | 'backup_grid_item_name_and_time_since' | 'backup_grid_item_date_and_time' | 'spacing_gap';
|
|
41481
|
-
};
|
|
41482
|
-
"backup_grid_item_content/backup_grid_item_icon_panel": {
|
|
41483
|
-
type: T.PANEL;
|
|
41484
|
-
children: string;
|
|
41485
|
-
};
|
|
41486
|
-
"backup_grid_item_content/backup_grid_item_name_and_time_since": {
|
|
41487
|
-
type: T.STACK_PANEL;
|
|
41488
|
-
children: string;
|
|
41489
|
-
};
|
|
41490
|
-
"backup_grid_item_content/backup_grid_item_date_and_time": {
|
|
41491
|
-
type: T.STACK_PANEL;
|
|
41492
|
-
children: string;
|
|
41493
|
-
};
|
|
41494
|
-
"backup_grid_item_content/spacing_gap": {
|
|
41495
|
-
type: T.PANEL;
|
|
41496
|
-
children: string;
|
|
41497
|
-
};
|
|
41498
|
-
"backup_grid_item_name_and_time_since": {
|
|
41499
|
-
type: T.STACK_PANEL;
|
|
41500
|
-
children: 'date_text' | 'spacing_gap' | 'version_text';
|
|
41501
|
-
};
|
|
41502
|
-
"backup_grid_item_name_and_time_since/date_text": {
|
|
41503
|
-
type: T.LABEL;
|
|
41504
|
-
children: string;
|
|
41505
|
-
};
|
|
41506
|
-
"backup_grid_item_name_and_time_since/spacing_gap": {
|
|
41507
|
-
type: T.PANEL;
|
|
41508
|
-
children: string;
|
|
41509
|
-
};
|
|
41510
|
-
"backup_grid_item_name_and_time_since/version_text": {
|
|
41511
|
-
type: T.LABEL;
|
|
41512
|
-
children: string;
|
|
41513
|
-
};
|
|
41514
|
-
"backup_grid_item_date_and_time": {
|
|
41515
|
-
type: T.STACK_PANEL;
|
|
41516
|
-
children: 'time_text' | 'spacing_gap' | 'size_text';
|
|
41517
|
-
};
|
|
41518
|
-
"backup_grid_item_date_and_time/time_text": {
|
|
41519
|
-
type: T.LABEL;
|
|
41520
|
-
children: string;
|
|
41521
|
-
};
|
|
41522
|
-
"backup_grid_item_date_and_time/spacing_gap": {
|
|
41523
|
-
type: T.PANEL;
|
|
41524
|
-
children: string;
|
|
41525
|
-
};
|
|
41526
|
-
"backup_grid_item_date_and_time/size_text": {
|
|
41527
|
-
type: T.LABEL;
|
|
41528
|
-
children: string;
|
|
41529
|
-
};
|
|
41530
|
-
"backup_grid_item_icon_panel": {
|
|
41531
|
-
type: T.PANEL;
|
|
41532
|
-
children: 'backup_replace_icon';
|
|
41533
|
-
};
|
|
41534
|
-
"backup_grid_item_icon_panel/backup_replace_icon": {
|
|
41535
|
-
type: T.IMAGE;
|
|
41536
|
-
children: string;
|
|
41537
|
-
};
|
|
41538
|
-
"backup_item_template": {
|
|
41539
|
-
type: T.STACK_PANEL;
|
|
41540
|
-
children: 'backup_item_button' | 'download_backup_panel';
|
|
41541
|
-
};
|
|
41542
|
-
"backup_item_template/backup_item_button": {
|
|
41543
|
-
type: T.BUTTON;
|
|
41544
|
-
children: string;
|
|
41545
|
-
};
|
|
41546
|
-
"backup_item_template/download_backup_panel": {
|
|
41547
|
-
type: T.PANEL;
|
|
41548
|
-
children: 'download_backup_button';
|
|
41549
|
-
};
|
|
41550
|
-
"backup_item_template/download_backup_panel/download_backup_button": {
|
|
41551
|
-
type: T.BUTTON;
|
|
41552
|
-
children: string;
|
|
41553
|
-
};
|
|
41554
|
-
"download_backup_button": {
|
|
41555
|
-
type: T.BUTTON;
|
|
41556
|
-
children: string;
|
|
41557
|
-
};
|
|
41558
|
-
"backup_grid": {
|
|
41559
|
-
type: T.GRID;
|
|
41560
|
-
children: string;
|
|
41561
|
-
};
|
|
41562
|
-
"backup_section": {
|
|
41563
|
-
type: T.STACK_PANEL;
|
|
41564
|
-
children: 'backup_panel';
|
|
41565
|
-
};
|
|
41566
|
-
"backup_section/backup_panel": {
|
|
41567
|
-
type: T.STACK_PANEL;
|
|
41568
|
-
children: string;
|
|
41569
|
-
};
|
|
41570
|
-
"backup_info_label": {
|
|
41571
|
-
type: T.PANEL;
|
|
41572
|
-
children: string;
|
|
41573
|
-
};
|
|
41574
|
-
"backup_network_error_label": {
|
|
41575
|
-
type: T.PANEL;
|
|
41576
|
-
children: string;
|
|
41577
|
-
};
|
|
41578
|
-
"backup_panel": {
|
|
41579
|
-
type: T.STACK_PANEL;
|
|
41580
|
-
children: 'spacing_gap' | 'backup_info_label' | 'spacing_gap2' | 'progress_panel' | 'backup_grid' | 'backup_network_error_label';
|
|
41581
|
-
};
|
|
41582
|
-
"backup_panel/spacing_gap": {
|
|
41583
|
-
type: T.PANEL;
|
|
41584
|
-
children: string;
|
|
41585
|
-
};
|
|
41586
|
-
"backup_panel/backup_info_label": {
|
|
41587
|
-
type: T.PANEL;
|
|
41588
|
-
children: string;
|
|
41589
|
-
};
|
|
41590
|
-
"backup_panel/spacing_gap2": {
|
|
41591
|
-
type: T.PANEL;
|
|
41592
|
-
children: string;
|
|
41593
|
-
};
|
|
41594
|
-
"backup_panel/progress_panel": {
|
|
41595
|
-
type: T.PANEL;
|
|
41596
|
-
children: 'progress_loading_bars';
|
|
41597
|
-
};
|
|
41598
|
-
"backup_panel/progress_panel/progress_loading_bars": {
|
|
41599
|
-
type: T.IMAGE;
|
|
41600
|
-
children: string;
|
|
41601
|
-
};
|
|
41602
|
-
"backup_panel/backup_grid": {
|
|
41603
|
-
type: T.GRID;
|
|
41604
|
-
children: string;
|
|
41605
|
-
};
|
|
41606
|
-
"backup_panel/backup_network_error_label": {
|
|
41607
|
-
type: T.PANEL;
|
|
41608
|
-
children: string;
|
|
41609
|
-
};
|
|
41610
41694
|
"test_content": {
|
|
41611
41695
|
type: T.PANEL;
|
|
41612
41696
|
children: 'realms_allowlist_content_panel' | 'gamepad_helpers';
|
|
@@ -41621,7 +41705,7 @@ export type RealmsSettingsType = {
|
|
|
41621
41705
|
};
|
|
41622
41706
|
"selector_panel": {
|
|
41623
41707
|
type: T.STACK_PANEL;
|
|
41624
|
-
children: 'play_button' | 'disabled_play_button' | 'expired_play_button' | 'padding' | 'selector_group_label' | 'world_button' | 'members_button' | 'saves_button' | 'subscription_button' | '
|
|
41708
|
+
children: 'play_button' | 'disabled_play_button' | 'expired_play_button' | 'padding' | 'selector_group_label' | 'world_button' | 'members_button' | 'saves_button' | 'subscription_button' | 'dev_options_button' | 'invite_links_button' | 'advanced_button';
|
|
41625
41709
|
};
|
|
41626
41710
|
"selector_panel/play_button": {
|
|
41627
41711
|
type: T.BUTTON;
|
|
@@ -41659,10 +41743,6 @@ export type RealmsSettingsType = {
|
|
|
41659
41743
|
type: T.PANEL;
|
|
41660
41744
|
children: string;
|
|
41661
41745
|
};
|
|
41662
|
-
"selector_panel/backup_button": {
|
|
41663
|
-
type: T.PANEL;
|
|
41664
|
-
children: string;
|
|
41665
|
-
};
|
|
41666
41746
|
"selector_panel/dev_options_button": {
|
|
41667
41747
|
type: T.PANEL;
|
|
41668
41748
|
children: string;
|
|
@@ -41677,7 +41757,7 @@ export type RealmsSettingsType = {
|
|
|
41677
41757
|
};
|
|
41678
41758
|
"section_content_panels": {
|
|
41679
41759
|
type: T.PANEL;
|
|
41680
|
-
children: 'world_section' | 'players_section' | 'subscription_section' | 'invite_links_section' | 'advanced_section' | 'dev_options_section' | '
|
|
41760
|
+
children: 'world_section' | 'players_section' | 'subscription_section' | 'invite_links_section' | 'advanced_section' | 'dev_options_section' | 'saves_section';
|
|
41681
41761
|
};
|
|
41682
41762
|
"section_content_panels/world_section": {
|
|
41683
41763
|
type: T.PANEL;
|
|
@@ -41703,10 +41783,6 @@ export type RealmsSettingsType = {
|
|
|
41703
41783
|
type: T.PANEL;
|
|
41704
41784
|
children: string;
|
|
41705
41785
|
};
|
|
41706
|
-
"section_content_panels/backup_section": {
|
|
41707
|
-
type: T.PANEL;
|
|
41708
|
-
children: string;
|
|
41709
|
-
};
|
|
41710
41786
|
"section_content_panels/saves_section": {
|
|
41711
41787
|
type: T.PANEL;
|
|
41712
41788
|
children: string;
|
|
@@ -47255,7 +47331,7 @@ export type SettingsType = {
|
|
|
47255
47331
|
};
|
|
47256
47332
|
"selector_stack_panel": {
|
|
47257
47333
|
type: T.STACK_PANEL;
|
|
47258
|
-
children: 'spacer_0' | 'accessibility_button' | '
|
|
47334
|
+
children: 'spacer_0' | 'accessibility_button' | 'spacer_01' | 'world_selector_pane' | 'realm_selector_pane' | 'controls_and_settings_selector_pane' | 'spacer_24' | 'addons_selector_panel' | 'realms_invite_link_settings_pane';
|
|
47259
47335
|
};
|
|
47260
47336
|
"selector_stack_panel/spacer_0": {
|
|
47261
47337
|
type: T.PANEL;
|
|
@@ -47265,14 +47341,6 @@ export type SettingsType = {
|
|
|
47265
47341
|
type: T.PANEL;
|
|
47266
47342
|
children: string;
|
|
47267
47343
|
};
|
|
47268
|
-
"selector_stack_panel/spacer_1": {
|
|
47269
|
-
type: T.PANEL;
|
|
47270
|
-
children: string;
|
|
47271
|
-
};
|
|
47272
|
-
"selector_stack_panel/how_to_play_button": {
|
|
47273
|
-
type: T.PANEL;
|
|
47274
|
-
children: string;
|
|
47275
|
-
};
|
|
47276
47344
|
"selector_stack_panel/spacer_01": {
|
|
47277
47345
|
type: T.PANEL;
|
|
47278
47346
|
children: string;
|
|
@@ -47591,7 +47659,7 @@ export type SettingsType = {
|
|
|
47591
47659
|
};
|
|
47592
47660
|
"section_content_panels/general_and_controls_sections": {
|
|
47593
47661
|
type: T.STACK_PANEL;
|
|
47594
|
-
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'
|
|
47662
|
+
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';
|
|
47595
47663
|
};
|
|
47596
47664
|
"section_content_panels/general_and_controls_sections/accessibility_section": {
|
|
47597
47665
|
type: T.STACK_PANEL;
|
|
@@ -47701,10 +47769,6 @@ export type SettingsType = {
|
|
|
47701
47769
|
type: T.STACK_PANEL;
|
|
47702
47770
|
children: string;
|
|
47703
47771
|
};
|
|
47704
|
-
"section_content_panels/general_and_controls_sections/how_to_play_section": {
|
|
47705
|
-
type: T.STACK_PANEL;
|
|
47706
|
-
children: string;
|
|
47707
|
-
};
|
|
47708
47772
|
"section_header_panels": {
|
|
47709
47773
|
type: T.PANEL;
|
|
47710
47774
|
children: 'world_sections' | 'general_and_controls_sections';
|
|
@@ -48291,7 +48355,7 @@ export type GeneralSectionType = {
|
|
|
48291
48355
|
};
|
|
48292
48356
|
"general_tab_section": {
|
|
48293
48357
|
type: T.STACK_PANEL;
|
|
48294
|
-
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';
|
|
48358
|
+
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';
|
|
48295
48359
|
};
|
|
48296
48360
|
"general_tab_section/option_toggle_fail_realms_purchase_fulfillment": {
|
|
48297
48361
|
type: T.PANEL;
|
|
@@ -48393,6 +48457,10 @@ export type GeneralSectionType = {
|
|
|
48393
48457
|
type: T.PANEL;
|
|
48394
48458
|
children: string;
|
|
48395
48459
|
};
|
|
48460
|
+
"general_tab_section/pause_menu_on_focus_lost": {
|
|
48461
|
+
type: T.PANEL;
|
|
48462
|
+
children: string;
|
|
48463
|
+
};
|
|
48396
48464
|
"general_tab_section/paddingLinkEduSupport": {
|
|
48397
48465
|
type: T.PANEL;
|
|
48398
48466
|
children: string;
|
|
@@ -49145,6 +49213,34 @@ export type GeneralSectionType = {
|
|
|
49145
49213
|
type: T.PANEL;
|
|
49146
49214
|
children: string;
|
|
49147
49215
|
};
|
|
49216
|
+
"editor_toggles_panel": {
|
|
49217
|
+
type: T.STACK_PANEL;
|
|
49218
|
+
children: 'section_panel_1' | 'primary_panel';
|
|
49219
|
+
};
|
|
49220
|
+
"editor_toggles_panel/section_panel_1": {
|
|
49221
|
+
type: T.PANEL;
|
|
49222
|
+
children: 'section_divider';
|
|
49223
|
+
};
|
|
49224
|
+
"editor_toggles_panel/section_panel_1/section_divider": {
|
|
49225
|
+
type: T.IMAGE;
|
|
49226
|
+
children: string;
|
|
49227
|
+
};
|
|
49228
|
+
"editor_toggles_panel/primary_panel": {
|
|
49229
|
+
type: T.STACK_PANEL;
|
|
49230
|
+
children: 'content_log_section_label' | 'content_log_section_label_spacer' | 'clipboard_setting';
|
|
49231
|
+
};
|
|
49232
|
+
"editor_toggles_panel/primary_panel/content_log_section_label": {
|
|
49233
|
+
type: T.LABEL;
|
|
49234
|
+
children: string;
|
|
49235
|
+
};
|
|
49236
|
+
"editor_toggles_panel/primary_panel/content_log_section_label_spacer": {
|
|
49237
|
+
type: T.PANEL;
|
|
49238
|
+
children: string;
|
|
49239
|
+
};
|
|
49240
|
+
"editor_toggles_panel/primary_panel/clipboard_setting": {
|
|
49241
|
+
type: T.PANEL;
|
|
49242
|
+
children: string;
|
|
49243
|
+
};
|
|
49148
49244
|
"diagnostics_toggles_panel": {
|
|
49149
49245
|
type: T.STACK_PANEL;
|
|
49150
49246
|
children: 'section_panel_1' | 'primary_panel';
|
|
@@ -49331,7 +49427,7 @@ export type GeneralSectionType = {
|
|
|
49331
49427
|
};
|
|
49332
49428
|
"creator_section": {
|
|
49333
49429
|
type: T.STACK_PANEL;
|
|
49334
|
-
children: 'editor_toggle' | 'creator_toggles' | 'debugger_toggles_panel' | 'diagnostics_toggle_panel' | 'watchdog_toggles_panel' | 'device_info_toggles_panel' | 'content_log_panel';
|
|
49430
|
+
children: 'editor_toggle' | 'creator_toggles' | 'debugger_toggles_panel' | 'diagnostics_toggle_panel' | 'watchdog_toggles_panel' | 'editor_toggles_panel' | 'device_info_toggles_panel' | 'content_log_panel';
|
|
49335
49431
|
};
|
|
49336
49432
|
"creator_section/editor_toggle": {
|
|
49337
49433
|
type: T.STACK_PANEL;
|
|
@@ -49353,6 +49449,10 @@ export type GeneralSectionType = {
|
|
|
49353
49449
|
type: T.STACK_PANEL;
|
|
49354
49450
|
children: string;
|
|
49355
49451
|
};
|
|
49452
|
+
"creator_section/editor_toggles_panel": {
|
|
49453
|
+
type: T.STACK_PANEL;
|
|
49454
|
+
children: string;
|
|
49455
|
+
};
|
|
49356
49456
|
"creator_section/device_info_toggles_panel": {
|
|
49357
49457
|
type: T.STACK_PANEL;
|
|
49358
49458
|
children: string;
|
|
@@ -49407,7 +49507,7 @@ export type GeneralSectionType = {
|
|
|
49407
49507
|
};
|
|
49408
49508
|
"video_section": {
|
|
49409
49509
|
type: T.STACK_PANEL;
|
|
49410
|
-
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';
|
|
49510
|
+
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';
|
|
49411
49511
|
};
|
|
49412
49512
|
"video_section/advanced_graphics_options_panel": {
|
|
49413
49513
|
type: T.STACK_PANEL;
|
|
@@ -49817,6 +49917,14 @@ export type GeneralSectionType = {
|
|
|
49817
49917
|
type: T.PANEL;
|
|
49818
49918
|
children: string;
|
|
49819
49919
|
};
|
|
49920
|
+
"video_section/texture_streaming_toggle": {
|
|
49921
|
+
type: T.PANEL;
|
|
49922
|
+
children: string;
|
|
49923
|
+
};
|
|
49924
|
+
"video_section/spacer_37": {
|
|
49925
|
+
type: T.PANEL;
|
|
49926
|
+
children: string;
|
|
49927
|
+
};
|
|
49820
49928
|
"video_section/reset_button": {
|
|
49821
49929
|
type: T.BUTTON;
|
|
49822
49930
|
children: string;
|
|
@@ -50795,7 +50903,7 @@ export type GeneralSectionType = {
|
|
|
50795
50903
|
};
|
|
50796
50904
|
"debug_override_treatments_panel/override_treatments_panel_background": {
|
|
50797
50905
|
type: T.STACK_PANEL;
|
|
50798
|
-
children: 'option_toggle_treatment_override' | 'spacer_0' | 'override_treatment_options_panel' | 'treatments_label_panel' | '
|
|
50906
|
+
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';
|
|
50799
50907
|
};
|
|
50800
50908
|
"debug_override_treatments_panel/override_treatments_panel_background/option_toggle_treatment_override": {
|
|
50801
50909
|
type: T.PANEL;
|
|
@@ -50849,14 +50957,6 @@ export type GeneralSectionType = {
|
|
|
50849
50957
|
type: T.LABEL;
|
|
50850
50958
|
children: string;
|
|
50851
50959
|
};
|
|
50852
|
-
"debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_1": {
|
|
50853
|
-
type: T.PANEL;
|
|
50854
|
-
children: 'progress_loading_spinner_1';
|
|
50855
|
-
};
|
|
50856
|
-
"debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_1/progress_loading_spinner_1": {
|
|
50857
|
-
type: T.IMAGE;
|
|
50858
|
-
children: string;
|
|
50859
|
-
};
|
|
50860
50960
|
"debug_override_treatments_panel/override_treatments_panel_background/treatment_grid": {
|
|
50861
50961
|
type: T.GRID;
|
|
50862
50962
|
children: string;
|
|
@@ -50869,14 +50969,6 @@ export type GeneralSectionType = {
|
|
|
50869
50969
|
type: T.LABEL;
|
|
50870
50970
|
children: string;
|
|
50871
50971
|
};
|
|
50872
|
-
"debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_2": {
|
|
50873
|
-
type: T.PANEL;
|
|
50874
|
-
children: 'progress_loading_spinner_2';
|
|
50875
|
-
};
|
|
50876
|
-
"debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_2/progress_loading_spinner_2": {
|
|
50877
|
-
type: T.IMAGE;
|
|
50878
|
-
children: string;
|
|
50879
|
-
};
|
|
50880
50972
|
"debug_override_treatments_panel/override_treatments_panel_background/unused_treatment_grid": {
|
|
50881
50973
|
type: T.GRID;
|
|
50882
50974
|
children: string;
|
|
@@ -51351,7 +51443,7 @@ export type GeneralSectionType = {
|
|
|
51351
51443
|
};
|
|
51352
51444
|
"debug_section": {
|
|
51353
51445
|
type: T.STACK_PANEL;
|
|
51354
|
-
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';
|
|
51446
|
+
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';
|
|
51355
51447
|
};
|
|
51356
51448
|
"debug_section/options_for_qa_convenience": {
|
|
51357
51449
|
type: T.LABEL;
|
|
@@ -51681,6 +51773,10 @@ export type GeneralSectionType = {
|
|
|
51681
51773
|
type: T.BUTTON;
|
|
51682
51774
|
children: string;
|
|
51683
51775
|
};
|
|
51776
|
+
"debug_section/reset_show_hardcore_warning_option": {
|
|
51777
|
+
type: T.BUTTON;
|
|
51778
|
+
children: string;
|
|
51779
|
+
};
|
|
51684
51780
|
"debug_section/reset_low_ping_warning_option": {
|
|
51685
51781
|
type: T.BUTTON;
|
|
51686
51782
|
children: string;
|
|
@@ -52067,7 +52163,7 @@ export type GeneralSectionType = {
|
|
|
52067
52163
|
};
|
|
52068
52164
|
"ui_debug_section": {
|
|
52069
52165
|
type: T.STACK_PANEL;
|
|
52070
|
-
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';
|
|
52166
|
+
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';
|
|
52071
52167
|
};
|
|
52072
52168
|
"ui_debug_section/ui_feature_toggles_label": {
|
|
52073
52169
|
type: T.LABEL;
|
|
@@ -52309,6 +52405,54 @@ export type GeneralSectionType = {
|
|
|
52309
52405
|
type: T.PANEL;
|
|
52310
52406
|
children: string;
|
|
52311
52407
|
};
|
|
52408
|
+
"ui_debug_section/end_of_other_options_divider": {
|
|
52409
|
+
type: T.PANEL;
|
|
52410
|
+
children: 'section_divider';
|
|
52411
|
+
};
|
|
52412
|
+
"ui_debug_section/end_of_other_options_divider/section_divider": {
|
|
52413
|
+
type: T.IMAGE;
|
|
52414
|
+
children: string;
|
|
52415
|
+
};
|
|
52416
|
+
"ui_debug_section/end_of_other_options_spacer": {
|
|
52417
|
+
type: T.PANEL;
|
|
52418
|
+
children: string;
|
|
52419
|
+
};
|
|
52420
|
+
"ui_debug_section/debug_data_label": {
|
|
52421
|
+
type: T.LABEL;
|
|
52422
|
+
children: string;
|
|
52423
|
+
};
|
|
52424
|
+
"ui_debug_section/debug_data_label_spacer": {
|
|
52425
|
+
type: T.PANEL;
|
|
52426
|
+
children: string;
|
|
52427
|
+
};
|
|
52428
|
+
"ui_debug_section/option_continuous_repaint": {
|
|
52429
|
+
type: T.PANEL;
|
|
52430
|
+
children: string;
|
|
52431
|
+
};
|
|
52432
|
+
"ui_debug_section/option_show_paint_rects": {
|
|
52433
|
+
type: T.PANEL;
|
|
52434
|
+
children: string;
|
|
52435
|
+
};
|
|
52436
|
+
"ui_debug_section/option_show_element_aabb": {
|
|
52437
|
+
type: T.PANEL;
|
|
52438
|
+
children: string;
|
|
52439
|
+
};
|
|
52440
|
+
"ui_debug_section/option_emulate_touch_events": {
|
|
52441
|
+
type: T.PANEL;
|
|
52442
|
+
children: string;
|
|
52443
|
+
};
|
|
52444
|
+
"ui_debug_section/end_of_debug_data_divider": {
|
|
52445
|
+
type: T.PANEL;
|
|
52446
|
+
children: 'section_divider';
|
|
52447
|
+
};
|
|
52448
|
+
"ui_debug_section/end_of_debug_data_divider/section_divider": {
|
|
52449
|
+
type: T.IMAGE;
|
|
52450
|
+
children: string;
|
|
52451
|
+
};
|
|
52452
|
+
"ui_debug_section/end_of_debug_data_spacer": {
|
|
52453
|
+
type: T.PANEL;
|
|
52454
|
+
children: string;
|
|
52455
|
+
};
|
|
52312
52456
|
"ui_debug_section/option_slider_drag_dwell": {
|
|
52313
52457
|
type: T.PANEL;
|
|
52314
52458
|
children: string;
|
|
@@ -53653,6 +53797,10 @@ export type SettingsCommonType = {
|
|
|
53653
53797
|
type: T.SCREEN;
|
|
53654
53798
|
children: string;
|
|
53655
53799
|
};
|
|
53800
|
+
"dynamic_dialog_fullscreen": {
|
|
53801
|
+
type: T.SCREEN;
|
|
53802
|
+
children: string;
|
|
53803
|
+
};
|
|
53656
53804
|
"settings_content": {
|
|
53657
53805
|
type: T.PANEL;
|
|
53658
53806
|
children: 'background' | 'stack_panel' | 'popup_dialog_factory';
|
|
@@ -71169,6 +71317,10 @@ export type CommonType = {
|
|
|
71169
71317
|
type: T.PANEL;
|
|
71170
71318
|
children: string;
|
|
71171
71319
|
};
|
|
71320
|
+
"container_gamepad_helpers_pocket": {
|
|
71321
|
+
type: T.STACK_PANEL;
|
|
71322
|
+
children: string;
|
|
71323
|
+
};
|
|
71172
71324
|
"gamepad_helper_bumpers": {
|
|
71173
71325
|
type: T.PANEL;
|
|
71174
71326
|
children: 'gamepad_helper_left_bumper' | 'gamepad_helper_right_bumper';
|
|
@@ -71205,6 +71357,22 @@ export type CommonType = {
|
|
|
71205
71357
|
type: T.STACK_PANEL;
|
|
71206
71358
|
children: string;
|
|
71207
71359
|
};
|
|
71360
|
+
"container_x_gamepad_helper": {
|
|
71361
|
+
type: T.STACK_PANEL;
|
|
71362
|
+
children: string;
|
|
71363
|
+
};
|
|
71364
|
+
"container_y_gamepad_helper": {
|
|
71365
|
+
type: T.STACK_PANEL;
|
|
71366
|
+
children: string;
|
|
71367
|
+
};
|
|
71368
|
+
"container_a_gamepad_helper": {
|
|
71369
|
+
type: T.STACK_PANEL;
|
|
71370
|
+
children: string;
|
|
71371
|
+
};
|
|
71372
|
+
"container_b_gamepad_helper": {
|
|
71373
|
+
type: T.STACK_PANEL;
|
|
71374
|
+
children: string;
|
|
71375
|
+
};
|
|
71208
71376
|
"keyboard_helper_description": {
|
|
71209
71377
|
type: T.LABEL;
|
|
71210
71378
|
children: string;
|
|
@@ -71945,6 +72113,14 @@ export type CommonType = {
|
|
|
71945
72113
|
type: T.PANEL;
|
|
71946
72114
|
children: string;
|
|
71947
72115
|
};
|
|
72116
|
+
"mapped_scroll_panel": {
|
|
72117
|
+
type: T.PANEL;
|
|
72118
|
+
children: string;
|
|
72119
|
+
};
|
|
72120
|
+
"scroll_panel_pocket": {
|
|
72121
|
+
type: T.PANEL;
|
|
72122
|
+
children: string;
|
|
72123
|
+
};
|
|
71948
72124
|
"container_slot_button_prototype": {
|
|
71949
72125
|
type: T.BUTTON;
|
|
71950
72126
|
children: 'hover';
|
|
@@ -74801,6 +74977,14 @@ export type CommonDialogsType = {
|
|
|
74801
74977
|
};
|
|
74802
74978
|
};
|
|
74803
74979
|
export type CommonTabsType = {
|
|
74980
|
+
"empty_tab_panel": {
|
|
74981
|
+
type: T.PANEL;
|
|
74982
|
+
children: 'img';
|
|
74983
|
+
};
|
|
74984
|
+
"empty_tab_panel/img": {
|
|
74985
|
+
type: T.UNKNOWN;
|
|
74986
|
+
children: string;
|
|
74987
|
+
};
|
|
74804
74988
|
"empty_tab_content": {
|
|
74805
74989
|
type: T.PANEL;
|
|
74806
74990
|
children: string;
|
|
@@ -74841,14 +75025,26 @@ export type CommonTabsType = {
|
|
|
74841
75025
|
type: T.PANEL;
|
|
74842
75026
|
children: string;
|
|
74843
75027
|
};
|
|
75028
|
+
"pocket_empty_tab_panel": {
|
|
75029
|
+
type: T.PANEL;
|
|
75030
|
+
children: string;
|
|
75031
|
+
};
|
|
74844
75032
|
"pocket_tab_left": {
|
|
74845
75033
|
type: T.PANEL;
|
|
74846
75034
|
children: string;
|
|
74847
75035
|
};
|
|
75036
|
+
"pocket_left_tab_v2": {
|
|
75037
|
+
type: T.PANEL;
|
|
75038
|
+
children: string;
|
|
75039
|
+
};
|
|
74848
75040
|
"pocket_tab_right": {
|
|
74849
75041
|
type: T.PANEL;
|
|
74850
75042
|
children: string;
|
|
74851
75043
|
};
|
|
75044
|
+
"pocket_right_tab_v2": {
|
|
75045
|
+
type: T.PANEL;
|
|
75046
|
+
children: string;
|
|
75047
|
+
};
|
|
74852
75048
|
"pocket_tab_close_button": {
|
|
74853
75049
|
type: T.IMAGE;
|
|
74854
75050
|
children: 'close_button';
|