tutorial:tooltip
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
tutorial:tooltip [2024/04/15 01:31] – solidblock | tutorial:tooltip [2025/04/01 08:15] (current) – (not moved totally because it's not a separate page on docs and it does not include old versions) solidblock | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Adding a tooltip ====== | ====== Adding a tooltip ====== | ||
- | In your [[tutorial:items|item]] | + | ===== Item tooltip ===== |
+ | Sometimes you want to add some extra information when showing the tooltip of the [[items|item]]. To achieve this, you should | ||
+ | |||
+ | Here we assume you have created your own class (see [[items]]), for example, '' | ||
For versions 1.18.2 and before: | For versions 1.18.2 and before: | ||
< | < | ||
- | @Override | + | public |
- | public | + | // ... |
- | + | ||
- | // default white text | + | |
- | tooltip.add(new TranslatableText(" | + | |
- | // formatted red text | + | |
- | tooltip.add(new TranslatableText(" | + | public void method_7851(class_1799 itemStack, class_1937 world, List< |
+ | |||
+ | // default white text | ||
+ | tooltip.add(new TranslatableText(" | ||
+ | |||
+ | | ||
+ | tooltip.add(new TranslatableText(" | ||
+ | } | ||
} | } | ||
</ | </ | ||
Line 17: | Line 24: | ||
For versions since 1.19: | For versions since 1.19: | ||
< | < | ||
- | @Override | + | public class CustomItem extends Item { |
- | public void method_7851(class_1799 itemStack, class_1937 world, List< | + | // ... |
- | tooltip.add(Text.translatable(" | + | |
+ | | ||
+ | public void method_7851(class_1799 itemStack, class_1937 world, List< | ||
+ | tooltip.add(Text.translatable(" | ||
+ | } | ||
} | } | ||
</ | </ | ||
Line 25: | Line 36: | ||
For versions since 1.20.5: | For versions since 1.20.5: | ||
< | < | ||
- | @Override | + | public class CustomItem extends Item { |
- | public void method_7851(class_1799 itemStack, TooltipContext context, List< | + | // ... |
- | tooltip.add(Text.translatable(" | + | |
+ | | ||
+ | public void method_7851(class_1799 itemStack, TooltipContext context, List< | ||
+ | tooltip.add(Text.translatable(" | ||
+ | } | ||
} | } | ||
</ | </ | ||
+ | > :!: The method is deprectaed since 1.21.5. To add item tooltips for 1.21.5, please use Fabric API. | ||
- | You can also append your tooltip in the [[tutorial:blocks|block]] class by overriding a similar method: | + | ===== Block tooltip ===== |
+ | You can also append your tooltip in the [[blocks|block]] class by overriding a similar method: | ||
For versions below 1.20.5: | For versions below 1.20.5: | ||
< | < | ||
- | @Override | + | public class CustomBlock extends Block { |
- | public void method_9568(class_1799 itemStack, class_1922 world, List< | + | // ... |
- | // for versions 1.18.2 and before | + | |
- | tooltip.add(new TranslatableText(" | + | |
+ | public void method_9568(class_1799 itemStack, class_1922 world, List< | ||
+ | // for versions 1.18.2 and before | ||
+ | tooltip.add(new TranslatableText(" | ||
| | ||
- | | + | |
- | tooltip.add(Text.translatable(" | + | tooltip.add(Text.translatable(" |
+ | } | ||
} | } | ||
</ | </ | ||
- | For versions since 1.20.5: | + | For versions since 1.20.5, before 1.21.5: |
< | < | ||
- | @Override | + | public class CustomBlock extends Block { |
- | public void method_9568(class_1799 itemStack, Item.TooltipContext context, List< | + | // ... |
- | tooltip.add(Text.translatable(" | + | |
+ | | ||
+ | public void method_9568(class_1799 itemStack, Item.TooltipContext context, List< | ||
+ | tooltip.add(Text.translatable(" | ||
+ | } | ||
} | } | ||
</ | </ | ||
+ | |||
+ | ===== Adding tooltips in 1.21.5 ===== | ||
+ | |||
+ | Since 1.21.5, the implementation of item tooltips are rewritten. Most item tooltips are implemented with item components now, which may be influenced by '' | ||
+ | <code java> | ||
+ | ItemTooltipCallback.EVENT.register((itemStack, | ||
+ | if (!itemStack.isOf(TutorialItems.CUSTOM_ITEM)) { | ||
+ | return; | ||
+ | } | ||
+ | list.add(Text.translatable(" | ||
+ | }); | ||
+ | </ | ||
+ | |||
+ | The example adds a custom tooltip for the item we created in the [[items]] tutorial. |
tutorial/tooltip.1713144696.txt.gz · Last modified: 2024/04/15 01:31 by solidblock