1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2024-11-27 04:38:56 +00:00
bedrock-samples/resource_pack/ui/sign_screen.json
Mike Ammerlaan cedc6e4171 v1.20.50.3
2023-12-05 10:02:40 -08:00

118 lines
3.3 KiB
JSON

{
"namespace": "sign",
//---------------------------------------------------------------------------
// CONTROLS
//---------------------------------------------------------------------------
"sign_background": {
"type": "image",
"texture": "$sign_texture",
"size": [ "192px", "93px" ],
"offset": [ -1, -5 ]
},
"hanging_sign_background": {
"type": "image",
"texture": "$sign_texture",
"size": [ "287px", "143px" ],
"offset": [ 0, -32 ]
},
"base_sign_text_multiline@common.multiline_text_edit_box": {
"anchor_from": "center",
"anchor_to": "center",
"offset": [ 0, 5 ],
"$font_size": "large",
"$text_alignment": "center",
"constrain_to_rect": false,
"selected": true,
"can_be_deselected": false,
"focus_enabled": true,
"$text_box_name": "#sign_text_multi",
"max_length": 32500,
"$text_color_binding_type": "global",
"$text_edit_box_content_binding_name": "#sign_text",
"button_mappings": [
{
"from_button_id": "button.menu_cancel",
"to_button_id": "button.menu_exit",
"handle_select": false,
"handle_deselect": true,
"mapping_type": "global"
}
]
},
//---------------------------------------------------------------------------
// CONTENT
//---------------------------------------------------------------------------
"regular_sign_text_multiline@sign.base_sign_text_multiline": {
"size": [ 185, 90 ],
"$text_background_default": "sign.sign_background",
"$text_background_hover": "sign.sign_background"
},
"hanging_sign_text_multiline@sign.base_sign_text_multiline": {
"size": [ 126, 90 ],
"$text_background_default": "sign.hanging_sign_background",
"$text_background_hover": "sign.hanging_sign_background"
},
"sign_screen_content": {
"type": "panel",
"controls": [
{
"input_eating_panel": {
"type": "input_panel",
"layer": 2,
"size": [ "100%c", "100%c" ],
"focus_enabled": false,
// Ensure the entire text edit box is visible over the virtual keyboard
"$virtual_keyboard_buffer_control": "text_edit",
"controls": [
{ "text_edit@$sign_text_multiline": {} }
]
}
},
{
"invisible_exit_background": {
"type": "input_panel",
"layer": 1,
"size": [ "100%", "100%" ],
"focus_enabled": true,
"anchor_from": "center",
"anchor_to": "center",
"bindings": [
{
"binding_name": "#close_button_visible",
"binding_name_override": "#visible"
}
],
"button_mappings": [
{
"from_button_id": "button.menu_select",
"to_button_id": "button.menu_exit",
"mapping_type": "pressed"
}
]
}
}
]
},
//---------------------------------------------------------------------------
// SCREEN
//---------------------------------------------------------------------------
"sign_screen@common.base_screen": {
"$screen_content": "sign.sign_screen_content",
"$screen_bg_content": "common.screen_background",
"$screen_background_alpha": 0.4,
"$close_on_player_hurt|default": true,
"close_on_player_hurt": "$close_on_player_hurt"
}
}