#✅ | Add accessibility & language button to fade-in effect

1 messages · Page 1 of 1 (latest)

cinder viper
#

I wanna make those buttons fade-in too, i already have the other buttons, here's the options button for example to modify (mainly position and height i would assume):
vanilla_button {
button_element_executable_block_identifier = ae1a724e-fe4f-44f1-a76d-54c06c28018b-1755780379596
[executable_block:ae1a724e-fe4f-44f1-a76d-54c06c28018b-1755780379596][type:generic] = [executables:]
restartbackgroundanimations = true
nine_slice_custom_background = false
nine_slice_border_x = 5
nine_slice_border_y = 5
navigatable = true
widget_active_state_requirement_container_identifier = 1508fc6a-638b-4527-8bef-9fbc638e703a-1755780379596
[loading_requirement_container_meta:1508fc6a-638b-4527-8bef-9fbc638e703a-1755780379596] = [groups:][instances:]
is_template = false
template_apply_width = false
template_apply_height = false
template_apply_posx = false
template_apply_posy = false
template_apply_opacity = false
template_apply_visibility = false
template_apply_label = false
template_share_with = buttons
nine_slice_slider_handle = false
nine_slice_slider_handle_border_x = 5
nine_slice_slider_handle_border_y = 5
element_type = vanilla_button
instance_identifier = mc_titlescreen_options_button
appearance_delay = first_time
appearance_delay_seconds = 7.0
fade_in_v2 = first_time
fade_in_speed = 4.0
fade_out = no_fading
fade_out_speed = 1.0
base_opacity = 1.0
auto_sizing = false
auto_sizing_base_screen_width = 1920
auto_sizing_base_screen_height = 1060
sticky_anchor = false
anchor_point = vanilla
x = 140
y = 204
width = 98
height = 20
stretch_x = false
stretch_y = false
stay_on_screen = true
element_loading_requirement_container_identifier = cd4e9a1a-bae9-4427-81f9-3d88e782db0d-1755780379595
[loading_requirement_container_meta:cd4e9a1a-bae9-4427-81f9-3d88e782db0d-1755780379595] = [groups:][instances:]
enable_parallax = false
parallax_intensity_v2 = 0.5
invert_parallax = false
animated_offset_x = 0
animated_offset_y = 0
load_once_per_session = false
in_editor_color = #FFC800FF
layer_hidden_in_editor = false
is_hidden = false
automated_button_clicks = 0
}

jolly aspenBOT
# cinder viper I wanna make those buttons fade-in too, i already have the other buttons, here's...

Hello there! 👋 It sounds like you want to add a cool fade-in effect to your Accessibility and Language buttons, just like your Options button. That's a great way to make your menu feel more dynamic!

Based on the configuration for your mc_titlescreen_options_button, you've already got a good start. To apply a fade-in effect to other Vanilla buttons, you'll need to do the following for each one:

  1. Identify the button: You need to find the specific instance_identifier property for the Accessibility and Language buttons. You can do this by opening the Title Screen in the FancyMenu editor, enabling the Debug Overlay (CTRL + ALT + D), and hovering over those buttons to see their identifiers.
  2. Locate the button's configuration: Once you have the instance_identifier, find the vanilla_button entry in your .txt layout file that corresponds to that button.
  3. Apply fade-in properties: For each button, ensure these properties are set similarly to your Options button's fade-in:
    • fade_in_v2 = first_time
    • fade_in_speed = 4.0 (or adjust to your desired speed)
    • appearance_delay = first_time (if you want a delay before the fade starts)
    • appearance_delay_seconds = X.X (replace X.X with your desired delay in seconds)

Here's an example of what you'd be looking for/adding for one of those buttons:

vanilla_button {
  // ... other properties of the button ...
  instance_identifier = mc_titlescreen_accessibility_button // This will be different for the Accessibility button
  appearance_delay = first_time
  appearance_delay_seconds = 7.0 // Adjust this as needed
  fade_in_v2 = first_time
  fade_in_speed = 4.0 // Adjust this as needed
  // ... other properties ...
}

Just make sure the instance_identifier matches the correct button you want to modify! You'll need to repeat this process for both the Accessibility and Language buttons.

Let me know if you need any more help with this! 😊

cinder viper
#

How can i get to the fancymenu editor?

jolly aspenBOT
# cinder viper How can i get to the fancymenu editor?

You can easily get to the FancyMenu editor by opening any menu in Minecraft and pressing CTRL + ALT + C to bring up the menu bar. From there, you can choose to create a new layout or edit an existing one, which will open the editor. ✨

I hope that helps you get started with customizing your menus! 😊

jolly aspenBOT
#
Thread Marked as Solved

This support thread has been automatically marked as solved because there were no new messages for at least 24 hours.

If you still need help, feel free to continue the conversation or create a new support thread.