summaryrefslogtreecommitdiff
path: root/game/MicrogameInstructionLabel.gd
blob: 491a5a903d4b71e0ecc8f1027b4e40b64271519d (plain)
1
2
3
4
5
6
7
8
extends Label


func show_instruction(instruction):
	text = instruction
	var tween = create_tween()
	tween.tween_property(self, "modulate", Color.WHITE, 0.1)
	tween.tween_property(self, "modulate", Color(1,1,1,0), 0.1).set_delay(2)