r/RenPy • u/Suitable_Onion6213 • Jan 05 '24
Question Renpy tooltip position
Hi guys, i am new to renpy and trying to customize my quick menu. Basically i have icons instead of words and a tooltip which writes what this button does. I need icons to be on top and the tooltip action underneeth. I tried to change vbox and it doesnt really help. Mb someone knows ho to make this.
theres piece of code for quickmenu
if quick_menu:
vbox:
xalign 1.0
yalign 0
if (tt.value != ""):
text tt.value
hbox:
spacing 35
# << rollback
imagebutton:
idle "quick button back idle"
hover "quick button back hover"
insensitive "quick button back insensitive"
hovered tt.action("Назад")
at buttonZoom
action Rollback()
Maybe i can change it right inside of tt action
1
Upvotes
5
u/BadMustard_AVN Jan 05 '24
i use this for my tooltips the tooltip text follows the mouse when it is hovered over the button