#dialog font stuff
1 messages · Page 1 of 1 (latest)
If someone could it either direct me to where there is information on it or explain the basics that would be great
the corresponding pages on the minecraft wiki also explain everything in detail
i probably should of been more specific. I am aware of how normal dialogs work I am looking for examples/information on how to do the fancy ones such as this example i saw a while ago
i saw other ones as well but i cant find them now
They don't really serve as a very intuitive guide on how to get started with what OP wants to do. I haven't really come across any proper guide for this type of dialog though.
If you want to take a look at an example, you can take a look at the cooking book from chrop and kettle https://github.com/maybejake/crop-and-kettle
But the short version is that it's hardly even a dialog at all, it's basically just a text component that does everything you want. Once you already know what you want to do, writing the whole thing manually is pretty straight-forward
the only things you really need to understand is how text basically works like a typewriter where a character is written where the cursor is and then the cursor shifts to the right by how wide the character was
as well as the various different options that you have inside a text component, which include custom fonts (including negative space), hover events and click events
but explaining all of those doesn't really make sense without you asking a more specific question