So...tooltips and NVL mode, huh.
man. i spent the entire day trying to make the tooltips for TDW work cause 1, i couldn't find actual examples anywhere and 2, I wanted to use them in the final chapter of LtGBtK as well………only to remember that NVL mode is a headache and the choices for it are located somewhere else in the code.
anyway, if you're coding in renpy and are looking for a way to make your tooltips function with NVL mode, like so:
then feel free to use my code as an example. here it goes! this piece of code goes into your screens.rpy, inside your screen nvl(): and then, to add a tooltip in the choice menu, all you need is to add the tooltip thing in the choice itself:
menu:
"Choice 01." (tooltip = "text of your tooltip here"): "blah blah blah"
"Choice 02." (tooltip = "text of your tooltip here"): "blah blah blah"
so simple ♥ so i-spent-the-whole-day-in-this ♥ and that's it ♥♥♥ hopefully, this will help someone one day.


















