mirror of
https://github.com/JHDev2006/Super-Mario-Bros.-Remastered-Public.git
synced 2025-10-23 07:58:09 +00:00
added the game
This commit is contained in:
17
Scripts/UI/QuitDialog.gd
Normal file
17
Scripts/UI/QuitDialog.gd
Normal file
@@ -0,0 +1,17 @@
|
||||
extends Control
|
||||
|
||||
signal cancelled
|
||||
var is_active := false
|
||||
|
||||
func _physics_process(delta: float) -> void:
|
||||
modulate.a = lerpf(modulate.a, int(is_active), delta * 15)
|
||||
if Input.is_action_just_released("ui_back") and is_active:
|
||||
cancelled.emit()
|
||||
is_active = false
|
||||
$AnimationPlayer.stop()
|
||||
|
||||
func start() -> void:
|
||||
$AnimationPlayer.play("Animation")
|
||||
is_active = true
|
||||
await $AnimationPlayer.animation_finished
|
||||
get_tree().quit()
|
Reference in New Issue
Block a user