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