summaryrefslogtreecommitdiff
path: root/components/textrevealbox.gd
blob: 175ac92a879b172de563963e7e5928c86b13c440 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
extends Node2D

export(String, MULTILINE) var text = "Failed to load text :("
export var autostart = true

func _ready():
	$TextReveal.to_render = text
	if autostart:
		$TextReveal.start()

func start():
	$TextReveal.start()