summaryrefslogtreecommitdiffstats
path: root/text_bubble.gd
blob: 545f46936add705885cdd3538fddca2b2ae3bd51 (plain)
1
2
3
4
5
6
7
8
9
10
class_name TextBubble
extends Node2D

@export var text: String

func _ready() -> void:
	$Label.text = text

func size() -> Vector2:
	return $ColorRect.size