Added chat bubbles

This commit is contained in:
2024-02-28 21:44:24 +01:00
parent db3ee3a685
commit 69a918d4ec
12 changed files with 167 additions and 9 deletions

View File

@ -0,0 +1,10 @@
class_name ChatBubble
extends Control
var label: Label
func _ready():
label = %Label
func show_message(message: String):
label.text = message