asajs 4.0.3 → 4.0.4-preview
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/compilers/Configuration.js +4 -3
- package/dist/js/types/enums/Items.js +1 -0
- package/dist/js/types/vanilla/paths.js +236 -140
- package/dist/types/types/enums/Items.d.ts +1 -0
- package/dist/types/types/vanilla/intellisense.d.ts +848 -464
- package/dist/types/types/vanilla/paths.d.ts +236 -140
- package/package.json +1 -1
- /package/resources/{asajs.config.cjs → asajs.config.js} +0 -0
|
@@ -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;
|
|
@@ -20855,6 +20899,14 @@ export type HudType = {
|
|
|
20855
20899
|
type: T.STACK_PANEL;
|
|
20856
20900
|
children: string;
|
|
20857
20901
|
};
|
|
20902
|
+
"subtitle_panel": {
|
|
20903
|
+
type: T.PANEL;
|
|
20904
|
+
children: 'stack_panel';
|
|
20905
|
+
};
|
|
20906
|
+
"subtitle_panel/stack_panel": {
|
|
20907
|
+
type: T.STACK_PANEL;
|
|
20908
|
+
children: string;
|
|
20909
|
+
};
|
|
20858
20910
|
"item_durability": {
|
|
20859
20911
|
type: T.CUSTOM;
|
|
20860
20912
|
children: string;
|
|
@@ -21541,7 +21593,7 @@ export type HudType = {
|
|
|
21541
21593
|
};
|
|
21542
21594
|
"root_panel": {
|
|
21543
21595
|
type: T.PANEL;
|
|
21544
|
-
children: 'layout_customization_reset' | 'layout_customization_close_without_saving' | 'layout_customization_main_panel' | 'layout_customization_sub_panel' | 'layout_customization_hint_drag_frame' | 'layout_customization_hint_deselect_frame' | 'layout_customization_hint_saved' | 'left_helpers' | 'right_helpers' | 'emote_expediate_helpers' | 'centered_gui_elements' | 'centered_gui_elements_at_bottom_middle' | 'centered_gui_elements_at_bottom_middle_touch' | 'not_centered_gui_elements' | 'gamertag_label_for_splitscreen' | 'exp_rend' | 'exp_rend_resizable' | 'hud_tip_text_factory' | 'hud_actionbar_text_area' | 'hud_title_text_area' | 'mob_effects_renderer' | 'vignette_rend' | 'curor_rend' | 'game_tip' | 'sidebar' | 'progress_rend' | 'chat_stack' | 'boss_health_panel' | 'save_icon';
|
|
21596
|
+
children: 'layout_customization_reset' | 'layout_customization_close_without_saving' | 'layout_customization_main_panel' | 'layout_customization_sub_panel' | 'layout_customization_hint_drag_frame' | 'layout_customization_hint_deselect_frame' | 'layout_customization_hint_saved' | 'left_helpers' | 'right_helpers' | 'subtitle_stack' | 'emote_expediate_helpers' | 'centered_gui_elements' | 'centered_gui_elements_at_bottom_middle' | 'centered_gui_elements_at_bottom_middle_touch' | 'not_centered_gui_elements' | 'gamertag_label_for_splitscreen' | 'exp_rend' | 'exp_rend_resizable' | 'hud_tip_text_factory' | 'hud_actionbar_text_area' | 'hud_title_text_area' | 'mob_effects_renderer' | 'vignette_rend' | 'curor_rend' | 'game_tip' | 'sidebar' | 'progress_rend' | 'chat_stack' | 'boss_health_panel' | 'save_icon';
|
|
21545
21597
|
};
|
|
21546
21598
|
"root_panel/layout_customization_reset": {
|
|
21547
21599
|
type: T.IMAGE;
|
|
@@ -21599,6 +21651,18 @@ export type HudType = {
|
|
|
21599
21651
|
type: T.PANEL;
|
|
21600
21652
|
children: string;
|
|
21601
21653
|
};
|
|
21654
|
+
"root_panel/subtitle_stack": {
|
|
21655
|
+
type: T.STACK_PANEL;
|
|
21656
|
+
children: 'subtitle_padding' | 'subtitle_panel';
|
|
21657
|
+
};
|
|
21658
|
+
"root_panel/subtitle_stack/subtitle_padding": {
|
|
21659
|
+
type: T.PANEL;
|
|
21660
|
+
children: string;
|
|
21661
|
+
};
|
|
21662
|
+
"root_panel/subtitle_stack/subtitle_panel": {
|
|
21663
|
+
type: T.PANEL;
|
|
21664
|
+
children: string;
|
|
21665
|
+
};
|
|
21602
21666
|
"root_panel/emote_expediate_helpers": {
|
|
21603
21667
|
type: T.PANEL;
|
|
21604
21668
|
children: string;
|
|
@@ -22275,18 +22339,6 @@ export type CraftingType = {
|
|
|
22275
22339
|
type: T.STACK_PANEL;
|
|
22276
22340
|
children: string;
|
|
22277
22341
|
};
|
|
22278
|
-
"gamepad_helper_bumpers": {
|
|
22279
|
-
type: T.PANEL;
|
|
22280
|
-
children: 'gamepad_helper_left_bumper' | 'gamepad_helper_right_bumper';
|
|
22281
|
-
};
|
|
22282
|
-
"gamepad_helper_bumpers/gamepad_helper_left_bumper": {
|
|
22283
|
-
type: T.STACK_PANEL;
|
|
22284
|
-
children: string;
|
|
22285
|
-
};
|
|
22286
|
-
"gamepad_helper_bumpers/gamepad_helper_right_bumper": {
|
|
22287
|
-
type: T.STACK_PANEL;
|
|
22288
|
-
children: string;
|
|
22289
|
-
};
|
|
22290
22342
|
"gamepad_helper_left_trigger": {
|
|
22291
22343
|
type: T.STACK_PANEL;
|
|
22292
22344
|
children: string;
|
|
@@ -22327,14 +22379,6 @@ export type CraftingType = {
|
|
|
22327
22379
|
type: T.PANEL;
|
|
22328
22380
|
children: string;
|
|
22329
22381
|
};
|
|
22330
|
-
"crafting_root_panel": {
|
|
22331
|
-
type: T.INPUT_PANEL;
|
|
22332
|
-
children: string;
|
|
22333
|
-
};
|
|
22334
|
-
"drop_item_panel": {
|
|
22335
|
-
type: T.INPUT_PANEL;
|
|
22336
|
-
children: string;
|
|
22337
|
-
};
|
|
22338
22382
|
"inventory_container_slot_button": {
|
|
22339
22383
|
type: T.BUTTON;
|
|
22340
22384
|
children: string;
|
|
@@ -22355,38 +22399,10 @@ export type CraftingType = {
|
|
|
22355
22399
|
type: T.BUTTON;
|
|
22356
22400
|
children: string;
|
|
22357
22401
|
};
|
|
22358
|
-
"tab_image": {
|
|
22359
|
-
type: T.IMAGE;
|
|
22360
|
-
children: string;
|
|
22361
|
-
};
|
|
22362
22402
|
"item_renderer": {
|
|
22363
22403
|
type: T.CUSTOM;
|
|
22364
22404
|
children: string;
|
|
22365
22405
|
};
|
|
22366
|
-
"inventory_icon": {
|
|
22367
|
-
type: T.IMAGE;
|
|
22368
|
-
children: string;
|
|
22369
|
-
};
|
|
22370
|
-
"recipe_book_icon": {
|
|
22371
|
-
type: T.IMAGE;
|
|
22372
|
-
children: string;
|
|
22373
|
-
};
|
|
22374
|
-
"creative_icon": {
|
|
22375
|
-
type: T.IMAGE;
|
|
22376
|
-
children: string;
|
|
22377
|
-
};
|
|
22378
|
-
"icon_image": {
|
|
22379
|
-
type: T.IMAGE;
|
|
22380
|
-
children: string;
|
|
22381
|
-
};
|
|
22382
|
-
"tab_front": {
|
|
22383
|
-
type: T.IMAGE;
|
|
22384
|
-
children: string;
|
|
22385
|
-
};
|
|
22386
|
-
"tab_back": {
|
|
22387
|
-
type: T.IMAGE;
|
|
22388
|
-
children: string;
|
|
22389
|
-
};
|
|
22390
22406
|
"equipment_icon": {
|
|
22391
22407
|
type: T.IMAGE;
|
|
22392
22408
|
children: string;
|
|
@@ -22399,11 +22415,7 @@ export type CraftingType = {
|
|
|
22399
22415
|
type: T.IMAGE;
|
|
22400
22416
|
children: string;
|
|
22401
22417
|
};
|
|
22402
|
-
"
|
|
22403
|
-
type: T.IMAGE;
|
|
22404
|
-
children: string;
|
|
22405
|
-
};
|
|
22406
|
-
"miscellaneous_icon": {
|
|
22418
|
+
"items_icon": {
|
|
22407
22419
|
type: T.IMAGE;
|
|
22408
22420
|
children: string;
|
|
22409
22421
|
};
|
|
@@ -22507,6 +22519,10 @@ export type CraftingType = {
|
|
|
22507
22519
|
type: T.PANEL;
|
|
22508
22520
|
children: string;
|
|
22509
22521
|
};
|
|
22522
|
+
"creative_label": {
|
|
22523
|
+
type: T.LABEL;
|
|
22524
|
+
children: string;
|
|
22525
|
+
};
|
|
22510
22526
|
"tab_content": {
|
|
22511
22527
|
type: T.PANEL;
|
|
22512
22528
|
children: 'tab_content_search_bar_panel' | 'nodrop_zone';
|
|
@@ -22999,6 +23015,10 @@ export type CraftingType = {
|
|
|
22999
23015
|
type: T.INPUT_PANEL;
|
|
23000
23016
|
children: string;
|
|
23001
23017
|
};
|
|
23018
|
+
"scroll_grid": {
|
|
23019
|
+
type: T.GRID;
|
|
23020
|
+
children: string;
|
|
23021
|
+
};
|
|
23002
23022
|
"scroll_grid_panel": {
|
|
23003
23023
|
type: T.INPUT_PANEL;
|
|
23004
23024
|
children: 'grid';
|
|
@@ -23007,78 +23027,18 @@ export type CraftingType = {
|
|
|
23007
23027
|
type: T.GRID;
|
|
23008
23028
|
children: string;
|
|
23009
23029
|
};
|
|
23010
|
-
"scroll_grid": {
|
|
23011
|
-
type: T.GRID;
|
|
23012
|
-
children: string;
|
|
23013
|
-
};
|
|
23014
|
-
"scroll_panel": {
|
|
23015
|
-
type: T.PANEL;
|
|
23016
|
-
children: string;
|
|
23017
|
-
};
|
|
23018
23030
|
"recipe_book_scroll_panel": {
|
|
23019
23031
|
type: T.PANEL;
|
|
23020
23032
|
children: string;
|
|
23021
23033
|
};
|
|
23022
|
-
"
|
|
23023
|
-
type: T.LABEL;
|
|
23024
|
-
children: string;
|
|
23025
|
-
};
|
|
23026
|
-
"filter_toggle": {
|
|
23027
|
-
type: T.PANEL;
|
|
23028
|
-
children: string;
|
|
23029
|
-
};
|
|
23030
|
-
"toolbar_background": {
|
|
23031
|
-
type: T.IMAGE;
|
|
23032
|
-
children: string;
|
|
23033
|
-
};
|
|
23034
|
-
"layout_toggle_content": {
|
|
23035
|
-
type: T.PANEL;
|
|
23036
|
-
children: 'image' | 'icon';
|
|
23037
|
-
};
|
|
23038
|
-
"layout_toggle_content/image": {
|
|
23039
|
-
type: T.UNKNOWN;
|
|
23040
|
-
children: string;
|
|
23041
|
-
};
|
|
23042
|
-
"layout_toggle_content/icon": {
|
|
23043
|
-
type: T.UNKNOWN;
|
|
23044
|
-
children: string;
|
|
23045
|
-
};
|
|
23046
|
-
"layout_template_toggle": {
|
|
23047
|
-
type: T.TOGGLE;
|
|
23048
|
-
children: string;
|
|
23049
|
-
};
|
|
23050
|
-
"layout_toggle": {
|
|
23051
|
-
type: T.PANEL;
|
|
23052
|
-
children: string;
|
|
23053
|
-
};
|
|
23054
|
-
"creative_layout_toggle": {
|
|
23055
|
-
type: T.PANEL;
|
|
23056
|
-
children: string;
|
|
23057
|
-
};
|
|
23058
|
-
"recipe_book_layout_toggle": {
|
|
23034
|
+
"scroll_panel": {
|
|
23059
23035
|
type: T.PANEL;
|
|
23060
23036
|
children: string;
|
|
23061
23037
|
};
|
|
23062
|
-
"
|
|
23038
|
+
"filter_toggle": {
|
|
23063
23039
|
type: T.PANEL;
|
|
23064
23040
|
children: string;
|
|
23065
23041
|
};
|
|
23066
|
-
"help_button": {
|
|
23067
|
-
type: T.BUTTON;
|
|
23068
|
-
children: 'default' | 'hover' | 'pressed';
|
|
23069
|
-
};
|
|
23070
|
-
"help_button/default": {
|
|
23071
|
-
type: T.IMAGE;
|
|
23072
|
-
children: string;
|
|
23073
|
-
};
|
|
23074
|
-
"help_button/hover": {
|
|
23075
|
-
type: T.IMAGE;
|
|
23076
|
-
children: string;
|
|
23077
|
-
};
|
|
23078
|
-
"help_button/pressed": {
|
|
23079
|
-
type: T.IMAGE;
|
|
23080
|
-
children: string;
|
|
23081
|
-
};
|
|
23082
23042
|
"player_inventory": {
|
|
23083
23043
|
type: T.INPUT_PANEL;
|
|
23084
23044
|
children: 'common_panel' | 'inventory_panel_top_half' | 'inventory_panel_bottom_half' | 'hotbar_grid';
|
|
@@ -23135,14 +23095,6 @@ export type CraftingType = {
|
|
|
23135
23095
|
type: T.GRID;
|
|
23136
23096
|
children: string;
|
|
23137
23097
|
};
|
|
23138
|
-
"center_fold": {
|
|
23139
|
-
type: T.INPUT_PANEL;
|
|
23140
|
-
children: 'center_bg';
|
|
23141
|
-
};
|
|
23142
|
-
"center_fold/center_bg": {
|
|
23143
|
-
type: T.IMAGE;
|
|
23144
|
-
children: string;
|
|
23145
|
-
};
|
|
23146
23098
|
"toolbar_panel": {
|
|
23147
23099
|
type: T.INPUT_PANEL;
|
|
23148
23100
|
children: 'toolbar_background';
|
|
@@ -23153,7 +23105,7 @@ export type CraftingType = {
|
|
|
23153
23105
|
};
|
|
23154
23106
|
"toolbar_panel/toolbar_background/toolbar_stack_panel": {
|
|
23155
23107
|
type: T.STACK_PANEL;
|
|
23156
|
-
children: 'left_trigger_anchor' | 'padding_0' | 'creative_layout_toggle_panel' | 'padding_1' | '
|
|
23108
|
+
children: 'left_trigger_anchor' | 'padding_0' | 'creative_layout_toggle_panel' | 'padding_1' | 'recipe_book_layout_toggle_panel' | 'padding_2' | 'survival_layout_toggle_panel' | 'padding_3' | 'help_button_panel' | 'close_button_panel' | 'padding_4' | 'right_trigger_anchor';
|
|
23157
23109
|
};
|
|
23158
23110
|
"toolbar_panel/toolbar_background/toolbar_stack_panel/left_trigger_anchor": {
|
|
23159
23111
|
type: T.PANEL;
|
|
@@ -23179,19 +23131,11 @@ export type CraftingType = {
|
|
|
23179
23131
|
type: T.PANEL;
|
|
23180
23132
|
children: string;
|
|
23181
23133
|
};
|
|
23182
|
-
"toolbar_panel/toolbar_background/toolbar_stack_panel/
|
|
23134
|
+
"toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel": {
|
|
23183
23135
|
type: T.PANEL;
|
|
23184
23136
|
children: 'recipe_book_layout_toggle';
|
|
23185
23137
|
};
|
|
23186
|
-
"toolbar_panel/toolbar_background/toolbar_stack_panel/
|
|
23187
|
-
type: T.PANEL;
|
|
23188
|
-
children: string;
|
|
23189
|
-
};
|
|
23190
|
-
"toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_creative": {
|
|
23191
|
-
type: T.PANEL;
|
|
23192
|
-
children: 'recipe_book_layout_toggle';
|
|
23193
|
-
};
|
|
23194
|
-
"toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel_creative/recipe_book_layout_toggle": {
|
|
23138
|
+
"toolbar_panel/toolbar_background/toolbar_stack_panel/recipe_book_layout_toggle_panel/recipe_book_layout_toggle": {
|
|
23195
23139
|
type: T.PANEL;
|
|
23196
23140
|
children: string;
|
|
23197
23141
|
};
|
|
@@ -23251,10 +23195,6 @@ export type CraftingType = {
|
|
|
23251
23195
|
type: T.SCREEN;
|
|
23252
23196
|
children: string;
|
|
23253
23197
|
};
|
|
23254
|
-
"recipe_book_toggle_image": {
|
|
23255
|
-
type: T.IMAGE;
|
|
23256
|
-
children: string;
|
|
23257
|
-
};
|
|
23258
23198
|
"recipe_inventory_screen_content": {
|
|
23259
23199
|
type: T.PANEL;
|
|
23260
23200
|
children: 'content_stack_panel' | 'inventory_take_progress_icon_button' | 'inventory_selected_icon_button' | 'hold_icon' | 'controller_gamepad_helpers_stack_panel' | 'selected_item_details_factory' | 'item_lock_notification_factory' | 'flying_item_renderer';
|
|
@@ -24617,7 +24557,11 @@ export type InviteType = {
|
|
|
24617
24557
|
};
|
|
24618
24558
|
"scrolling_content_stack": {
|
|
24619
24559
|
type: T.STACK_PANEL;
|
|
24620
|
-
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';
|
|
24560
|
+
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';
|
|
24561
|
+
};
|
|
24562
|
+
"scrolling_content_stack/invite_party_panel": {
|
|
24563
|
+
type: T.PANEL;
|
|
24564
|
+
children: string;
|
|
24621
24565
|
};
|
|
24622
24566
|
"scrolling_content_stack/message": {
|
|
24623
24567
|
type: T.PANEL;
|
|
@@ -24727,6 +24671,30 @@ export type InviteType = {
|
|
|
24727
24671
|
type: T.PANEL;
|
|
24728
24672
|
children: string;
|
|
24729
24673
|
};
|
|
24674
|
+
"invite_party_panel": {
|
|
24675
|
+
type: T.PANEL;
|
|
24676
|
+
children: 'frame_label' | 'frame_description' | 'our_toggle' | 'border_outline';
|
|
24677
|
+
};
|
|
24678
|
+
"invite_party_panel/frame_label": {
|
|
24679
|
+
type: T.LABEL;
|
|
24680
|
+
children: string;
|
|
24681
|
+
};
|
|
24682
|
+
"invite_party_panel/frame_description": {
|
|
24683
|
+
type: T.LABEL;
|
|
24684
|
+
children: string;
|
|
24685
|
+
};
|
|
24686
|
+
"invite_party_panel/our_toggle": {
|
|
24687
|
+
type: T.TOGGLE;
|
|
24688
|
+
children: string;
|
|
24689
|
+
};
|
|
24690
|
+
"invite_party_panel/border_outline": {
|
|
24691
|
+
type: T.IMAGE;
|
|
24692
|
+
children: string;
|
|
24693
|
+
};
|
|
24694
|
+
"friend_button_test": {
|
|
24695
|
+
type: T.TOGGLE;
|
|
24696
|
+
children: string;
|
|
24697
|
+
};
|
|
24730
24698
|
"progress_bar_and_scrolling_content_panel": {
|
|
24731
24699
|
type: T.PANEL;
|
|
24732
24700
|
children: 'progress_loading_bars' | 'invite_scrolling_area';
|
|
@@ -26810,6 +26778,14 @@ export type SdlTextRowType = {
|
|
|
26810
26778
|
};
|
|
26811
26779
|
export type MobEffectType = {
|
|
26812
26780
|
"effect_background": {
|
|
26781
|
+
type: T.PANEL;
|
|
26782
|
+
children: 'default_background' | 'ambient_background';
|
|
26783
|
+
};
|
|
26784
|
+
"effect_background/default_background": {
|
|
26785
|
+
type: T.IMAGE;
|
|
26786
|
+
children: string;
|
|
26787
|
+
};
|
|
26788
|
+
"effect_background/ambient_background": {
|
|
26813
26789
|
type: T.IMAGE;
|
|
26814
26790
|
children: string;
|
|
26815
26791
|
};
|
|
@@ -26850,7 +26826,7 @@ export type MobEffectType = {
|
|
|
26850
26826
|
children: 'bg' | 'name' | 'timer' | 'icon';
|
|
26851
26827
|
};
|
|
26852
26828
|
"mob_effect_grid_item/bg": {
|
|
26853
|
-
type: T.
|
|
26829
|
+
type: T.PANEL;
|
|
26854
26830
|
children: string;
|
|
26855
26831
|
};
|
|
26856
26832
|
"mob_effect_grid_item/name": {
|
|
@@ -28479,18 +28455,46 @@ export type PauseType = {
|
|
|
28479
28455
|
type: T.BUTTON;
|
|
28480
28456
|
children: string;
|
|
28481
28457
|
};
|
|
28458
|
+
"icon_button_hover_text": {
|
|
28459
|
+
type: T.IMAGE;
|
|
28460
|
+
children: 'tooltip_text';
|
|
28461
|
+
};
|
|
28462
|
+
"icon_button_hover_text/tooltip_text": {
|
|
28463
|
+
type: T.LABEL;
|
|
28464
|
+
children: string;
|
|
28465
|
+
};
|
|
28466
|
+
"icon_button_tooltip_trigger": {
|
|
28467
|
+
type: T.BUTTON;
|
|
28468
|
+
children: 'default' | 'pressed' | 'hover';
|
|
28469
|
+
};
|
|
28470
|
+
"icon_button_tooltip_trigger/default": {
|
|
28471
|
+
type: T.PANEL;
|
|
28472
|
+
children: string;
|
|
28473
|
+
};
|
|
28474
|
+
"icon_button_tooltip_trigger/pressed": {
|
|
28475
|
+
type: T.PANEL;
|
|
28476
|
+
children: string;
|
|
28477
|
+
};
|
|
28478
|
+
"icon_button_tooltip_trigger/hover": {
|
|
28479
|
+
type: T.IMAGE;
|
|
28480
|
+
children: string;
|
|
28481
|
+
};
|
|
28482
28482
|
"feedback_button": {
|
|
28483
28483
|
type: T.BUTTON;
|
|
28484
28484
|
children: string;
|
|
28485
28485
|
};
|
|
28486
28486
|
"feedback_icon_button": {
|
|
28487
28487
|
type: T.PANEL;
|
|
28488
|
-
children: 'feedback_button';
|
|
28488
|
+
children: 'feedback_button' | 'tooltip_trigger';
|
|
28489
28489
|
};
|
|
28490
28490
|
"feedback_icon_button/feedback_button": {
|
|
28491
28491
|
type: T.BUTTON;
|
|
28492
28492
|
children: string;
|
|
28493
28493
|
};
|
|
28494
|
+
"feedback_icon_button/tooltip_trigger": {
|
|
28495
|
+
type: T.BUTTON;
|
|
28496
|
+
children: string;
|
|
28497
|
+
};
|
|
28494
28498
|
"take_screenshot_gamepad_button_content": {
|
|
28495
28499
|
type: T.PANEL;
|
|
28496
28500
|
children: 'button_y' | 'take_screenshot_icon';
|
|
@@ -28511,21 +28515,69 @@ export type PauseType = {
|
|
|
28511
28515
|
type: T.BUTTON;
|
|
28512
28516
|
children: string;
|
|
28513
28517
|
};
|
|
28518
|
+
"achievements_button_small_with_tooltip": {
|
|
28519
|
+
type: T.PANEL;
|
|
28520
|
+
children: 'button' | 'tooltip_trigger';
|
|
28521
|
+
};
|
|
28522
|
+
"achievements_button_small_with_tooltip/button": {
|
|
28523
|
+
type: T.BUTTON;
|
|
28524
|
+
children: string;
|
|
28525
|
+
};
|
|
28526
|
+
"achievements_button_small_with_tooltip/tooltip_trigger": {
|
|
28527
|
+
type: T.BUTTON;
|
|
28528
|
+
children: string;
|
|
28529
|
+
};
|
|
28514
28530
|
"settings_button_small": {
|
|
28515
28531
|
type: T.BUTTON;
|
|
28516
28532
|
children: string;
|
|
28517
28533
|
};
|
|
28534
|
+
"settings_button_small_with_tooltip": {
|
|
28535
|
+
type: T.PANEL;
|
|
28536
|
+
children: 'button' | 'tooltip_trigger';
|
|
28537
|
+
};
|
|
28538
|
+
"settings_button_small_with_tooltip/button": {
|
|
28539
|
+
type: T.BUTTON;
|
|
28540
|
+
children: string;
|
|
28541
|
+
};
|
|
28542
|
+
"settings_button_small_with_tooltip/tooltip_trigger": {
|
|
28543
|
+
type: T.BUTTON;
|
|
28544
|
+
children: string;
|
|
28545
|
+
};
|
|
28518
28546
|
"take_screenshot_button": {
|
|
28519
28547
|
type: T.BUTTON;
|
|
28520
28548
|
children: string;
|
|
28521
28549
|
};
|
|
28550
|
+
"take_screenshot_button_with_tooltip": {
|
|
28551
|
+
type: T.PANEL;
|
|
28552
|
+
children: 'button' | 'tooltip_trigger';
|
|
28553
|
+
};
|
|
28554
|
+
"take_screenshot_button_with_tooltip/button": {
|
|
28555
|
+
type: T.BUTTON;
|
|
28556
|
+
children: string;
|
|
28557
|
+
};
|
|
28558
|
+
"take_screenshot_button_with_tooltip/tooltip_trigger": {
|
|
28559
|
+
type: T.BUTTON;
|
|
28560
|
+
children: string;
|
|
28561
|
+
};
|
|
28562
|
+
"take_screenshot_gamepad_button_with_tooltip": {
|
|
28563
|
+
type: T.PANEL;
|
|
28564
|
+
children: 'button' | 'tooltip_trigger';
|
|
28565
|
+
};
|
|
28566
|
+
"take_screenshot_gamepad_button_with_tooltip/button": {
|
|
28567
|
+
type: T.BUTTON;
|
|
28568
|
+
children: string;
|
|
28569
|
+
};
|
|
28570
|
+
"take_screenshot_gamepad_button_with_tooltip/tooltip_trigger": {
|
|
28571
|
+
type: T.BUTTON;
|
|
28572
|
+
children: string;
|
|
28573
|
+
};
|
|
28522
28574
|
"pause_screen": {
|
|
28523
28575
|
type: T.SCREEN;
|
|
28524
28576
|
children: string;
|
|
28525
28577
|
};
|
|
28526
28578
|
"pause_screen_content": {
|
|
28527
28579
|
type: T.PANEL;
|
|
28528
|
-
children: 'pause_screen_main_panels' | 'skin_panel' | '
|
|
28580
|
+
children: 'pause_screen_main_panels' | 'skin_panel' | 'top_right_panel' | 'gamepad_helpers' | 'keyboard_helpers' | 'debug_drawer_button_panel';
|
|
28529
28581
|
};
|
|
28530
28582
|
"pause_screen_content/pause_screen_main_panels": {
|
|
28531
28583
|
type: T.STACK_PANEL;
|
|
@@ -28535,8 +28587,8 @@ export type PauseType = {
|
|
|
28535
28587
|
type: T.PANEL;
|
|
28536
28588
|
children: string;
|
|
28537
28589
|
};
|
|
28538
|
-
"pause_screen_content/
|
|
28539
|
-
type: T.
|
|
28590
|
+
"pause_screen_content/top_right_panel": {
|
|
28591
|
+
type: T.STACK_PANEL;
|
|
28540
28592
|
children: string;
|
|
28541
28593
|
};
|
|
28542
28594
|
"pause_screen_content/gamepad_helpers": {
|
|
@@ -28547,19 +28599,35 @@ export type PauseType = {
|
|
|
28547
28599
|
type: T.PANEL;
|
|
28548
28600
|
children: string;
|
|
28549
28601
|
};
|
|
28550
|
-
"
|
|
28602
|
+
"pause_screen_content/debug_drawer_button_panel": {
|
|
28603
|
+
type: T.PANEL;
|
|
28604
|
+
children: string;
|
|
28605
|
+
};
|
|
28606
|
+
"top_right_panel": {
|
|
28607
|
+
type: T.STACK_PANEL;
|
|
28608
|
+
children: 'pause_panel' | 'friendsdrawer_button_panel';
|
|
28609
|
+
};
|
|
28610
|
+
"top_right_panel/pause_panel": {
|
|
28611
|
+
type: T.STACK_PANEL;
|
|
28612
|
+
children: string;
|
|
28613
|
+
};
|
|
28614
|
+
"top_right_panel/friendsdrawer_button_panel": {
|
|
28551
28615
|
type: T.PANEL;
|
|
28552
|
-
children:
|
|
28616
|
+
children: string;
|
|
28553
28617
|
};
|
|
28554
|
-
"friendsdrawer_button_panel
|
|
28618
|
+
"friendsdrawer_button_panel": {
|
|
28555
28619
|
type: T.PANEL;
|
|
28556
|
-
children: 'friendsdrawer_button' | '
|
|
28620
|
+
children: 'friendsdrawer_button' | 'friends_drawer_ftue_popup_wrapper';
|
|
28557
28621
|
};
|
|
28558
|
-
"friendsdrawer_button_panel/
|
|
28622
|
+
"friendsdrawer_button_panel/friendsdrawer_button": {
|
|
28559
28623
|
type: T.BUTTON;
|
|
28560
28624
|
children: string;
|
|
28561
28625
|
};
|
|
28562
|
-
"friendsdrawer_button_panel/
|
|
28626
|
+
"friendsdrawer_button_panel/friends_drawer_ftue_popup_wrapper": {
|
|
28627
|
+
type: T.PANEL;
|
|
28628
|
+
children: 'friends_drawer_ftue_popup';
|
|
28629
|
+
};
|
|
28630
|
+
"friendsdrawer_button_panel/friends_drawer_ftue_popup_wrapper/friends_drawer_ftue_popup": {
|
|
28563
28631
|
type: T.BUTTON;
|
|
28564
28632
|
children: string;
|
|
28565
28633
|
};
|
|
@@ -28608,7 +28676,7 @@ export type PauseType = {
|
|
|
28608
28676
|
children: 'small_settings_btn';
|
|
28609
28677
|
};
|
|
28610
28678
|
"smaller_buttons_panel/stacked_column/small_settings_button/small_settings_btn": {
|
|
28611
|
-
type: T.
|
|
28679
|
+
type: T.PANEL;
|
|
28612
28680
|
children: string;
|
|
28613
28681
|
};
|
|
28614
28682
|
"smaller_buttons_panel/stacked_column/small_settings_padding": {
|
|
@@ -28620,7 +28688,7 @@ export type PauseType = {
|
|
|
28620
28688
|
children: 'small_achievements_btn';
|
|
28621
28689
|
};
|
|
28622
28690
|
"smaller_buttons_panel/stacked_column/small_achievements_button/small_achievements_btn": {
|
|
28623
|
-
type: T.
|
|
28691
|
+
type: T.PANEL;
|
|
28624
28692
|
children: string;
|
|
28625
28693
|
};
|
|
28626
28694
|
"smaller_buttons_panel/stacked_column/small_achievements_padding": {
|
|
@@ -28632,11 +28700,11 @@ export type PauseType = {
|
|
|
28632
28700
|
children: 'take_screenshot_button' | 'take_screenshot_gamepad_button';
|
|
28633
28701
|
};
|
|
28634
28702
|
"smaller_buttons_panel/stacked_column/take_screenshot_btn/take_screenshot_button": {
|
|
28635
|
-
type: T.
|
|
28703
|
+
type: T.PANEL;
|
|
28636
28704
|
children: string;
|
|
28637
28705
|
};
|
|
28638
28706
|
"smaller_buttons_panel/stacked_column/take_screenshot_btn/take_screenshot_gamepad_button": {
|
|
28639
|
-
type: T.
|
|
28707
|
+
type: T.PANEL;
|
|
28640
28708
|
children: string;
|
|
28641
28709
|
};
|
|
28642
28710
|
"smaller_buttons_panel/stacked_column/screenshot_padding": {
|
|
@@ -28703,27 +28771,31 @@ export type PauseType = {
|
|
|
28703
28771
|
type: T.IMAGE;
|
|
28704
28772
|
children: string;
|
|
28705
28773
|
};
|
|
28706
|
-
"
|
|
28774
|
+
"paused_text_panel_grey": {
|
|
28707
28775
|
type: T.IMAGE;
|
|
28708
|
-
children: '
|
|
28776
|
+
children: 'pause';
|
|
28709
28777
|
};
|
|
28710
|
-
"
|
|
28778
|
+
"paused_text_panel_grey/pause": {
|
|
28711
28779
|
type: T.LABEL;
|
|
28712
28780
|
children: string;
|
|
28713
28781
|
};
|
|
28714
|
-
"
|
|
28782
|
+
"paused_text_panel_green": {
|
|
28783
|
+
type: T.IMAGE;
|
|
28784
|
+
children: 'horizontal_stack';
|
|
28785
|
+
};
|
|
28786
|
+
"paused_text_panel_green/horizontal_stack": {
|
|
28715
28787
|
type: T.STACK_PANEL;
|
|
28716
28788
|
children: 'pause_icon' | 'fill_1' | 'pause';
|
|
28717
28789
|
};
|
|
28718
|
-
"
|
|
28790
|
+
"paused_text_panel_green/horizontal_stack/pause_icon": {
|
|
28719
28791
|
type: T.IMAGE;
|
|
28720
28792
|
children: string;
|
|
28721
28793
|
};
|
|
28722
|
-
"
|
|
28794
|
+
"paused_text_panel_green/horizontal_stack/fill_1": {
|
|
28723
28795
|
type: T.PANEL;
|
|
28724
28796
|
children: string;
|
|
28725
28797
|
};
|
|
28726
|
-
"
|
|
28798
|
+
"paused_text_panel_green/horizontal_stack/pause": {
|
|
28727
28799
|
type: T.LABEL;
|
|
28728
28800
|
children: string;
|
|
28729
28801
|
};
|
|
@@ -28751,23 +28823,43 @@ export type PauseType = {
|
|
|
28751
28823
|
type: T.IMAGE;
|
|
28752
28824
|
children: string;
|
|
28753
28825
|
};
|
|
28754
|
-
"
|
|
28826
|
+
"pause_announcement_panel_grey": {
|
|
28827
|
+
type: T.STACK_PANEL;
|
|
28828
|
+
children: 'horizontal_stack';
|
|
28829
|
+
};
|
|
28830
|
+
"pause_announcement_panel_grey/horizontal_stack": {
|
|
28831
|
+
type: T.STACK_PANEL;
|
|
28832
|
+
children: 'fill_1' | 'pause_text' | 'fill_2';
|
|
28833
|
+
};
|
|
28834
|
+
"pause_announcement_panel_grey/horizontal_stack/fill_1": {
|
|
28835
|
+
type: T.PANEL;
|
|
28836
|
+
children: string;
|
|
28837
|
+
};
|
|
28838
|
+
"pause_announcement_panel_grey/horizontal_stack/pause_text": {
|
|
28839
|
+
type: T.IMAGE;
|
|
28840
|
+
children: string;
|
|
28841
|
+
};
|
|
28842
|
+
"pause_announcement_panel_grey/horizontal_stack/fill_2": {
|
|
28843
|
+
type: T.PANEL;
|
|
28844
|
+
children: string;
|
|
28845
|
+
};
|
|
28846
|
+
"pause_announcement_panel_green": {
|
|
28755
28847
|
type: T.STACK_PANEL;
|
|
28756
28848
|
children: 'horizontal_stack';
|
|
28757
28849
|
};
|
|
28758
|
-
"
|
|
28850
|
+
"pause_announcement_panel_green/horizontal_stack": {
|
|
28759
28851
|
type: T.STACK_PANEL;
|
|
28760
28852
|
children: 'fill_1' | 'pause_text' | 'fill_2';
|
|
28761
28853
|
};
|
|
28762
|
-
"
|
|
28854
|
+
"pause_announcement_panel_green/horizontal_stack/fill_1": {
|
|
28763
28855
|
type: T.PANEL;
|
|
28764
28856
|
children: string;
|
|
28765
28857
|
};
|
|
28766
|
-
"
|
|
28858
|
+
"pause_announcement_panel_green/horizontal_stack/pause_text": {
|
|
28767
28859
|
type: T.IMAGE;
|
|
28768
28860
|
children: string;
|
|
28769
28861
|
};
|
|
28770
|
-
"
|
|
28862
|
+
"pause_announcement_panel_green/horizontal_stack/fill_2": {
|
|
28771
28863
|
type: T.PANEL;
|
|
28772
28864
|
children: string;
|
|
28773
28865
|
};
|
|
@@ -28777,7 +28869,7 @@ export type PauseType = {
|
|
|
28777
28869
|
};
|
|
28778
28870
|
"menu_background/button_panel": {
|
|
28779
28871
|
type: T.STACK_PANEL;
|
|
28780
|
-
children: 'title_image' | 'fill_1' | 'return_to_game_button' | 'return' | 'realms_stories_button_panel' | 'realms_stories' | 'buy_button' | 'buy' | 'store_button_panel' | 'store_button_panel_padding' | 'quit_button' | 'smaller_buttons' | 'pause_panel';
|
|
28872
|
+
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';
|
|
28781
28873
|
};
|
|
28782
28874
|
"menu_background/button_panel/title_image": {
|
|
28783
28875
|
type: T.PANEL;
|
|
@@ -28799,6 +28891,14 @@ export type PauseType = {
|
|
|
28799
28891
|
type: T.PANEL;
|
|
28800
28892
|
children: string;
|
|
28801
28893
|
};
|
|
28894
|
+
"menu_background/button_panel/settings_button": {
|
|
28895
|
+
type: T.BUTTON;
|
|
28896
|
+
children: string;
|
|
28897
|
+
};
|
|
28898
|
+
"menu_background/button_panel/settings": {
|
|
28899
|
+
type: T.PANEL;
|
|
28900
|
+
children: string;
|
|
28901
|
+
};
|
|
28802
28902
|
"menu_background/button_panel/realms_stories_button_panel": {
|
|
28803
28903
|
type: T.PANEL;
|
|
28804
28904
|
children: string;
|
|
@@ -29175,6 +29275,30 @@ export type PauseType = {
|
|
|
29175
29275
|
type: T.STACK_PANEL;
|
|
29176
29276
|
children: string;
|
|
29177
29277
|
};
|
|
29278
|
+
"debug_drawer_button_content": {
|
|
29279
|
+
type: T.PANEL;
|
|
29280
|
+
children: 'button_label_panel';
|
|
29281
|
+
};
|
|
29282
|
+
"debug_drawer_button_content/button_label_panel": {
|
|
29283
|
+
type: T.PANEL;
|
|
29284
|
+
children: 'button_label_text_left';
|
|
29285
|
+
};
|
|
29286
|
+
"debug_drawer_button_content/button_label_panel/button_label_text_left": {
|
|
29287
|
+
type: T.LABEL;
|
|
29288
|
+
children: string;
|
|
29289
|
+
};
|
|
29290
|
+
"debug_drawer_button_panel": {
|
|
29291
|
+
type: T.PANEL;
|
|
29292
|
+
children: 'debug_drawer_button_input';
|
|
29293
|
+
};
|
|
29294
|
+
"debug_drawer_button_panel/debug_drawer_button_input": {
|
|
29295
|
+
type: T.INPUT_PANEL;
|
|
29296
|
+
children: 'debug_drawer_button';
|
|
29297
|
+
};
|
|
29298
|
+
"debug_drawer_button_panel/debug_drawer_button_input/debug_drawer_button": {
|
|
29299
|
+
type: T.BUTTON;
|
|
29300
|
+
children: string;
|
|
29301
|
+
};
|
|
29178
29302
|
};
|
|
29179
29303
|
export type PdpType = {
|
|
29180
29304
|
"download_progress": {
|
|
@@ -29969,10 +30093,6 @@ export type PdpType = {
|
|
|
29969
30093
|
type: T.PANEL;
|
|
29970
30094
|
children: string;
|
|
29971
30095
|
};
|
|
29972
|
-
"recently_viewed_viewed_factory_object": {
|
|
29973
|
-
type: T.PANEL;
|
|
29974
|
-
children: string;
|
|
29975
|
-
};
|
|
29976
30096
|
"scrolling_content_stack": {
|
|
29977
30097
|
type: T.STACK_PANEL;
|
|
29978
30098
|
children: string;
|
|
@@ -30471,7 +30591,7 @@ export type PdpType = {
|
|
|
30471
30591
|
};
|
|
30472
30592
|
"summary_content_left_side/full_content/top/info": {
|
|
30473
30593
|
type: T.STACK_PANEL;
|
|
30474
|
-
children: 'summary_title_and_author_panel' | 'pad_fill' | '
|
|
30594
|
+
children: 'summary_title_and_author_panel' | 'pad_fill' | 'info_buttons_factory';
|
|
30475
30595
|
};
|
|
30476
30596
|
"summary_content_left_side/full_content/top/info/summary_title_and_author_panel": {
|
|
30477
30597
|
type: T.STACK_PANEL;
|
|
@@ -30481,42 +30601,34 @@ export type PdpType = {
|
|
|
30481
30601
|
type: T.PANEL;
|
|
30482
30602
|
children: string;
|
|
30483
30603
|
};
|
|
30484
|
-
"summary_content_left_side/full_content/top/info/
|
|
30604
|
+
"summary_content_left_side/full_content/top/info/info_buttons_factory": {
|
|
30605
|
+
type: T.STACK_PANEL;
|
|
30606
|
+
children: string;
|
|
30607
|
+
};
|
|
30608
|
+
"summary_content_left_side/full_content/bottom": {
|
|
30485
30609
|
type: T.PANEL;
|
|
30486
|
-
children:
|
|
30610
|
+
children: string;
|
|
30487
30611
|
};
|
|
30488
|
-
"
|
|
30612
|
+
"info_buttons_factory": {
|
|
30489
30613
|
type: T.STACK_PANEL;
|
|
30490
30614
|
children: string;
|
|
30491
30615
|
};
|
|
30492
|
-
"
|
|
30616
|
+
"ratings_summary": {
|
|
30493
30617
|
type: T.STACK_PANEL;
|
|
30494
30618
|
children: 'ratings_display';
|
|
30495
30619
|
};
|
|
30496
|
-
"
|
|
30620
|
+
"ratings_summary/ratings_display": {
|
|
30497
30621
|
type: T.STACK_PANEL;
|
|
30498
|
-
children: '
|
|
30499
|
-
};
|
|
30500
|
-
"summary_content_left_side/full_content/top/info/ratings_summary/ratings_display/rating_stars_panel": {
|
|
30501
|
-
type: T.PANEL;
|
|
30502
|
-
children: 'rating';
|
|
30622
|
+
children: 'rating' | 'summary_rating_button';
|
|
30503
30623
|
};
|
|
30504
|
-
"
|
|
30624
|
+
"ratings_summary/ratings_display/rating": {
|
|
30505
30625
|
type: T.PANEL;
|
|
30506
30626
|
children: string;
|
|
30507
30627
|
};
|
|
30508
|
-
"
|
|
30628
|
+
"ratings_summary/ratings_display/summary_rating_button": {
|
|
30509
30629
|
type: T.BUTTON;
|
|
30510
30630
|
children: string;
|
|
30511
30631
|
};
|
|
30512
|
-
"summary_content_left_side/full_content/top/info/vibrant_visuals_badge_and_hover": {
|
|
30513
|
-
type: T.PANEL;
|
|
30514
|
-
children: string;
|
|
30515
|
-
};
|
|
30516
|
-
"summary_content_left_side/full_content/bottom": {
|
|
30517
|
-
type: T.PANEL;
|
|
30518
|
-
children: string;
|
|
30519
|
-
};
|
|
30520
30632
|
"offer_title_label": {
|
|
30521
30633
|
type: T.PANEL;
|
|
30522
30634
|
children: string;
|
|
@@ -30667,7 +30779,7 @@ export type PdpType = {
|
|
|
30667
30779
|
};
|
|
30668
30780
|
"mashup_glyph_tooltip_content": {
|
|
30669
30781
|
type: T.STACK_PANEL;
|
|
30670
|
-
children: 'mashup_text_row' | 'mashup_line_two' | '
|
|
30782
|
+
children: 'mashup_text_row' | 'mashup_line_two' | 'basic_vertical_glyphs';
|
|
30671
30783
|
};
|
|
30672
30784
|
"mashup_glyph_tooltip_content/mashup_text_row": {
|
|
30673
30785
|
type: T.STACK_PANEL;
|
|
@@ -30685,11 +30797,7 @@ export type PdpType = {
|
|
|
30685
30797
|
type: T.PANEL;
|
|
30686
30798
|
children: string;
|
|
30687
30799
|
};
|
|
30688
|
-
"mashup_glyph_tooltip_content/
|
|
30689
|
-
type: T.PANEL;
|
|
30690
|
-
children: 'basic_vertical_glyph_section_panel';
|
|
30691
|
-
};
|
|
30692
|
-
"mashup_glyph_tooltip_content/offset_panel/basic_vertical_glyph_section_panel": {
|
|
30800
|
+
"mashup_glyph_tooltip_content/basic_vertical_glyphs": {
|
|
30693
30801
|
type: T.STACK_PANEL;
|
|
30694
30802
|
children: string;
|
|
30695
30803
|
};
|
|
@@ -30713,38 +30821,6 @@ export type PdpType = {
|
|
|
30713
30821
|
type: T.STACK_PANEL;
|
|
30714
30822
|
children: string;
|
|
30715
30823
|
};
|
|
30716
|
-
"basic_vertical_glyph_section_panel": {
|
|
30717
|
-
type: T.STACK_PANEL;
|
|
30718
|
-
children: 'glyph_section_skin' | 'glyph_section_world' | 'glyph_section_resource_pack' | 'glyph_section_addon';
|
|
30719
|
-
};
|
|
30720
|
-
"basic_vertical_glyph_section_panel/glyph_section_skin": {
|
|
30721
|
-
type: T.STACK_PANEL;
|
|
30722
|
-
children: string;
|
|
30723
|
-
};
|
|
30724
|
-
"basic_vertical_glyph_section_panel/glyph_section_world": {
|
|
30725
|
-
type: T.STACK_PANEL;
|
|
30726
|
-
children: string;
|
|
30727
|
-
};
|
|
30728
|
-
"basic_vertical_glyph_section_panel/glyph_section_resource_pack": {
|
|
30729
|
-
type: T.STACK_PANEL;
|
|
30730
|
-
children: string;
|
|
30731
|
-
};
|
|
30732
|
-
"basic_vertical_glyph_section_panel/glyph_section_addon": {
|
|
30733
|
-
type: T.STACK_PANEL;
|
|
30734
|
-
children: string;
|
|
30735
|
-
};
|
|
30736
|
-
"vertical_glyph_section_panel": {
|
|
30737
|
-
type: T.STACK_PANEL;
|
|
30738
|
-
children: 'glyph_section_mashup' | 'basic_vertical_glyph_section_panel';
|
|
30739
|
-
};
|
|
30740
|
-
"vertical_glyph_section_panel/glyph_section_mashup": {
|
|
30741
|
-
type: T.STACK_PANEL;
|
|
30742
|
-
children: string;
|
|
30743
|
-
};
|
|
30744
|
-
"vertical_glyph_section_panel/basic_vertical_glyph_section_panel": {
|
|
30745
|
-
type: T.STACK_PANEL;
|
|
30746
|
-
children: string;
|
|
30747
|
-
};
|
|
30748
30824
|
"summary_text_panel": {
|
|
30749
30825
|
type: T.STACK_PANEL;
|
|
30750
30826
|
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';
|
|
@@ -38331,6 +38407,26 @@ export type ProgressType = {
|
|
|
38331
38407
|
type: T.BUTTON;
|
|
38332
38408
|
children: string;
|
|
38333
38409
|
};
|
|
38410
|
+
"modal_ok_button_panel_with_retry": {
|
|
38411
|
+
type: T.PANEL;
|
|
38412
|
+
children: 'left_ok_button' | 'center_cancel_button' | 'center_ok_button' | 'right_retry_button';
|
|
38413
|
+
};
|
|
38414
|
+
"modal_ok_button_panel_with_retry/left_ok_button": {
|
|
38415
|
+
type: T.BUTTON;
|
|
38416
|
+
children: string;
|
|
38417
|
+
};
|
|
38418
|
+
"modal_ok_button_panel_with_retry/center_cancel_button": {
|
|
38419
|
+
type: T.BUTTON;
|
|
38420
|
+
children: string;
|
|
38421
|
+
};
|
|
38422
|
+
"modal_ok_button_panel_with_retry/center_ok_button": {
|
|
38423
|
+
type: T.BUTTON;
|
|
38424
|
+
children: string;
|
|
38425
|
+
};
|
|
38426
|
+
"modal_ok_button_panel_with_retry/right_retry_button": {
|
|
38427
|
+
type: T.BUTTON;
|
|
38428
|
+
children: string;
|
|
38429
|
+
};
|
|
38334
38430
|
"gamepad_helpers": {
|
|
38335
38431
|
type: T.PANEL;
|
|
38336
38432
|
children: 'gamepad_helper_a';
|
|
@@ -38607,6 +38703,10 @@ export type ProgressType = {
|
|
|
38607
38703
|
type: T.SCREEN;
|
|
38608
38704
|
children: string;
|
|
38609
38705
|
};
|
|
38706
|
+
"joining_edu_server": {
|
|
38707
|
+
type: T.SCREEN;
|
|
38708
|
+
children: string;
|
|
38709
|
+
};
|
|
38610
38710
|
"world_convert_modal_progress_screen": {
|
|
38611
38711
|
type: T.SCREEN;
|
|
38612
38712
|
children: string;
|
|
@@ -38653,49 +38753,69 @@ export type ProgressType = {
|
|
|
38653
38753
|
};
|
|
38654
38754
|
"world_modal_progress_panel": {
|
|
38655
38755
|
type: T.PANEL;
|
|
38656
|
-
children: 'common_panel' | '
|
|
38756
|
+
children: 'common_panel' | 'content_wrapper';
|
|
38657
38757
|
};
|
|
38658
38758
|
"world_modal_progress_panel/common_panel": {
|
|
38659
38759
|
type: T.PANEL;
|
|
38660
38760
|
children: string;
|
|
38661
38761
|
};
|
|
38662
|
-
"world_modal_progress_panel/
|
|
38762
|
+
"world_modal_progress_panel/content_wrapper": {
|
|
38663
38763
|
type: T.PANEL;
|
|
38664
|
-
children: '
|
|
38764
|
+
children: 'base_content' | 'inside_content';
|
|
38665
38765
|
};
|
|
38666
|
-
"world_modal_progress_panel/base_content
|
|
38766
|
+
"world_modal_progress_panel/content_wrapper/base_content": {
|
|
38767
|
+
type: T.STACK_PANEL;
|
|
38768
|
+
children: 'vertical_title_padding' | 'title_text_panel' | 'vertical_text_padding' | 'progress_text_panel';
|
|
38769
|
+
};
|
|
38770
|
+
"world_modal_progress_panel/content_wrapper/base_content/vertical_title_padding": {
|
|
38771
|
+
type: T.PANEL;
|
|
38772
|
+
children: string;
|
|
38773
|
+
};
|
|
38774
|
+
"world_modal_progress_panel/content_wrapper/base_content/title_text_panel": {
|
|
38775
|
+
type: T.PANEL;
|
|
38776
|
+
children: 'progress_title_text';
|
|
38777
|
+
};
|
|
38778
|
+
"world_modal_progress_panel/content_wrapper/base_content/title_text_panel/progress_title_text": {
|
|
38667
38779
|
type: T.LABEL;
|
|
38668
38780
|
children: string;
|
|
38669
38781
|
};
|
|
38670
|
-
"world_modal_progress_panel/base_content/
|
|
38782
|
+
"world_modal_progress_panel/content_wrapper/base_content/vertical_text_padding": {
|
|
38783
|
+
type: T.PANEL;
|
|
38784
|
+
children: string;
|
|
38785
|
+
};
|
|
38786
|
+
"world_modal_progress_panel/content_wrapper/base_content/progress_text_panel": {
|
|
38787
|
+
type: T.PANEL;
|
|
38788
|
+
children: 'progress_bar_text';
|
|
38789
|
+
};
|
|
38790
|
+
"world_modal_progress_panel/content_wrapper/base_content/progress_text_panel/progress_bar_text": {
|
|
38671
38791
|
type: T.LABEL;
|
|
38672
38792
|
children: string;
|
|
38673
38793
|
};
|
|
38674
|
-
"world_modal_progress_panel/inside_content": {
|
|
38794
|
+
"world_modal_progress_panel/content_wrapper/inside_content": {
|
|
38675
38795
|
type: T.STACK_PANEL;
|
|
38676
38796
|
children: 'loading_bar_panel' | 'vertical_padding' | 'modal_button_panel' | 'vertical_padding_2';
|
|
38677
38797
|
};
|
|
38678
|
-
"world_modal_progress_panel/inside_content/loading_bar_panel": {
|
|
38798
|
+
"world_modal_progress_panel/content_wrapper/inside_content/loading_bar_panel": {
|
|
38679
38799
|
type: T.PANEL;
|
|
38680
38800
|
children: 'fancy_progress_loading_bars' | 'progress_loading_bars';
|
|
38681
38801
|
};
|
|
38682
|
-
"world_modal_progress_panel/inside_content/loading_bar_panel/fancy_progress_loading_bars": {
|
|
38802
|
+
"world_modal_progress_panel/content_wrapper/inside_content/loading_bar_panel/fancy_progress_loading_bars": {
|
|
38683
38803
|
type: T.PANEL;
|
|
38684
38804
|
children: string;
|
|
38685
38805
|
};
|
|
38686
|
-
"world_modal_progress_panel/inside_content/loading_bar_panel/progress_loading_bars": {
|
|
38806
|
+
"world_modal_progress_panel/content_wrapper/inside_content/loading_bar_panel/progress_loading_bars": {
|
|
38687
38807
|
type: T.IMAGE;
|
|
38688
38808
|
children: string;
|
|
38689
38809
|
};
|
|
38690
|
-
"world_modal_progress_panel/inside_content/vertical_padding": {
|
|
38810
|
+
"world_modal_progress_panel/content_wrapper/inside_content/vertical_padding": {
|
|
38691
38811
|
type: T.PANEL;
|
|
38692
38812
|
children: string;
|
|
38693
38813
|
};
|
|
38694
|
-
"world_modal_progress_panel/inside_content/modal_button_panel": {
|
|
38814
|
+
"world_modal_progress_panel/content_wrapper/inside_content/modal_button_panel": {
|
|
38695
38815
|
type: T.UNKNOWN;
|
|
38696
38816
|
children: string;
|
|
38697
38817
|
};
|
|
38698
|
-
"world_modal_progress_panel/inside_content/vertical_padding_2": {
|
|
38818
|
+
"world_modal_progress_panel/content_wrapper/inside_content/vertical_padding_2": {
|
|
38699
38819
|
type: T.PANEL;
|
|
38700
38820
|
children: string;
|
|
38701
38821
|
};
|
|
@@ -38919,6 +39039,42 @@ export type ProgressType = {
|
|
|
38919
39039
|
type: T.IMAGE;
|
|
38920
39040
|
children: string;
|
|
38921
39041
|
};
|
|
39042
|
+
"server_fetch_timeout_panel": {
|
|
39043
|
+
type: T.PANEL;
|
|
39044
|
+
children: 'common_panel' | 'base_content';
|
|
39045
|
+
};
|
|
39046
|
+
"server_fetch_timeout_panel/common_panel": {
|
|
39047
|
+
type: T.PANEL;
|
|
39048
|
+
children: string;
|
|
39049
|
+
};
|
|
39050
|
+
"server_fetch_timeout_panel/base_content": {
|
|
39051
|
+
type: T.PANEL;
|
|
39052
|
+
children: 'progress_title_text' | 'progress_text' | 'edu_server_fetch_image' | 'loading_bar_panel' | 'timeout_button';
|
|
39053
|
+
};
|
|
39054
|
+
"server_fetch_timeout_panel/base_content/progress_title_text": {
|
|
39055
|
+
type: T.LABEL;
|
|
39056
|
+
children: string;
|
|
39057
|
+
};
|
|
39058
|
+
"server_fetch_timeout_panel/base_content/progress_text": {
|
|
39059
|
+
type: T.LABEL;
|
|
39060
|
+
children: string;
|
|
39061
|
+
};
|
|
39062
|
+
"server_fetch_timeout_panel/base_content/edu_server_fetch_image": {
|
|
39063
|
+
type: T.STACK_PANEL;
|
|
39064
|
+
children: string;
|
|
39065
|
+
};
|
|
39066
|
+
"server_fetch_timeout_panel/base_content/loading_bar_panel": {
|
|
39067
|
+
type: T.PANEL;
|
|
39068
|
+
children: 'progress_loading_bars';
|
|
39069
|
+
};
|
|
39070
|
+
"server_fetch_timeout_panel/base_content/loading_bar_panel/progress_loading_bars": {
|
|
39071
|
+
type: T.IMAGE;
|
|
39072
|
+
children: string;
|
|
39073
|
+
};
|
|
39074
|
+
"server_fetch_timeout_panel/base_content/timeout_button": {
|
|
39075
|
+
type: T.BUTTON;
|
|
39076
|
+
children: string;
|
|
39077
|
+
};
|
|
38922
39078
|
"world_convert_modal_progress_screen_content": {
|
|
38923
39079
|
type: T.PANEL;
|
|
38924
39080
|
children: 'mobile_data_icon' | 'title_panel_content' | 'world_modal_progress_panel' | 'popup_dialog_factory';
|
|
@@ -39037,16 +39193,36 @@ export type ProgressType = {
|
|
|
39037
39193
|
};
|
|
39038
39194
|
"edu_server_fetch_screen_content": {
|
|
39039
39195
|
type: T.PANEL;
|
|
39040
|
-
children: 'server_fetch_panel' | 'popup_dialog_factory';
|
|
39196
|
+
children: 'server_fetch_panel' | 'server_fetch_timeout_panel' | 'popup_dialog_factory';
|
|
39041
39197
|
};
|
|
39042
39198
|
"edu_server_fetch_screen_content/server_fetch_panel": {
|
|
39043
39199
|
type: T.PANEL;
|
|
39044
39200
|
children: string;
|
|
39045
39201
|
};
|
|
39202
|
+
"edu_server_fetch_screen_content/server_fetch_timeout_panel": {
|
|
39203
|
+
type: T.PANEL;
|
|
39204
|
+
children: string;
|
|
39205
|
+
};
|
|
39046
39206
|
"edu_server_fetch_screen_content/popup_dialog_factory": {
|
|
39047
39207
|
type: T.FACTORY;
|
|
39048
39208
|
children: string;
|
|
39049
39209
|
};
|
|
39210
|
+
"joining_edu_server_progress_screen_content": {
|
|
39211
|
+
type: T.PANEL;
|
|
39212
|
+
children: 'title_panel_content' | 'world_modal_progress_panel' | 'popup_dialog_factory';
|
|
39213
|
+
};
|
|
39214
|
+
"joining_edu_server_progress_screen_content/title_panel_content": {
|
|
39215
|
+
type: T.PANEL;
|
|
39216
|
+
children: string;
|
|
39217
|
+
};
|
|
39218
|
+
"joining_edu_server_progress_screen_content/world_modal_progress_panel": {
|
|
39219
|
+
type: T.PANEL;
|
|
39220
|
+
children: string;
|
|
39221
|
+
};
|
|
39222
|
+
"joining_edu_server_progress_screen_content/popup_dialog_factory": {
|
|
39223
|
+
type: T.FACTORY;
|
|
39224
|
+
children: string;
|
|
39225
|
+
};
|
|
39050
39226
|
"cloud_download_screen_content": {
|
|
39051
39227
|
type: T.PANEL;
|
|
39052
39228
|
children: 'background' | 'cloud_download_panel' | 'cloud_download_error_panel' | 'popup_dialog_factory';
|
|
@@ -40893,21 +41069,21 @@ export type RealmsSettingsType = {
|
|
|
40893
41069
|
};
|
|
40894
41070
|
"free_up_space_popup_content_stack_panel": {
|
|
40895
41071
|
type: T.STACK_PANEL;
|
|
40896
|
-
children: '
|
|
41072
|
+
children: 'free_up_space_description_label' | 'padding1' | 'free_up_space_storage_bar_panel' | 'padding2' | 'free_up_space_manual_save_list_stack_panel';
|
|
40897
41073
|
};
|
|
40898
|
-
"free_up_space_popup_content_stack_panel/
|
|
41074
|
+
"free_up_space_popup_content_stack_panel/free_up_space_description_label": {
|
|
40899
41075
|
type: T.PANEL;
|
|
40900
|
-
children:
|
|
41076
|
+
children: string;
|
|
40901
41077
|
};
|
|
40902
|
-
"free_up_space_popup_content_stack_panel/
|
|
40903
|
-
type: T.
|
|
41078
|
+
"free_up_space_popup_content_stack_panel/padding1": {
|
|
41079
|
+
type: T.PANEL;
|
|
40904
41080
|
children: string;
|
|
40905
41081
|
};
|
|
40906
|
-
"free_up_space_popup_content_stack_panel/
|
|
40907
|
-
type: T.
|
|
41082
|
+
"free_up_space_popup_content_stack_panel/free_up_space_storage_bar_panel": {
|
|
41083
|
+
type: T.PANEL;
|
|
40908
41084
|
children: string;
|
|
40909
41085
|
};
|
|
40910
|
-
"free_up_space_popup_content_stack_panel/
|
|
41086
|
+
"free_up_space_popup_content_stack_panel/padding2": {
|
|
40911
41087
|
type: T.PANEL;
|
|
40912
41088
|
children: string;
|
|
40913
41089
|
};
|
|
@@ -41775,6 +41951,10 @@ export type RealmsSettingsType = {
|
|
|
41775
41951
|
type: T.SCREEN;
|
|
41776
41952
|
children: string;
|
|
41777
41953
|
};
|
|
41954
|
+
"screen_realm_hub_saves": {
|
|
41955
|
+
type: T.SCREEN;
|
|
41956
|
+
children: string;
|
|
41957
|
+
};
|
|
41778
41958
|
};
|
|
41779
41959
|
export type RealmsAllowlistType = {
|
|
41780
41960
|
"spacing_gap": {
|
|
@@ -47153,6 +47333,10 @@ export type SettingsType = {
|
|
|
47153
47333
|
type: T.SCREEN;
|
|
47154
47334
|
children: string;
|
|
47155
47335
|
};
|
|
47336
|
+
"settings_screen_base_fullscreen": {
|
|
47337
|
+
type: T.SCREEN;
|
|
47338
|
+
children: string;
|
|
47339
|
+
};
|
|
47156
47340
|
"screen_world_create": {
|
|
47157
47341
|
type: T.SCREEN;
|
|
47158
47342
|
children: string;
|
|
@@ -47169,18 +47353,34 @@ export type SettingsType = {
|
|
|
47169
47353
|
type: T.SCREEN;
|
|
47170
47354
|
children: string;
|
|
47171
47355
|
};
|
|
47356
|
+
"screen_controls_and_settings_fullscreen": {
|
|
47357
|
+
type: T.SCREEN;
|
|
47358
|
+
children: string;
|
|
47359
|
+
};
|
|
47172
47360
|
"screen_world_controls_and_settings": {
|
|
47173
47361
|
type: T.SCREEN;
|
|
47174
47362
|
children: string;
|
|
47175
47363
|
};
|
|
47364
|
+
"screen_world_controls_and_settings_fullscreen": {
|
|
47365
|
+
type: T.SCREEN;
|
|
47366
|
+
children: string;
|
|
47367
|
+
};
|
|
47176
47368
|
"screen_realm_controls_and_settings": {
|
|
47177
47369
|
type: T.SCREEN;
|
|
47178
47370
|
children: string;
|
|
47179
47371
|
};
|
|
47372
|
+
"screen_realm_controls_and_settings_fullscreen": {
|
|
47373
|
+
type: T.SCREEN;
|
|
47374
|
+
children: string;
|
|
47375
|
+
};
|
|
47180
47376
|
"screen_realm_member_controls_and_settings": {
|
|
47181
47377
|
type: T.SCREEN;
|
|
47182
47378
|
children: string;
|
|
47183
47379
|
};
|
|
47380
|
+
"screen_realm_member_controls_and_settings_fullscreen": {
|
|
47381
|
+
type: T.SCREEN;
|
|
47382
|
+
children: string;
|
|
47383
|
+
};
|
|
47184
47384
|
"screen_realm_settings": {
|
|
47185
47385
|
type: T.SCREEN;
|
|
47186
47386
|
children: string;
|
|
@@ -47535,24 +47735,16 @@ export type SettingsType = {
|
|
|
47535
47735
|
};
|
|
47536
47736
|
"section_content_panels/general_and_controls_sections": {
|
|
47537
47737
|
type: T.STACK_PANEL;
|
|
47538
|
-
children: 'accessibility_section' | '
|
|
47738
|
+
children: 'accessibility_section' | 'keyboard_and_mouse_section' | 'controller_section' | 'touch_section' | 'party_section' | 'general_tab_section' | 'account_section' | 'global_texture_pack_section' | 'storage_management_header' | 'storage_management_section' | 'edu_cloud_storage_section' | 'creator_section' | 'video_section' | 'view_subscriptions_prerelease_section' | 'view_subscriptions_section' | 'sound_section' | 'language_section' | 'preview_section' | 'debug_section' | 'ui_debug_section' | 'edu_debug_section' | 'marketplace_debug_section' | 'gatherings_debug_section' | 'flighting_debug_section' | 'realms_debug_section' | 'automation_section' | 'discovery_debug_section' | 'how_to_play_section';
|
|
47539
47739
|
};
|
|
47540
47740
|
"section_content_panels/general_and_controls_sections/accessibility_section": {
|
|
47541
47741
|
type: T.STACK_PANEL;
|
|
47542
47742
|
children: string;
|
|
47543
47743
|
};
|
|
47544
|
-
"section_content_panels/general_and_controls_sections/accessibility_section_ore_ui": {
|
|
47545
|
-
type: T.STACK_PANEL;
|
|
47546
|
-
children: string;
|
|
47547
|
-
};
|
|
47548
47744
|
"section_content_panels/general_and_controls_sections/keyboard_and_mouse_section": {
|
|
47549
47745
|
type: T.STACK_PANEL;
|
|
47550
47746
|
children: string;
|
|
47551
47747
|
};
|
|
47552
|
-
"section_content_panels/general_and_controls_sections/keyboard_and_mouse_section_ore_ui": {
|
|
47553
|
-
type: T.STACK_PANEL;
|
|
47554
|
-
children: string;
|
|
47555
|
-
};
|
|
47556
47748
|
"section_content_panels/general_and_controls_sections/controller_section": {
|
|
47557
47749
|
type: T.STACK_PANEL;
|
|
47558
47750
|
children: string;
|
|
@@ -47569,18 +47761,10 @@ export type SettingsType = {
|
|
|
47569
47761
|
type: T.STACK_PANEL;
|
|
47570
47762
|
children: string;
|
|
47571
47763
|
};
|
|
47572
|
-
"section_content_panels/general_and_controls_sections/general_tab_section_ore_ui": {
|
|
47573
|
-
type: T.STACK_PANEL;
|
|
47574
|
-
children: string;
|
|
47575
|
-
};
|
|
47576
47764
|
"section_content_panels/general_and_controls_sections/account_section": {
|
|
47577
47765
|
type: T.STACK_PANEL;
|
|
47578
47766
|
children: string;
|
|
47579
47767
|
};
|
|
47580
|
-
"section_content_panels/general_and_controls_sections/account_section_ore_ui": {
|
|
47581
|
-
type: T.STACK_PANEL;
|
|
47582
|
-
children: string;
|
|
47583
|
-
};
|
|
47584
47768
|
"section_content_panels/general_and_controls_sections/global_texture_pack_section": {
|
|
47585
47769
|
type: T.STACK_PANEL;
|
|
47586
47770
|
children: string;
|
|
@@ -47605,10 +47789,6 @@ export type SettingsType = {
|
|
|
47605
47789
|
type: T.STACK_PANEL;
|
|
47606
47790
|
children: string;
|
|
47607
47791
|
};
|
|
47608
|
-
"section_content_panels/general_and_controls_sections/video_section_ore_ui": {
|
|
47609
|
-
type: T.STACK_PANEL;
|
|
47610
|
-
children: string;
|
|
47611
|
-
};
|
|
47612
47792
|
"section_content_panels/general_and_controls_sections/view_subscriptions_prerelease_section": {
|
|
47613
47793
|
type: T.PANEL;
|
|
47614
47794
|
children: string;
|
|
@@ -47621,18 +47801,10 @@ export type SettingsType = {
|
|
|
47621
47801
|
type: T.STACK_PANEL;
|
|
47622
47802
|
children: string;
|
|
47623
47803
|
};
|
|
47624
|
-
"section_content_panels/general_and_controls_sections/sound_section_ore_ui": {
|
|
47625
|
-
type: T.STACK_PANEL;
|
|
47626
|
-
children: string;
|
|
47627
|
-
};
|
|
47628
47804
|
"section_content_panels/general_and_controls_sections/language_section": {
|
|
47629
47805
|
type: T.STACK_PANEL;
|
|
47630
47806
|
children: string;
|
|
47631
47807
|
};
|
|
47632
|
-
"section_content_panels/general_and_controls_sections/language_section_ore_ui": {
|
|
47633
|
-
type: T.STACK_PANEL;
|
|
47634
|
-
children: string;
|
|
47635
|
-
};
|
|
47636
47808
|
"section_content_panels/general_and_controls_sections/preview_section": {
|
|
47637
47809
|
type: T.STACK_PANEL;
|
|
47638
47810
|
children: string;
|
|
@@ -47751,6 +47923,26 @@ export type ControlsSectionType = {
|
|
|
47751
47923
|
type: T.STACK_PANEL;
|
|
47752
47924
|
children: string;
|
|
47753
47925
|
};
|
|
47926
|
+
"keymapping_item_frame": {
|
|
47927
|
+
type: T.STACK_PANEL;
|
|
47928
|
+
children: 'keymap' | 'command_macro_command';
|
|
47929
|
+
};
|
|
47930
|
+
"keymapping_item_frame/keymap": {
|
|
47931
|
+
type: T.STACK_PANEL;
|
|
47932
|
+
children: string;
|
|
47933
|
+
};
|
|
47934
|
+
"keymapping_item_frame/command_macro_command": {
|
|
47935
|
+
type: T.PANEL;
|
|
47936
|
+
children: string;
|
|
47937
|
+
};
|
|
47938
|
+
"command_macro_command_textbox": {
|
|
47939
|
+
type: T.PANEL;
|
|
47940
|
+
children: 'text_box';
|
|
47941
|
+
};
|
|
47942
|
+
"command_macro_command_textbox/text_box": {
|
|
47943
|
+
type: T.EDIT_BOX;
|
|
47944
|
+
children: string;
|
|
47945
|
+
};
|
|
47754
47946
|
"keymapping_item": {
|
|
47755
47947
|
type: T.STACK_PANEL;
|
|
47756
47948
|
children: 'option_info_label_control' | 'keymapping_button_0' | 'keymapping_button_1';
|
|
@@ -47803,28 +47995,52 @@ export type ControlsSectionType = {
|
|
|
47803
47995
|
type: T.GRID;
|
|
47804
47996
|
children: string;
|
|
47805
47997
|
};
|
|
47806
|
-
"
|
|
47998
|
+
"keyboard_command_macros_grid": {
|
|
47999
|
+
type: T.STACK_PANEL;
|
|
48000
|
+
children: 'divider_before' | 'divider_before_padding' | 'command_macro_title' | 'command_macro_title_desc' | 'command_macro_title_padding' | 'command_macro_keymapping_grid' | 'divider_after' | 'divider_after_padding';
|
|
48001
|
+
};
|
|
48002
|
+
"keyboard_command_macros_grid/divider_before": {
|
|
47807
48003
|
type: T.PANEL;
|
|
47808
|
-
children:
|
|
48004
|
+
children: 'section_divider';
|
|
47809
48005
|
};
|
|
47810
|
-
"
|
|
47811
|
-
type: T.
|
|
47812
|
-
children:
|
|
48006
|
+
"keyboard_command_macros_grid/divider_before/section_divider": {
|
|
48007
|
+
type: T.IMAGE;
|
|
48008
|
+
children: string;
|
|
47813
48009
|
};
|
|
47814
|
-
"
|
|
48010
|
+
"keyboard_command_macros_grid/divider_before_padding": {
|
|
47815
48011
|
type: T.PANEL;
|
|
47816
48012
|
children: string;
|
|
47817
48013
|
};
|
|
47818
|
-
"
|
|
48014
|
+
"keyboard_command_macros_grid/command_macro_title": {
|
|
48015
|
+
type: T.LABEL;
|
|
48016
|
+
children: string;
|
|
48017
|
+
};
|
|
48018
|
+
"keyboard_command_macros_grid/command_macro_title_desc": {
|
|
47819
48019
|
type: T.LABEL;
|
|
47820
48020
|
children: string;
|
|
47821
48021
|
};
|
|
47822
|
-
"
|
|
48022
|
+
"keyboard_command_macros_grid/command_macro_title_padding": {
|
|
47823
48023
|
type: T.PANEL;
|
|
47824
48024
|
children: string;
|
|
47825
48025
|
};
|
|
47826
|
-
"
|
|
47827
|
-
type: T.
|
|
48026
|
+
"keyboard_command_macros_grid/command_macro_keymapping_grid": {
|
|
48027
|
+
type: T.GRID;
|
|
48028
|
+
children: string;
|
|
48029
|
+
};
|
|
48030
|
+
"keyboard_command_macros_grid/divider_after": {
|
|
48031
|
+
type: T.PANEL;
|
|
48032
|
+
children: 'section_divider';
|
|
48033
|
+
};
|
|
48034
|
+
"keyboard_command_macros_grid/divider_after/section_divider": {
|
|
48035
|
+
type: T.IMAGE;
|
|
48036
|
+
children: string;
|
|
48037
|
+
};
|
|
48038
|
+
"keyboard_command_macros_grid/divider_after_padding": {
|
|
48039
|
+
type: T.PANEL;
|
|
48040
|
+
children: string;
|
|
48041
|
+
};
|
|
48042
|
+
"keyboard_and_mouse_button": {
|
|
48043
|
+
type: T.PANEL;
|
|
47828
48044
|
children: string;
|
|
47829
48045
|
};
|
|
47830
48046
|
"keyboard_and_mouse_section": {
|
|
@@ -47865,7 +48081,7 @@ export type ControlsSectionType = {
|
|
|
47865
48081
|
};
|
|
47866
48082
|
"keyboard_and_mouse_section/keyboard_section": {
|
|
47867
48083
|
type: T.STACK_PANEL;
|
|
47868
|
-
children: 'option_group_label' | 'keyboard_keymapping_grid' | 'control_alt_chords_standard_keyboard_section';
|
|
48084
|
+
children: 'option_group_label' | 'keyboard_keymapping_grid' | 'control_alt_chords_standard_keyboard_section' | 'command_macros';
|
|
47869
48085
|
};
|
|
47870
48086
|
"keyboard_and_mouse_section/keyboard_section/option_group_label": {
|
|
47871
48087
|
type: T.PANEL;
|
|
@@ -47887,9 +48103,13 @@ export type ControlsSectionType = {
|
|
|
47887
48103
|
type: T.GRID;
|
|
47888
48104
|
children: string;
|
|
47889
48105
|
};
|
|
48106
|
+
"keyboard_and_mouse_section/keyboard_section/command_macros": {
|
|
48107
|
+
type: T.STACK_PANEL;
|
|
48108
|
+
children: string;
|
|
48109
|
+
};
|
|
47890
48110
|
"keyboard_and_mouse_section/full_keyboard_section": {
|
|
47891
48111
|
type: T.STACK_PANEL;
|
|
47892
|
-
children: 'option_slider_smooth_rotation_speed' | 'full_keyboard_label' | 'keyboard_full_keymapping_grid' | 'control_alt_chords_full_keyboard_section';
|
|
48112
|
+
children: 'option_slider_smooth_rotation_speed' | 'full_keyboard_label' | 'keyboard_full_keymapping_grid' | 'control_alt_chords_full_keyboard_section' | 'command_macros';
|
|
47893
48113
|
};
|
|
47894
48114
|
"keyboard_and_mouse_section/full_keyboard_section/option_slider_smooth_rotation_speed": {
|
|
47895
48115
|
type: T.PANEL;
|
|
@@ -47915,6 +48135,10 @@ export type ControlsSectionType = {
|
|
|
47915
48135
|
type: T.GRID;
|
|
47916
48136
|
children: string;
|
|
47917
48137
|
};
|
|
48138
|
+
"keyboard_and_mouse_section/full_keyboard_section/command_macros": {
|
|
48139
|
+
type: T.STACK_PANEL;
|
|
48140
|
+
children: string;
|
|
48141
|
+
};
|
|
47918
48142
|
"keyboard_and_mouse_section/reset_button": {
|
|
47919
48143
|
type: T.BUTTON;
|
|
47920
48144
|
children: string;
|
|
@@ -48209,29 +48433,9 @@ export type GeneralSectionType = {
|
|
|
48209
48433
|
type: T.PANEL;
|
|
48210
48434
|
children: string;
|
|
48211
48435
|
};
|
|
48212
|
-
"general_tab_section_ore_ui": {
|
|
48213
|
-
type: T.STACK_PANEL;
|
|
48214
|
-
children: 'spacer_0' | 'generic_label' | 'spacer_1' | 'gamepad_helper_label';
|
|
48215
|
-
};
|
|
48216
|
-
"general_tab_section_ore_ui/spacer_0": {
|
|
48217
|
-
type: T.PANEL;
|
|
48218
|
-
children: string;
|
|
48219
|
-
};
|
|
48220
|
-
"general_tab_section_ore_ui/generic_label": {
|
|
48221
|
-
type: T.LABEL;
|
|
48222
|
-
children: string;
|
|
48223
|
-
};
|
|
48224
|
-
"general_tab_section_ore_ui/spacer_1": {
|
|
48225
|
-
type: T.PANEL;
|
|
48226
|
-
children: string;
|
|
48227
|
-
};
|
|
48228
|
-
"general_tab_section_ore_ui/gamepad_helper_label": {
|
|
48229
|
-
type: T.LABEL;
|
|
48230
|
-
children: string;
|
|
48231
|
-
};
|
|
48232
48436
|
"general_tab_section": {
|
|
48233
48437
|
type: T.STACK_PANEL;
|
|
48234
|
-
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';
|
|
48438
|
+
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';
|
|
48235
48439
|
};
|
|
48236
48440
|
"general_tab_section/option_toggle_fail_realms_purchase_fulfillment": {
|
|
48237
48441
|
type: T.PANEL;
|
|
@@ -48333,6 +48537,10 @@ export type GeneralSectionType = {
|
|
|
48333
48537
|
type: T.PANEL;
|
|
48334
48538
|
children: string;
|
|
48335
48539
|
};
|
|
48540
|
+
"general_tab_section/pause_menu_on_focus_lost": {
|
|
48541
|
+
type: T.PANEL;
|
|
48542
|
+
children: string;
|
|
48543
|
+
};
|
|
48336
48544
|
"general_tab_section/paddingLinkEduSupport": {
|
|
48337
48545
|
type: T.PANEL;
|
|
48338
48546
|
children: string;
|
|
@@ -48485,26 +48693,6 @@ export type GeneralSectionType = {
|
|
|
48485
48693
|
type: T.LABEL;
|
|
48486
48694
|
children: string;
|
|
48487
48695
|
};
|
|
48488
|
-
"account_section_ore_ui": {
|
|
48489
|
-
type: T.STACK_PANEL;
|
|
48490
|
-
children: 'spacer_0' | 'generic_label' | 'spacer_1' | 'gamepad_helper_label';
|
|
48491
|
-
};
|
|
48492
|
-
"account_section_ore_ui/spacer_0": {
|
|
48493
|
-
type: T.PANEL;
|
|
48494
|
-
children: string;
|
|
48495
|
-
};
|
|
48496
|
-
"account_section_ore_ui/generic_label": {
|
|
48497
|
-
type: T.LABEL;
|
|
48498
|
-
children: string;
|
|
48499
|
-
};
|
|
48500
|
-
"account_section_ore_ui/spacer_1": {
|
|
48501
|
-
type: T.PANEL;
|
|
48502
|
-
children: string;
|
|
48503
|
-
};
|
|
48504
|
-
"account_section_ore_ui/gamepad_helper_label": {
|
|
48505
|
-
type: T.LABEL;
|
|
48506
|
-
children: string;
|
|
48507
|
-
};
|
|
48508
48696
|
"account_button": {
|
|
48509
48697
|
type: T.PANEL;
|
|
48510
48698
|
children: string;
|
|
@@ -49015,7 +49203,7 @@ export type GeneralSectionType = {
|
|
|
49015
49203
|
};
|
|
49016
49204
|
"creator_toggles_panel": {
|
|
49017
49205
|
type: T.STACK_PANEL;
|
|
49018
|
-
children: 'section_panel_1' | '
|
|
49206
|
+
children: 'section_panel_1' | 'primary_panel';
|
|
49019
49207
|
};
|
|
49020
49208
|
"creator_toggles_panel/section_panel_1": {
|
|
49021
49209
|
type: T.PANEL;
|
|
@@ -49025,31 +49213,19 @@ export type GeneralSectionType = {
|
|
|
49025
49213
|
type: T.IMAGE;
|
|
49026
49214
|
children: string;
|
|
49027
49215
|
};
|
|
49028
|
-
"creator_toggles_panel/
|
|
49216
|
+
"creator_toggles_panel/primary_panel": {
|
|
49029
49217
|
type: T.STACK_PANEL;
|
|
49030
|
-
children: 'content_log_section_label' | 'content_log_section_label_spacer' | '
|
|
49218
|
+
children: 'content_log_section_label' | 'content_log_section_label_spacer' | 'clipboard_setting';
|
|
49031
49219
|
};
|
|
49032
|
-
"creator_toggles_panel/
|
|
49220
|
+
"creator_toggles_panel/primary_panel/content_log_section_label": {
|
|
49033
49221
|
type: T.LABEL;
|
|
49034
49222
|
children: string;
|
|
49035
49223
|
};
|
|
49036
|
-
"creator_toggles_panel/
|
|
49224
|
+
"creator_toggles_panel/primary_panel/content_log_section_label_spacer": {
|
|
49037
49225
|
type: T.PANEL;
|
|
49038
49226
|
children: string;
|
|
49039
49227
|
};
|
|
49040
|
-
"creator_toggles_panel/
|
|
49041
|
-
type: T.PANEL;
|
|
49042
|
-
children: string;
|
|
49043
|
-
};
|
|
49044
|
-
"creator_toggles_panel/creator_setting_button": {
|
|
49045
|
-
type: T.STACK_PANEL;
|
|
49046
|
-
children: 'go_to_keybinds' | 'creator_settings_section_label_spacer';
|
|
49047
|
-
};
|
|
49048
|
-
"creator_toggles_panel/creator_setting_button/go_to_keybinds": {
|
|
49049
|
-
type: T.BUTTON;
|
|
49050
|
-
children: string;
|
|
49051
|
-
};
|
|
49052
|
-
"creator_toggles_panel/creator_setting_button/creator_settings_section_label_spacer": {
|
|
49228
|
+
"creator_toggles_panel/primary_panel/clipboard_setting": {
|
|
49053
49229
|
type: T.PANEL;
|
|
49054
49230
|
children: string;
|
|
49055
49231
|
};
|
|
@@ -49117,6 +49293,34 @@ export type GeneralSectionType = {
|
|
|
49117
49293
|
type: T.PANEL;
|
|
49118
49294
|
children: string;
|
|
49119
49295
|
};
|
|
49296
|
+
"editor_toggles_panel": {
|
|
49297
|
+
type: T.STACK_PANEL;
|
|
49298
|
+
children: 'section_panel_1' | 'primary_panel';
|
|
49299
|
+
};
|
|
49300
|
+
"editor_toggles_panel/section_panel_1": {
|
|
49301
|
+
type: T.PANEL;
|
|
49302
|
+
children: 'section_divider';
|
|
49303
|
+
};
|
|
49304
|
+
"editor_toggles_panel/section_panel_1/section_divider": {
|
|
49305
|
+
type: T.IMAGE;
|
|
49306
|
+
children: string;
|
|
49307
|
+
};
|
|
49308
|
+
"editor_toggles_panel/primary_panel": {
|
|
49309
|
+
type: T.STACK_PANEL;
|
|
49310
|
+
children: 'content_log_section_label' | 'content_log_section_label_spacer' | 'clipboard_setting';
|
|
49311
|
+
};
|
|
49312
|
+
"editor_toggles_panel/primary_panel/content_log_section_label": {
|
|
49313
|
+
type: T.LABEL;
|
|
49314
|
+
children: string;
|
|
49315
|
+
};
|
|
49316
|
+
"editor_toggles_panel/primary_panel/content_log_section_label_spacer": {
|
|
49317
|
+
type: T.PANEL;
|
|
49318
|
+
children: string;
|
|
49319
|
+
};
|
|
49320
|
+
"editor_toggles_panel/primary_panel/clipboard_setting": {
|
|
49321
|
+
type: T.PANEL;
|
|
49322
|
+
children: string;
|
|
49323
|
+
};
|
|
49120
49324
|
"diagnostics_toggles_panel": {
|
|
49121
49325
|
type: T.STACK_PANEL;
|
|
49122
49326
|
children: 'section_panel_1' | 'primary_panel';
|
|
@@ -49303,7 +49507,7 @@ export type GeneralSectionType = {
|
|
|
49303
49507
|
};
|
|
49304
49508
|
"creator_section": {
|
|
49305
49509
|
type: T.STACK_PANEL;
|
|
49306
|
-
children: 'editor_toggle' | 'creator_toggles' | 'debugger_toggles_panel' | 'diagnostics_toggle_panel' | 'watchdog_toggles_panel' | 'device_info_toggles_panel' | 'content_log_panel';
|
|
49510
|
+
children: 'editor_toggle' | 'creator_toggles' | 'debugger_toggles_panel' | 'diagnostics_toggle_panel' | 'watchdog_toggles_panel' | 'editor_toggles_panel' | 'device_info_toggles_panel' | 'content_log_panel';
|
|
49307
49511
|
};
|
|
49308
49512
|
"creator_section/editor_toggle": {
|
|
49309
49513
|
type: T.STACK_PANEL;
|
|
@@ -49325,6 +49529,10 @@ export type GeneralSectionType = {
|
|
|
49325
49529
|
type: T.STACK_PANEL;
|
|
49326
49530
|
children: string;
|
|
49327
49531
|
};
|
|
49532
|
+
"creator_section/editor_toggles_panel": {
|
|
49533
|
+
type: T.STACK_PANEL;
|
|
49534
|
+
children: string;
|
|
49535
|
+
};
|
|
49328
49536
|
"creator_section/device_info_toggles_panel": {
|
|
49329
49537
|
type: T.STACK_PANEL;
|
|
49330
49538
|
children: string;
|
|
@@ -49341,26 +49549,6 @@ export type GeneralSectionType = {
|
|
|
49341
49549
|
type: T.TOGGLE;
|
|
49342
49550
|
children: string;
|
|
49343
49551
|
};
|
|
49344
|
-
"video_section_ore_ui": {
|
|
49345
|
-
type: T.STACK_PANEL;
|
|
49346
|
-
children: 'spacer_0' | 'generic_label' | 'spacer_1' | 'gamepad_helper_label';
|
|
49347
|
-
};
|
|
49348
|
-
"video_section_ore_ui/spacer_0": {
|
|
49349
|
-
type: T.PANEL;
|
|
49350
|
-
children: string;
|
|
49351
|
-
};
|
|
49352
|
-
"video_section_ore_ui/generic_label": {
|
|
49353
|
-
type: T.LABEL;
|
|
49354
|
-
children: string;
|
|
49355
|
-
};
|
|
49356
|
-
"video_section_ore_ui/spacer_1": {
|
|
49357
|
-
type: T.PANEL;
|
|
49358
|
-
children: string;
|
|
49359
|
-
};
|
|
49360
|
-
"video_section_ore_ui/gamepad_helper_label": {
|
|
49361
|
-
type: T.LABEL;
|
|
49362
|
-
children: string;
|
|
49363
|
-
};
|
|
49364
49552
|
"video_menu_slider_step_progress": {
|
|
49365
49553
|
type: T.IMAGE;
|
|
49366
49554
|
children: string;
|
|
@@ -49399,7 +49587,7 @@ export type GeneralSectionType = {
|
|
|
49399
49587
|
};
|
|
49400
49588
|
"video_section": {
|
|
49401
49589
|
type: T.STACK_PANEL;
|
|
49402
|
-
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';
|
|
49590
|
+
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';
|
|
49403
49591
|
};
|
|
49404
49592
|
"video_section/advanced_graphics_options_panel": {
|
|
49405
49593
|
type: T.STACK_PANEL;
|
|
@@ -49809,6 +49997,14 @@ export type GeneralSectionType = {
|
|
|
49809
49997
|
type: T.PANEL;
|
|
49810
49998
|
children: string;
|
|
49811
49999
|
};
|
|
50000
|
+
"video_section/texture_streaming_toggle": {
|
|
50001
|
+
type: T.PANEL;
|
|
50002
|
+
children: string;
|
|
50003
|
+
};
|
|
50004
|
+
"video_section/spacer_37": {
|
|
50005
|
+
type: T.PANEL;
|
|
50006
|
+
children: string;
|
|
50007
|
+
};
|
|
49812
50008
|
"video_section/reset_button": {
|
|
49813
50009
|
type: T.BUTTON;
|
|
49814
50010
|
children: string;
|
|
@@ -50283,7 +50479,11 @@ export type GeneralSectionType = {
|
|
|
50283
50479
|
};
|
|
50284
50480
|
"accessibility_section": {
|
|
50285
50481
|
type: T.STACK_PANEL;
|
|
50286
|
-
children: 'option_toggle0' | 'option_toggle1' | 'option_toggle2' | 'option_slider_0' | 'option_toggle3' | 'hud_text_background_opacity_slider' | 'chat_opacity_slider' | 'actionbar_text_background_opacity_slider' | 'camera_shake_toggle' | 'hide_endflash_toggle' | 'enable_dithering_blocks_toggle' | 'enable_dithering_mobs_toggle' | 'darkness_slider' | 'glint_strength_slider' | 'glint_speed_slider' | 'toast_notification_duration_options_panel' | 'chat_message_duration_options_panel' | 'gui_scale_slider' | 'gui_accessibility_scaling_toggle' | 'reset_button';
|
|
50482
|
+
children: 'option_toggle_subtitles' | 'option_toggle0' | 'option_toggle1' | 'option_toggle2' | 'option_slider_0' | 'option_toggle3' | 'hud_text_background_opacity_slider' | 'chat_opacity_slider' | 'actionbar_text_background_opacity_slider' | 'camera_shake_toggle' | 'hide_endflash_toggle' | 'enable_dithering_blocks_toggle' | 'enable_dithering_mobs_toggle' | 'darkness_slider' | 'glint_strength_slider' | 'glint_speed_slider' | 'toast_notification_duration_options_panel' | 'chat_message_duration_options_panel' | 'gui_scale_slider' | 'gui_accessibility_scaling_toggle' | 'reset_button';
|
|
50483
|
+
};
|
|
50484
|
+
"accessibility_section/option_toggle_subtitles": {
|
|
50485
|
+
type: T.PANEL;
|
|
50486
|
+
children: string;
|
|
50287
50487
|
};
|
|
50288
50488
|
"accessibility_section/option_toggle0": {
|
|
50289
50489
|
type: T.PANEL;
|
|
@@ -50409,54 +50609,10 @@ export type GeneralSectionType = {
|
|
|
50409
50609
|
type: T.BUTTON;
|
|
50410
50610
|
children: string;
|
|
50411
50611
|
};
|
|
50412
|
-
"accessibility_section_ore_ui": {
|
|
50413
|
-
type: T.STACK_PANEL;
|
|
50414
|
-
children: 'spacer_0' | 'generic_label' | 'spacer_1' | 'gamepad_helper_label' | 'accessibility_button';
|
|
50415
|
-
};
|
|
50416
|
-
"accessibility_section_ore_ui/spacer_0": {
|
|
50417
|
-
type: T.PANEL;
|
|
50418
|
-
children: string;
|
|
50419
|
-
};
|
|
50420
|
-
"accessibility_section_ore_ui/generic_label": {
|
|
50421
|
-
type: T.LABEL;
|
|
50422
|
-
children: string;
|
|
50423
|
-
};
|
|
50424
|
-
"accessibility_section_ore_ui/spacer_1": {
|
|
50425
|
-
type: T.PANEL;
|
|
50426
|
-
children: string;
|
|
50427
|
-
};
|
|
50428
|
-
"accessibility_section_ore_ui/gamepad_helper_label": {
|
|
50429
|
-
type: T.LABEL;
|
|
50430
|
-
children: string;
|
|
50431
|
-
};
|
|
50432
|
-
"accessibility_section_ore_ui/accessibility_button": {
|
|
50433
|
-
type: T.BUTTON;
|
|
50434
|
-
children: string;
|
|
50435
|
-
};
|
|
50436
50612
|
"sound_button": {
|
|
50437
50613
|
type: T.PANEL;
|
|
50438
50614
|
children: string;
|
|
50439
50615
|
};
|
|
50440
|
-
"sound_section_ore_ui": {
|
|
50441
|
-
type: T.STACK_PANEL;
|
|
50442
|
-
children: 'spacer_0' | 'generic_label' | 'spacer_1' | 'gamepad_helper_label';
|
|
50443
|
-
};
|
|
50444
|
-
"sound_section_ore_ui/spacer_0": {
|
|
50445
|
-
type: T.PANEL;
|
|
50446
|
-
children: string;
|
|
50447
|
-
};
|
|
50448
|
-
"sound_section_ore_ui/generic_label": {
|
|
50449
|
-
type: T.LABEL;
|
|
50450
|
-
children: string;
|
|
50451
|
-
};
|
|
50452
|
-
"sound_section_ore_ui/spacer_1": {
|
|
50453
|
-
type: T.PANEL;
|
|
50454
|
-
children: string;
|
|
50455
|
-
};
|
|
50456
|
-
"sound_section_ore_ui/gamepad_helper_label": {
|
|
50457
|
-
type: T.LABEL;
|
|
50458
|
-
children: string;
|
|
50459
|
-
};
|
|
50460
50616
|
"sound_section": {
|
|
50461
50617
|
type: T.STACK_PANEL;
|
|
50462
50618
|
children: 'paddingMainVolume' | 'option_slider_0' | 'paddingDividerAudioSettings' | 'dividerAudioSettings' | 'paddingMusic' | 'option_slider_1' | 'paddingSound' | 'option_slider_2' | 'paddingAmbient' | 'option_slider_3' | 'paddingBlockVolume' | 'option_slider_4' | 'paddingHostile' | 'option_slider_5' | 'paddingNeutralVolume' | 'option_slider_6' | 'paddingPlayervolume' | 'option_slider_7' | 'paddingRecordVolume' | 'option_slider_8' | 'paddingWeatherVolume' | 'option_slider_9' | 'paddingTTSVolume' | 'option_slider_10' | 'paddingResetVolumes' | 'reset_button' | 'paddingEndOfList';
|
|
@@ -50589,26 +50745,6 @@ export type GeneralSectionType = {
|
|
|
50589
50745
|
type: T.GRID;
|
|
50590
50746
|
children: string;
|
|
50591
50747
|
};
|
|
50592
|
-
"language_section_ore_ui": {
|
|
50593
|
-
type: T.STACK_PANEL;
|
|
50594
|
-
children: 'spacer_0' | 'generic_label' | 'spacer_1' | 'gamepad_helper_label';
|
|
50595
|
-
};
|
|
50596
|
-
"language_section_ore_ui/spacer_0": {
|
|
50597
|
-
type: T.PANEL;
|
|
50598
|
-
children: string;
|
|
50599
|
-
};
|
|
50600
|
-
"language_section_ore_ui/generic_label": {
|
|
50601
|
-
type: T.LABEL;
|
|
50602
|
-
children: string;
|
|
50603
|
-
};
|
|
50604
|
-
"language_section_ore_ui/spacer_1": {
|
|
50605
|
-
type: T.PANEL;
|
|
50606
|
-
children: string;
|
|
50607
|
-
};
|
|
50608
|
-
"language_section_ore_ui/gamepad_helper_label": {
|
|
50609
|
-
type: T.LABEL;
|
|
50610
|
-
children: string;
|
|
50611
|
-
};
|
|
50612
50748
|
"preview_button": {
|
|
50613
50749
|
type: T.PANEL;
|
|
50614
50750
|
children: string;
|
|
@@ -50847,7 +50983,7 @@ export type GeneralSectionType = {
|
|
|
50847
50983
|
};
|
|
50848
50984
|
"debug_override_treatments_panel/override_treatments_panel_background": {
|
|
50849
50985
|
type: T.STACK_PANEL;
|
|
50850
|
-
children: 'option_toggle_treatment_override' | 'spacer_0' | 'override_treatment_options_panel' | 'treatments_label_panel' | '
|
|
50986
|
+
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';
|
|
50851
50987
|
};
|
|
50852
50988
|
"debug_override_treatments_panel/override_treatments_panel_background/option_toggle_treatment_override": {
|
|
50853
50989
|
type: T.PANEL;
|
|
@@ -50901,14 +51037,6 @@ export type GeneralSectionType = {
|
|
|
50901
51037
|
type: T.LABEL;
|
|
50902
51038
|
children: string;
|
|
50903
51039
|
};
|
|
50904
|
-
"debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_1": {
|
|
50905
|
-
type: T.PANEL;
|
|
50906
|
-
children: 'progress_loading_spinner_1';
|
|
50907
|
-
};
|
|
50908
|
-
"debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_1/progress_loading_spinner_1": {
|
|
50909
|
-
type: T.IMAGE;
|
|
50910
|
-
children: string;
|
|
50911
|
-
};
|
|
50912
51040
|
"debug_override_treatments_panel/override_treatments_panel_background/treatment_grid": {
|
|
50913
51041
|
type: T.GRID;
|
|
50914
51042
|
children: string;
|
|
@@ -50921,14 +51049,6 @@ export type GeneralSectionType = {
|
|
|
50921
51049
|
type: T.LABEL;
|
|
50922
51050
|
children: string;
|
|
50923
51051
|
};
|
|
50924
|
-
"debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_2": {
|
|
50925
|
-
type: T.PANEL;
|
|
50926
|
-
children: 'progress_loading_spinner_2';
|
|
50927
|
-
};
|
|
50928
|
-
"debug_override_treatments_panel/override_treatments_panel_background/progress_spinner_2/progress_loading_spinner_2": {
|
|
50929
|
-
type: T.IMAGE;
|
|
50930
|
-
children: string;
|
|
50931
|
-
};
|
|
50932
51052
|
"debug_override_treatments_panel/override_treatments_panel_background/unused_treatment_grid": {
|
|
50933
51053
|
type: T.GRID;
|
|
50934
51054
|
children: string;
|
|
@@ -51403,7 +51523,7 @@ export type GeneralSectionType = {
|
|
|
51403
51523
|
};
|
|
51404
51524
|
"debug_section": {
|
|
51405
51525
|
type: T.STACK_PANEL;
|
|
51406
|
-
children: 'options_for_qa_convenience' | 'options_for_qa_convenience_spacer' | 'option_toggle_dev_console_button_0' | 'option_toggle_assertions_debug_break' | 'option_toggle_assertions_show_dialog' | 'option_dev_show_display_logged_error' | 'display_logged_error_panel' | 'option_dev_force_trial_mode' | 'option_dev_force_trial_mode_spacer' | 'debug_overlay_pages_label' | 'debug_overlay_button_panel' | 'pre_feature_toggles_label_spacer' | 'feature_toggles_label' | 'feature_toggles_label_spacer' | 'feature_toggles' | 'end_of_feature_toggles_label_spacer' | 'option_toggle_dev_disable_lan_signaling' | 'option_dropdown_nethernet_logging_verbosity' | 'option_dropdown_http_logging_verbosity' | 'option_dropdown_xsapi_logging_verbosity' | 'option_toggle_remote_imgui' | 'option_dropdown_0' | 'option_toggle_extra_debug_hud_info' | 'option_toggle_0_1' | 'option_toggle_0_2' | 'option_slider_0' | 'option_toggle_3' | 'option_toggle_4' | 'option_toggle_5' | 'option_toggle_6' | 'option_dropdown_server_chunk_map' | 'option_toggle_9' | 'option_toggle_disable_render_terrain' | 'option_toggle_disable_render_entities' | 'option_toggle_disable_render_blockentities' | 'option_toggle_disable_render_particles' | 'option_toggle_disable_render_sky' | 'option_toggle_disable_render_weather' | 'option_toggle_disable_render_hud' | 'option_toggle_disable_render_item_in_hand' | 'option_toggle_disable_render_main_menu_cubemap' | 'option_toggle_disable_render_main_menu_paperdoll_animation' | 'leak_memory' | 'log_area' | 'log_priority' | 'option_toggle_build_info' | 'option_perf_turtle' | 'option_default_profiling_option' | 'option_toggle_7' | 'option_toggle_8' | 'option_toggle_game_tip' | 'option_toggle_10' | 'dev_disable_client_blob_cache_toggle' | 'dev_force_client_blob_cache_toggle' | 'devquality_dropdown' | 'dev_add_http_delay_seconds' | 'dev_show_latency_graph_toggle' | 'xbox_sandbox_panel' | 'multithreaded_rendering_toggle' | 'filewatcher_rendering_toggle' | 'enable_texture_hot_reloader_toggle' | 'mock_http_panel' | 'vsync_dropdown' | 'sunsetting_use_overrides_toggle' | 'padding_sunsetting' | 'sunseting_state_toggle' | 'sunsetting_tier_dropdown' | 'padding_sunsetting_2' | 'padding1' | 'copy_internal_settings_folder_to_external' | 'padding_reset_day_one' | 'reset_new_player_flow' | 'reset_day_one_experience' | 'option_text_edit_1' | 'option_text_edit_2' | 'option_text_edit_3' | 'reset_report_timer_option' | 'reset_online_safety_option' | 'reset_ip_safety_option' | 'padding_graphics_options' | 'option_shadersdk_service_ip' | 'option_shadersdk_service_port' | 'option_shadersdk_target_port' | 'padding_graphics_buttons' | 'trigger_graphics_device_loss' | 'allocate_texture_handles' | 'padding_deferred_debug' | 'deferred_platform_override';
|
|
51526
|
+
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';
|
|
51407
51527
|
};
|
|
51408
51528
|
"debug_section/options_for_qa_convenience": {
|
|
51409
51529
|
type: T.LABEL;
|
|
@@ -51505,6 +51625,10 @@ export type GeneralSectionType = {
|
|
|
51505
51625
|
type: T.PANEL;
|
|
51506
51626
|
children: string;
|
|
51507
51627
|
};
|
|
51628
|
+
"debug_section/option_toggle_show_test_running_text": {
|
|
51629
|
+
type: T.PANEL;
|
|
51630
|
+
children: string;
|
|
51631
|
+
};
|
|
51508
51632
|
"debug_section/option_toggle_0_1": {
|
|
51509
51633
|
type: T.PANEL;
|
|
51510
51634
|
children: string;
|
|
@@ -51717,6 +51841,10 @@ export type GeneralSectionType = {
|
|
|
51717
51841
|
type: T.PANEL;
|
|
51718
51842
|
children: string;
|
|
51719
51843
|
};
|
|
51844
|
+
"debug_section/reset_authentication_option": {
|
|
51845
|
+
type: T.BUTTON;
|
|
51846
|
+
children: string;
|
|
51847
|
+
};
|
|
51720
51848
|
"debug_section/reset_report_timer_option": {
|
|
51721
51849
|
type: T.BUTTON;
|
|
51722
51850
|
children: string;
|
|
@@ -51725,6 +51853,14 @@ export type GeneralSectionType = {
|
|
|
51725
51853
|
type: T.BUTTON;
|
|
51726
51854
|
children: string;
|
|
51727
51855
|
};
|
|
51856
|
+
"debug_section/reset_show_hardcore_warning_option": {
|
|
51857
|
+
type: T.BUTTON;
|
|
51858
|
+
children: string;
|
|
51859
|
+
};
|
|
51860
|
+
"debug_section/reset_low_ping_warning_option": {
|
|
51861
|
+
type: T.BUTTON;
|
|
51862
|
+
children: string;
|
|
51863
|
+
};
|
|
51728
51864
|
"debug_section/reset_ip_safety_option": {
|
|
51729
51865
|
type: T.BUTTON;
|
|
51730
51866
|
children: string;
|
|
@@ -52107,7 +52243,7 @@ export type GeneralSectionType = {
|
|
|
52107
52243
|
};
|
|
52108
52244
|
"ui_debug_section": {
|
|
52109
52245
|
type: T.STACK_PANEL;
|
|
52110
|
-
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';
|
|
52246
|
+
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';
|
|
52111
52247
|
};
|
|
52112
52248
|
"ui_debug_section/ui_feature_toggles_label": {
|
|
52113
52249
|
type: T.LABEL;
|
|
@@ -52349,6 +52485,54 @@ export type GeneralSectionType = {
|
|
|
52349
52485
|
type: T.PANEL;
|
|
52350
52486
|
children: string;
|
|
52351
52487
|
};
|
|
52488
|
+
"ui_debug_section/end_of_other_options_divider": {
|
|
52489
|
+
type: T.PANEL;
|
|
52490
|
+
children: 'section_divider';
|
|
52491
|
+
};
|
|
52492
|
+
"ui_debug_section/end_of_other_options_divider/section_divider": {
|
|
52493
|
+
type: T.IMAGE;
|
|
52494
|
+
children: string;
|
|
52495
|
+
};
|
|
52496
|
+
"ui_debug_section/end_of_other_options_spacer": {
|
|
52497
|
+
type: T.PANEL;
|
|
52498
|
+
children: string;
|
|
52499
|
+
};
|
|
52500
|
+
"ui_debug_section/debug_data_label": {
|
|
52501
|
+
type: T.LABEL;
|
|
52502
|
+
children: string;
|
|
52503
|
+
};
|
|
52504
|
+
"ui_debug_section/debug_data_label_spacer": {
|
|
52505
|
+
type: T.PANEL;
|
|
52506
|
+
children: string;
|
|
52507
|
+
};
|
|
52508
|
+
"ui_debug_section/option_continuous_repaint": {
|
|
52509
|
+
type: T.PANEL;
|
|
52510
|
+
children: string;
|
|
52511
|
+
};
|
|
52512
|
+
"ui_debug_section/option_show_paint_rects": {
|
|
52513
|
+
type: T.PANEL;
|
|
52514
|
+
children: string;
|
|
52515
|
+
};
|
|
52516
|
+
"ui_debug_section/option_show_element_aabb": {
|
|
52517
|
+
type: T.PANEL;
|
|
52518
|
+
children: string;
|
|
52519
|
+
};
|
|
52520
|
+
"ui_debug_section/option_emulate_touch_events": {
|
|
52521
|
+
type: T.PANEL;
|
|
52522
|
+
children: string;
|
|
52523
|
+
};
|
|
52524
|
+
"ui_debug_section/end_of_debug_data_divider": {
|
|
52525
|
+
type: T.PANEL;
|
|
52526
|
+
children: 'section_divider';
|
|
52527
|
+
};
|
|
52528
|
+
"ui_debug_section/end_of_debug_data_divider/section_divider": {
|
|
52529
|
+
type: T.IMAGE;
|
|
52530
|
+
children: string;
|
|
52531
|
+
};
|
|
52532
|
+
"ui_debug_section/end_of_debug_data_spacer": {
|
|
52533
|
+
type: T.PANEL;
|
|
52534
|
+
children: string;
|
|
52535
|
+
};
|
|
52352
52536
|
"ui_debug_section/option_slider_drag_dwell": {
|
|
52353
52537
|
type: T.PANEL;
|
|
52354
52538
|
children: string;
|
|
@@ -53693,6 +53877,10 @@ export type SettingsCommonType = {
|
|
|
53693
53877
|
type: T.SCREEN;
|
|
53694
53878
|
children: string;
|
|
53695
53879
|
};
|
|
53880
|
+
"dynamic_dialog_fullscreen": {
|
|
53881
|
+
type: T.SCREEN;
|
|
53882
|
+
children: string;
|
|
53883
|
+
};
|
|
53696
53884
|
"settings_content": {
|
|
53697
53885
|
type: T.PANEL;
|
|
53698
53886
|
children: 'background' | 'stack_panel' | 'popup_dialog_factory';
|
|
@@ -53797,6 +53985,26 @@ export type SettingsCommonType = {
|
|
|
53797
53985
|
type: T.IMAGE;
|
|
53798
53986
|
children: string;
|
|
53799
53987
|
};
|
|
53988
|
+
"dialog_content_fullscreen": {
|
|
53989
|
+
type: T.PANEL;
|
|
53990
|
+
children: 'dialog_titles' | 'selector_area' | 'content_area' | 'section_divider';
|
|
53991
|
+
};
|
|
53992
|
+
"dialog_content_fullscreen/dialog_titles": {
|
|
53993
|
+
type: T.STACK_PANEL;
|
|
53994
|
+
children: string;
|
|
53995
|
+
};
|
|
53996
|
+
"dialog_content_fullscreen/selector_area": {
|
|
53997
|
+
type: T.PANEL;
|
|
53998
|
+
children: string;
|
|
53999
|
+
};
|
|
54000
|
+
"dialog_content_fullscreen/content_area": {
|
|
54001
|
+
type: T.PANEL;
|
|
54002
|
+
children: string;
|
|
54003
|
+
};
|
|
54004
|
+
"dialog_content_fullscreen/section_divider": {
|
|
54005
|
+
type: T.IMAGE;
|
|
54006
|
+
children: string;
|
|
54007
|
+
};
|
|
53800
54008
|
"selector_group_label": {
|
|
53801
54009
|
type: T.LABEL;
|
|
53802
54010
|
children: string;
|
|
@@ -53813,6 +54021,14 @@ export type SettingsCommonType = {
|
|
|
53813
54021
|
type: T.PANEL;
|
|
53814
54022
|
children: string;
|
|
53815
54023
|
};
|
|
54024
|
+
"selector_area_no_scroll": {
|
|
54025
|
+
type: T.PANEL;
|
|
54026
|
+
children: 'scrolling_panel';
|
|
54027
|
+
};
|
|
54028
|
+
"selector_area_no_scroll/scrolling_panel": {
|
|
54029
|
+
type: T.PANEL;
|
|
54030
|
+
children: string;
|
|
54031
|
+
};
|
|
53816
54032
|
"content_area": {
|
|
53817
54033
|
type: T.PANEL;
|
|
53818
54034
|
children: 'control';
|
|
@@ -53849,6 +54065,10 @@ export type SettingsCommonType = {
|
|
|
53849
54065
|
type: T.SCREEN;
|
|
53850
54066
|
children: string;
|
|
53851
54067
|
};
|
|
54068
|
+
"screen_base_fullscreen": {
|
|
54069
|
+
type: T.SCREEN;
|
|
54070
|
+
children: string;
|
|
54071
|
+
};
|
|
53852
54072
|
};
|
|
53853
54073
|
export type WorldSectionType = {
|
|
53854
54074
|
"selector_pane_content": {
|
|
@@ -59665,6 +59885,82 @@ export type CommonStoreType = {
|
|
|
59665
59885
|
type: T.IMAGE;
|
|
59666
59886
|
children: string;
|
|
59667
59887
|
};
|
|
59888
|
+
"badge_overlay_panel": {
|
|
59889
|
+
type: T.PANEL;
|
|
59890
|
+
children: 'top' | 'bottom';
|
|
59891
|
+
};
|
|
59892
|
+
"badge_overlay_panel/top": {
|
|
59893
|
+
type: T.STACK_PANEL;
|
|
59894
|
+
children: string;
|
|
59895
|
+
};
|
|
59896
|
+
"badge_overlay_panel/bottom": {
|
|
59897
|
+
type: T.STACK_PANEL;
|
|
59898
|
+
children: string;
|
|
59899
|
+
};
|
|
59900
|
+
"badge_overlay_stack": {
|
|
59901
|
+
type: T.STACK_PANEL;
|
|
59902
|
+
children: 'left_badge' | 'padding' | 'right_badge';
|
|
59903
|
+
};
|
|
59904
|
+
"badge_overlay_stack/left_badge": {
|
|
59905
|
+
type: T.STACK_PANEL;
|
|
59906
|
+
children: string;
|
|
59907
|
+
};
|
|
59908
|
+
"badge_overlay_stack/padding": {
|
|
59909
|
+
type: T.PANEL;
|
|
59910
|
+
children: string;
|
|
59911
|
+
};
|
|
59912
|
+
"badge_overlay_stack/right_badge": {
|
|
59913
|
+
type: T.STACK_PANEL;
|
|
59914
|
+
children: string;
|
|
59915
|
+
};
|
|
59916
|
+
"content_card_tail_image": {
|
|
59917
|
+
type: T.IMAGE;
|
|
59918
|
+
children: string;
|
|
59919
|
+
};
|
|
59920
|
+
"content_card_badge": {
|
|
59921
|
+
type: T.STACK_PANEL;
|
|
59922
|
+
children: 'leftTail' | 'background' | 'rightTail';
|
|
59923
|
+
};
|
|
59924
|
+
"content_card_badge/leftTail": {
|
|
59925
|
+
type: T.IMAGE;
|
|
59926
|
+
children: string;
|
|
59927
|
+
};
|
|
59928
|
+
"content_card_badge/background": {
|
|
59929
|
+
type: T.IMAGE;
|
|
59930
|
+
children: 'outline';
|
|
59931
|
+
};
|
|
59932
|
+
"content_card_badge/background/outline": {
|
|
59933
|
+
type: T.IMAGE;
|
|
59934
|
+
children: 'badgeStackPanel';
|
|
59935
|
+
};
|
|
59936
|
+
"content_card_badge/background/outline/badgeStackPanel": {
|
|
59937
|
+
type: T.STACK_PANEL;
|
|
59938
|
+
children: 'paddingLeft' | 'badgeIcon' | 'paddingMiddle' | 'badgeText' | 'paddingRight';
|
|
59939
|
+
};
|
|
59940
|
+
"content_card_badge/background/outline/badgeStackPanel/paddingLeft": {
|
|
59941
|
+
type: T.PANEL;
|
|
59942
|
+
children: string;
|
|
59943
|
+
};
|
|
59944
|
+
"content_card_badge/background/outline/badgeStackPanel/badgeIcon": {
|
|
59945
|
+
type: T.IMAGE;
|
|
59946
|
+
children: string;
|
|
59947
|
+
};
|
|
59948
|
+
"content_card_badge/background/outline/badgeStackPanel/paddingMiddle": {
|
|
59949
|
+
type: T.PANEL;
|
|
59950
|
+
children: string;
|
|
59951
|
+
};
|
|
59952
|
+
"content_card_badge/background/outline/badgeStackPanel/badgeText": {
|
|
59953
|
+
type: T.LABEL;
|
|
59954
|
+
children: string;
|
|
59955
|
+
};
|
|
59956
|
+
"content_card_badge/background/outline/badgeStackPanel/paddingRight": {
|
|
59957
|
+
type: T.PANEL;
|
|
59958
|
+
children: string;
|
|
59959
|
+
};
|
|
59960
|
+
"content_card_badge/rightTail": {
|
|
59961
|
+
type: T.IMAGE;
|
|
59962
|
+
children: string;
|
|
59963
|
+
};
|
|
59668
59964
|
"icon_overlay_panel": {
|
|
59669
59965
|
type: T.PANEL;
|
|
59670
59966
|
children: 'icon_overlay_position_factory';
|
|
@@ -61971,7 +62267,7 @@ export type CommonStoreType = {
|
|
|
61971
62267
|
};
|
|
61972
62268
|
"store_offer_grid_item/frame/key_art": {
|
|
61973
62269
|
type: T.IMAGE;
|
|
61974
|
-
children: 'key_art_frame' | 'csb_plus_expiration_banner';
|
|
62270
|
+
children: 'key_art_frame' | 'csb_plus_expiration_banner' | 'badge_overlay_panel';
|
|
61975
62271
|
};
|
|
61976
62272
|
"store_offer_grid_item/frame/key_art/key_art_frame": {
|
|
61977
62273
|
type: T.IMAGE;
|
|
@@ -61981,6 +62277,10 @@ export type CommonStoreType = {
|
|
|
61981
62277
|
type: T.PANEL;
|
|
61982
62278
|
children: string;
|
|
61983
62279
|
};
|
|
62280
|
+
"store_offer_grid_item/frame/key_art/badge_overlay_panel": {
|
|
62281
|
+
type: T.PANEL;
|
|
62282
|
+
children: string;
|
|
62283
|
+
};
|
|
61984
62284
|
"store_offer_grid_item/frame/progress_loading": {
|
|
61985
62285
|
type: T.PANEL;
|
|
61986
62286
|
children: string;
|
|
@@ -62193,10 +62493,6 @@ export type CommonStoreType = {
|
|
|
62193
62493
|
type: T.STACK_PANEL;
|
|
62194
62494
|
children: string;
|
|
62195
62495
|
};
|
|
62196
|
-
"recently_viewed_row_panel": {
|
|
62197
|
-
type: T.PANEL;
|
|
62198
|
-
children: string;
|
|
62199
|
-
};
|
|
62200
62496
|
"static_offer_row_panel": {
|
|
62201
62497
|
type: T.PANEL;
|
|
62202
62498
|
children: 'store_row_dropdown_panel';
|
|
@@ -71101,6 +71397,18 @@ export type CommonType = {
|
|
|
71101
71397
|
type: T.PANEL;
|
|
71102
71398
|
children: string;
|
|
71103
71399
|
};
|
|
71400
|
+
"gamepad_helper_bumpers": {
|
|
71401
|
+
type: T.PANEL;
|
|
71402
|
+
children: 'gamepad_helper_left_bumper' | 'gamepad_helper_right_bumper';
|
|
71403
|
+
};
|
|
71404
|
+
"gamepad_helper_bumpers/gamepad_helper_left_bumper": {
|
|
71405
|
+
type: T.STACK_PANEL;
|
|
71406
|
+
children: string;
|
|
71407
|
+
};
|
|
71408
|
+
"gamepad_helper_bumpers/gamepad_helper_right_bumper": {
|
|
71409
|
+
type: T.STACK_PANEL;
|
|
71410
|
+
children: string;
|
|
71411
|
+
};
|
|
71104
71412
|
"tabs_left_gamepad_helpers": {
|
|
71105
71413
|
type: T.PANEL;
|
|
71106
71414
|
children: 'gamepad_helper_left_bumper' | 'gamepad_helper_left_trigger';
|
|
@@ -71333,6 +71641,14 @@ export type CommonType = {
|
|
|
71333
71641
|
type: T.LABEL;
|
|
71334
71642
|
children: string;
|
|
71335
71643
|
};
|
|
71644
|
+
"center_fold": {
|
|
71645
|
+
type: T.INPUT_PANEL;
|
|
71646
|
+
children: 'center_bg';
|
|
71647
|
+
};
|
|
71648
|
+
"center_fold/center_bg": {
|
|
71649
|
+
type: T.IMAGE;
|
|
71650
|
+
children: string;
|
|
71651
|
+
};
|
|
71336
71652
|
"section_divider": {
|
|
71337
71653
|
type: T.STACK_PANEL;
|
|
71338
71654
|
children: 'padding1' | 'divider_parent' | 'padding2';
|
|
@@ -71661,6 +71977,54 @@ export type CommonType = {
|
|
|
71661
71977
|
type: T.FACTORY;
|
|
71662
71978
|
children: string;
|
|
71663
71979
|
};
|
|
71980
|
+
"layout_toggle_content": {
|
|
71981
|
+
type: T.PANEL;
|
|
71982
|
+
children: 'image' | 'icon';
|
|
71983
|
+
};
|
|
71984
|
+
"layout_toggle_content/image": {
|
|
71985
|
+
type: T.UNKNOWN;
|
|
71986
|
+
children: string;
|
|
71987
|
+
};
|
|
71988
|
+
"layout_toggle_content/icon": {
|
|
71989
|
+
type: T.UNKNOWN;
|
|
71990
|
+
children: string;
|
|
71991
|
+
};
|
|
71992
|
+
"layout_template_toggle": {
|
|
71993
|
+
type: T.PANEL;
|
|
71994
|
+
children: string;
|
|
71995
|
+
};
|
|
71996
|
+
"layout_toggle": {
|
|
71997
|
+
type: T.PANEL;
|
|
71998
|
+
children: string;
|
|
71999
|
+
};
|
|
72000
|
+
"creative_layout_toggle": {
|
|
72001
|
+
type: T.PANEL;
|
|
72002
|
+
children: string;
|
|
72003
|
+
};
|
|
72004
|
+
"recipe_book_layout_toggle": {
|
|
72005
|
+
type: T.PANEL;
|
|
72006
|
+
children: string;
|
|
72007
|
+
};
|
|
72008
|
+
"survival_layout_toggle": {
|
|
72009
|
+
type: T.PANEL;
|
|
72010
|
+
children: string;
|
|
72011
|
+
};
|
|
72012
|
+
"furnace_recipe_book_layout_toggle": {
|
|
72013
|
+
type: T.PANEL;
|
|
72014
|
+
children: string;
|
|
72015
|
+
};
|
|
72016
|
+
"furnace_survival_layout_toggle": {
|
|
72017
|
+
type: T.PANEL;
|
|
72018
|
+
children: string;
|
|
72019
|
+
};
|
|
72020
|
+
"crafting_root_input_panel": {
|
|
72021
|
+
type: T.INPUT_PANEL;
|
|
72022
|
+
children: string;
|
|
72023
|
+
};
|
|
72024
|
+
"toolbar_background_image": {
|
|
72025
|
+
type: T.IMAGE;
|
|
72026
|
+
children: string;
|
|
72027
|
+
};
|
|
71664
72028
|
"empty_panel_size_y_0": {
|
|
71665
72029
|
type: T.PANEL;
|
|
71666
72030
|
children: string;
|
|
@@ -72577,6 +72941,26 @@ export type CommonType = {
|
|
|
72577
72941
|
type: T.IMAGE;
|
|
72578
72942
|
children: string;
|
|
72579
72943
|
};
|
|
72944
|
+
"creative_icon": {
|
|
72945
|
+
type: T.IMAGE;
|
|
72946
|
+
children: string;
|
|
72947
|
+
};
|
|
72948
|
+
"inventory_icon": {
|
|
72949
|
+
type: T.IMAGE;
|
|
72950
|
+
children: string;
|
|
72951
|
+
};
|
|
72952
|
+
"recipe_book_icon": {
|
|
72953
|
+
type: T.IMAGE;
|
|
72954
|
+
children: string;
|
|
72955
|
+
};
|
|
72956
|
+
"tab_icon_image": {
|
|
72957
|
+
type: T.IMAGE;
|
|
72958
|
+
children: string;
|
|
72959
|
+
};
|
|
72960
|
+
"search_icon": {
|
|
72961
|
+
type: T.IMAGE;
|
|
72962
|
+
children: string;
|
|
72963
|
+
};
|
|
72580
72964
|
"service_repo_image_panel": {
|
|
72581
72965
|
type: T.PANEL;
|
|
72582
72966
|
children: 'service_repo_image' | 'progress_loading';
|