summaryrefslogtreecommitdiff
path: root/game/instruction_popup.gd
blob: 8bcad5e9e4e5f4521d8a8e882219e18b3c26592e (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
class_name InstructionPopup
extends Control

@export var instructions: Array[InstructionResource]

func play_instruction(type: Microgame.MICROGAME_CONTROL):
	var instruction: InstructionResource = get_instruction(type)
	
	%TextureZoeira.texture = instruction.texture_zoeira
	%TextureInstruction.texture = instruction.texture_instruction
	%LabelTitle.text = instruction.title
	%Label1.text = instruction.label_1
	%Label2.text = instruction.label_2
	
	$AnimationPlayer.play("start")
	await $AnimationPlayer.animation_finished


func get_instruction(type: Microgame.MICROGAME_CONTROL) -> InstructionResource:
	for instruction in instructions:
		print(instruction.type)
		if instruction.type == type:
			return instruction
	return null