summaryrefslogtreecommitdiff
path: root/game/transition/transition.gd
blob: 563e6d18229d477bf7866c106ff0657864f8a107 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
class_name Transition
extends Node2D

@export var speed_scale = 1.0

signal finished_animation

@onready var animation_player = %AnimationPlayer
@onready var microgame_viewport_container = %MicrogameViewportContainer

var _lives = 0
var _characters = []


func _ready() -> void:
	animation_player.speed_scale = speed_scale
	_characters = %Characters.get_children()
	animation_player.play("RESET")


func microgame_fade_out():
	animation_player.play("microgame_fade_out")
	await animation_player.animation_finished


func microgame_fade_in():
	animation_player.play_backwards("microgame_fade_out")
	await animation_player.animation_finished


func play_microgame_count(count: int):
	%MicrogameCountLabel.text = "%03d" % count
	animation_player.play("show_microgame_count")
	await animation_player.animation_finished


func play_result_animation(won : bool) -> void:
	for c in _characters:
		if (won):
			c.play_happy()
		else:
			c.play_mad()
	await get_tree().create_timer(0.5).timeout