summaryrefslogtreecommitdiff
path: root/game/instruction_popup.gd
diff options
context:
space:
mode:
authorHenrique Alves <henrique.alves@itsjungle.xyz>2024-01-27 23:59:31 +0200
committerHenrique Alves <henrique.alves@itsjungle.xyz>2024-01-27 23:59:31 +0200
commit01d02b389d3ba302c84986295ec06839cf4d4918 (patch)
treec15fda2a96ec9e0aecbabc3028db3952a3cd7350 /game/instruction_popup.gd
parenta38fc38e0e2a44732b87bfcbdcc0e5aaae6c3167 (diff)
downloadgamejam-ggj-2024-01d02b389d3ba302c84986295ec06839cf4d4918.tar.gz
gamejam-ggj-2024-01d02b389d3ba302c84986295ec06839cf4d4918.tar.bz2
gamejam-ggj-2024-01d02b389d3ba302c84986295ec06839cf4d4918.zip
Add instructions
Diffstat (limited to 'game/instruction_popup.gd')
-rw-r--r--game/instruction_popup.gd24
1 files changed, 24 insertions, 0 deletions
diff --git a/game/instruction_popup.gd b/game/instruction_popup.gd
new file mode 100644
index 0000000..8bcad5e
--- /dev/null
+++ b/game/instruction_popup.gd
@@ -0,0 +1,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