mirror of
https://github.com/Relintai/the_tower.git
synced 2024-11-14 10:27:21 +01:00
9 lines
185 B
GDScript3
9 lines
185 B
GDScript3
|
extends CenterContainer
|
||
|
|
||
|
func _ready():
|
||
|
$Main/VBoxContainer/Resume.connect("pressed", self, "on_pressed")
|
||
|
|
||
|
func on_pressed():
|
||
|
hide()
|
||
|
Input.set_mouse_mode(Input.MOUSE_MODE_CAPTURED)
|