mirror of
https://git.kittycat.homes/zoe/pegchamp.git
synced 2024-08-15 03:15:39 +00:00
11 lines
213 B
GDScript
11 lines
213 B
GDScript
extends TextureButton
|
|
|
|
func _ready() -> void:
|
|
disabled = true
|
|
visible = false
|
|
|
|
func _on_PlayButton_pressed():
|
|
GameStats.restart_level()
|
|
disabled = true
|
|
get_tree().paused = false
|
|
get_parent().visible = false
|