How do i do a pause menu with label and poinetr?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By Simon

I created a menu with label and a pointer. I want when the “resume” label is selected do this: get_tree().paused = false and that the node control with the menu becomes: visible = false.
Can someone help me?

:bust_in_silhouette: Reply From: MaaaxiKing

First of all you can’t select Labels. So I think you mean Button. If not, replace the Label by a Button (and make it flat). Connect the signal pressed to a node in this scene with a script. In this function (_on_Button_pressed()) type

get_tree().paused = false
hide()

works with a pointer?

Simon | 2020-06-10 21:35

i tried using buttons but it doesn’t work

Simon | 2020-06-10 21:37