11 lines
147 B
GDScript3
11 lines
147 B
GDScript3
|
class_name ChatBubble
|
||
|
extends Control
|
||
|
|
||
|
var label: Label
|
||
|
|
||
|
func _ready():
|
||
|
label = %Label
|
||
|
|
||
|
func show_message(message: String):
|
||
|
label.text = message
|