UltimateUI guide
How to Change UI Behavior
In this guide, you will learn how to change the UI behavior.
You can customize how the UI behaves after specific actions. The behavior settings can be configured at the very top of the .yml file.
behavior:
keep-open: false
reopen: true
close-on-death: false
close-on-damage: false
close-on-f: false
close-on-shift-f: trueBelow is a list of several settings you can change in the UI.
Keep Open#
This option prevents the UI from closing when another UI is opened.
behavior:
keep-open: trueReopen#
This option reopens the previous UI after the currently opened UI is closed.
behavior:
reopen: trueClose on Death#
This option closes the UI when the player dies.
behavior:
close-on-death: trueClose on Damage#
This option works similarly to the previous one, but it closes the UI when the player takes damage.
behavior:
close-on-damage: trueClose on key#
This option allows the UI to be closed by pressing F or Shift + F.
behavior:
close-on-f: true
close-on-shift-f: true