#Changing texture server form

1 messages · Page 1 of 1 (latest)

chilly mason
past sphinx
severe fiber
past sphinx
severe fiber
#

Today, I introduce you to the wild world of Minecraft: Bedrock Edition's JSON UI. Enjoy!

Timestamps:
0:00 - Intro
1:10 - UI Files
1:32 - Namespace
1:52 - Elements
2:32 - The Element Hierarchy
3:36 - Phrases
4:25 - "Controls" Property
5:12 - @ Copying
5:54 - Example File
7:24 - "Type" Property
9:08 - Outro

Playlist: https://www.youtube.com/play...

▶ Play video
#

Welcome to our deep dive into Minecraft Bedrock's most intricate and challenging aspect: JSON UI for addon development. In this comprehensive tutorial, we'll unravel the complexities of HUD screen customization and JSON UI, guiding you through each step to enhance your Minecraft experience. Join us to become an expert in crafting unique Minecraf...

▶ Play video
#

I hope these links will be helpful

#

Although changing button textures is not that hard
But if you know the basics it'll be much easier

prisma geode
#

Add this on your form_button

"$default_button_texture|default": "textures/ui/button_borderless_light",
    "$hover_button_texture|default": "textures/ui/button_borderless_lighthover",
    "$pressed_button_texture|default": "textures/ui/button_borderless_lightpressed",
    "$locked_button_texture|default": "textures/ui/disabledButtonNoBorder"```
#

Just change textures to your own

#

@past sphinx

past sphinx
prisma geode
#

yea

past sphinx
# prisma geode yea

like this?

          "anchor_from": "top_left",
          "anchor_to": "top_left",
          "size": [ "fill", 32 ],
          "$button_text": "#form_button_text",
          "$button_text_binding_type": "collection",
          "$button_text_grid_collection_name": "form_buttons",
          "$button_text_max_size": [ "100%", 20 ],
          "$default_button_texture|default": "textures/ui/button_borderless_light",
    "$hover_button_texture|default": "textures/ui/button_borderless_lighthover",
    "$pressed_button_texture|default": "textures/ui/button_borderless_lightpressed",
    "$locked_button_texture|default": "textures/ui/disabledButtonNoBorder",
          "bindings": [
            {
              "binding_type": "collection_details",
              "binding_collection_name": "form_buttons"
            }
          ]
        }
      }
    ]
  },```
prisma geode
#

yep

#

but change textures to your own

past sphinx
prisma geode
#

They shouldn't change, but if they do you can change the name of the form_button panel to custom_button and in the long_form factory change the form_button to custom_button

past sphinx
prisma geode
#

Just this

#

server_form.custom_button

past sphinx
prisma geode
#

show your code

#

json code

past sphinx
#

to change the texture of the background dialog using this?
"$dialog_background_texture|default": "textures/ui/dialog_background_hollow_3",?

past sphinx
past sphinx
prisma geode
#

Debe ser el mismo nombre

past sphinx