You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.title(Text.literal("Used for narration. Could be used to render a title in the future."))
21
+
.category(ConfigCategory.createBuilder()
22
+
.name(Text.literal("Name of the category"))
23
+
.tooltip(Text.literal("This text will appear as a tooltip when you hover or focus the button with Tab. There is no need to add \n to wrap as YACL will do it for you."))
24
+
.group(OptionGroup.createBuilder()
25
+
.name(Text.literal("Name of the group"))
26
+
.tooltip(Text.literal("This text will appear when you hover over the name or focus on the collapse button with Tab."))
27
+
.option(Option.createBuilder(boolean.class)
28
+
.name(Text.literal("Boolean Option"))
29
+
.tooltip(Text.literal("This text will appear as a tooltip when you hover over the option."))
0 commit comments