Anri/AdBlockNot
Archived
1
0
Fork 0
This repository has been archived on 2024-01-28. You can view files and clone it, but cannot push or open issues or pull requests.
AdBlockNot/scenes/menu/leaving_scene.gd
2024-01-28 17:25:48 +01:00

22 lines
494 B
GDScript

extends Node2D
@onready var transition = $Fade_out
# Called when the node enters the scene tree for the first time.
func _ready():
Input.set_mouse_mode(Input.MOUSE_MODE_CAPTURED)
$off_sound.play()
pass # Replace with function body.
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(_delta):
pass
func _on_timer_leave_timeout():
get_tree().quit()
func _on_timer_fade_timeout():
transition.play("fade_out")
pass # Replace with function body.