I have buttonmenu node with actions on button pressed:
func _on_PopupMenu_index_pressed(index):
match (index):
0:
action1
1:
action2
2:
action3
And I need signal(?) for actions(items) description on mouse hover with the same structure. Something like this:
func _on_PopupMenu_index_Mouse_entered(index)
match (index):
0:
label.text = "love +5"
1:
label.text = "love +10"
But I can't find code to do so. Is there any way to code "mouse_entered" for Popupmenu items?