Testing the tooltip system, works well, and having only one problem (for now :P)
The tooltip is shown at the mouse position, which is classic, but depending of this position a large tooltip go out of the screen so the question is to know if I can, for example, show the tooltip in a fixed location on the screen?
For that you would have to implement your own tooltip system.
For example:
use the hovering signal from control nodes (mouse_entered / mouse_exited)
have a seperate node attached to the hovered over node that turns visible with the tooltip when you hover and hides when you stop hovering
Itโs exactly what Iโve done but I did let the question in case of there were a simplier option for simple tooltips.
On an other side this solution is very good, permitting to have different graphical boxes for the tooltips and donโt seems too much a performance eater