summaryrefslogtreecommitdiff
path: root/game/instruction_popup.gd
blob: 6107e5b9c6289b11e51532e853052bca83d7a53a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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:
		if instruction.type == type:
			return instruction
	return null